Compare commits

...

26 Commits

Author SHA1 Message Date
Félix Malfait d63167c422 fix(client-sdk): drop duplicated introspection entries breaking 2.9.3 build
The 2.9.3 revert cherry-pick duplicated myConnectedAccounts and
deleteConnectedAccount in the generated SDK introspection map, failing
the build with TS1117 (duplicate object literal keys). The revert is
signature-neutral on the public schema, so restore the generated SDK
artifacts to their v2.9.0 state.
2026-06-06 20:00:36 +02:00
neo773 57f79c60c6 revert #21177 (#21284) 2026-06-06 18:28:26 +05:30
Charles Bochet b31da5d315 fix(server): gate viewFilter.relationTargetFieldMetadataId behind its 2.6 upgrade command (#21267)
## Problem

Self-hosted upgrades crossing 2.6 (e.g. `2.4 → 2.6/2.9`) can abort with:

```
column ViewFilterEntity.relationTargetFieldMetadataId does not exist
  at WorkspaceFlatViewFilterMapCacheService.computeForCache
  at WorkspaceCacheService.recomputeDataFromProvider
[UpgradeSequenceRunnerService] Workspace steps ended with 1 failure(s). Aborting
```

This is **Failure #1** from #20841 — the counterpart to the
role-permission cache crash fixed in #21257 (Failure #2). Same shape: a
workspace **cache recompute runs mid-upgrade and reads schema that the
target version's migration hasn't applied yet**.

## Root cause

`ViewFilterEntity.relationTargetFieldMetadataId` is added to
`core.viewFilter` only at the **2.6.0** cursor
(`AddRelationTargetFieldMetadataIdToViewFilterFastInstanceCommand`, ts
`1798000005000`). But the workspace cache recompute SELECTs every column
of the entity, and it runs during *earlier* (2.5) workspace steps.
Unlike `RolePermissionFlagEntity.permissionFlag`, this column has **no
`@WasIntroducedInUpgrade` gate**, so the proxy can't hide it — and the
SELECT fails when the column isn't there yet.

There are three `IF NOT EXISTS` backport commands (2.3/2.4/2.5) meant to
add the column sooner, but they use **low timestamps** that sort to the
front of their version bundles. An instance whose cursor has already
advanced past those positions (e.g. it reached 2.4, or a prior failed
attempt advanced it through 2.5 instance commands) treats them as
already-applied and **skips them** — so the column is never created, yet
the entity keeps selecting it.

## Fix

Gate the column with `@WasIntroducedInUpgrade` pointing at the **2.6.0**
command that adds it:

```ts
@WasIntroducedInUpgrade({
  upgradeCommandName:
    '2.6.0_AddRelationTargetFieldMetadataIdToViewFilterFastInstanceCommand_1798000005000',
})
@Column({ nullable: true, type: 'uuid', default: null })
relationTargetFieldMetadataId: string | null;
```

`UpgradeAwareRepositoryProxy` then hides the column from reads while the
cursor is < 2.6, so the cache recompute simply omits it — no crash — and
it becomes visible once the 2.6.0 command has run (where it's guaranteed
to exist). Gating to **2.6.0** specifically (not the earlier backports)
is what fixes the cursor-skip case: 2.6.0 is the first point where the
column is reliably present regardless of whether the backports ran.

Validator-safe: the referenced command resolves to a real step
(`computeCommandName` = `${version}_${className}_${timestamp}`), so
`validate-upgrade-aware-entity-decorators` accepts it. The existing
backport commands are left untouched (committed instance commands).

## Recovery for already-stuck instances

This prevents *new* failures. An instance already aborted mid-upgrade
needs the column added manually before retrying:

```sql
ALTER TABLE core."viewFilter" ADD COLUMN IF NOT EXISTS "relationTargetFieldMetadataId" uuid;
DELETE FROM core."upgradeMigration" WHERE status='failed';
```
then re-run the upgrade on a build that includes this fix.

Refs #20841

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-05 18:56:55 +02:00
Charles Bochet deb01ec823 fix(server): guard role-permission cache against stripped permissionFlag relation during upgrade (#21257)
## Problem

Self-hosted upgrades that jump versions (e.g. `2.4 → 2.7/2.9`) abort
with:

```
TypeError: Cannot read properties of undefined (reading 'universalIdentifier')
  at WorkspaceRolesPermissionsCacheService.hasSettingsGatedObjectPermissions
  at WorkspaceRolesPermissionsCacheService.computeForCache
  at WorkspaceCacheService.recomputeDataFromProvider
```

Reported in #20841 (Failure #2). The sequence aborts mid-upgrade and
leaves the DB in a half-migrated state.

## Root cause

The per-workspace **cache recompute runs at a `2.5.0` workspace step —
before the `2.6` schema migrations apply**. At that cursor:

- `RolePermissionFlagEntity.permissionFlag` is
`@WasIntroducedInUpgrade('2.6.0_LinkRolePermissionFlagToPermissionFlag…')`,
so `UpgradeAwareRepositoryProxy` **strips the relation**
(`[upgrade-proxy] strip relation
RolePermissionFlagEntity.permissionFlag` in the logs) → `permissionFlag`
is `undefined`.
- `hasSettingsGatedObjectPermissions()` then does an **unguarded**
`rolePermissionFlag.permissionFlag.universalIdentifier` → throws.

The crash only manifests when a workspace has **≥1 `rolePermissionFlag`
row** (custom roles with gated settings perms / SDK `defineRole`). A
vanilla seed has an empty table, so `.find()` over `[]` never
dereferences anything — which is why it didn't reproduce on a clean
instance.

A null-safe fallback to the legacy `flag` column used to exist here; it
was dropped in #20730.

## Fix

Resolve the flag's universal identifier through a small helper that
falls back to the legacy `flag` column (only removed in `2.7.0`) when
the relation is unavailable:

```ts
private getRolePermissionFlagUniversalIdentifier(
  rolePermissionFlag: RolePermissionFlagEntity,
): string {
  // The `permissionFlag` relation is stripped during upgrades until the 2.6.0
  // cursor (@WasIntroducedInUpgrade), so fall back to the legacy `flag` column.
  return (
    rolePermissionFlag.permissionFlag?.universalIdentifier ??
    SystemPermissionFlag[rolePermissionFlag.flag]
  );
}
```

`SystemPermissionFlag[flag]` yields the same UUID the relation would, so
the comparison stays in a single space and the computed permission is
exact (not an over-grant). Correct at every transitional cursor:
pre-`2.6` (relation stripped → use `flag`), `2.6` (both present →
relation wins), post-`2.7` (`flag` removed → relation wins).

## Reproduction & validation

Locally jumped a real `2.4.0` DB → `v2.9.0` build via `yarn command:prod
upgrade`:

| Scenario | Result |
| --- | --- |
| Empty `permissionFlag` (vanilla seed) | passes (no crash) |
| **+1 flag row**, current code | `TypeError … universalIdentifier` →
**3 succeeded, 1 failed** |
| Same fixture, **this fix** | **16 succeeded, 0 failed**, DB fully
migrated to 2.9.0 |

`nx typecheck twenty-server` clean; existing cache-service unit tests
pass; app boots on the upgraded DB.

## Scope / follow-up

This fixes **Failure #2**. **Failure #1** in the same issue
(`viewFilter.relationTargetFieldMetadataId` selected before its column
exists) is a separate instance of the same theme — cache recompute
reading "future" schema before migrations run — and is worth a
follow-up. A more durable systemic fix would defer the workspace cache
recompute until after all schema-adding migrations; this PR is the
low-risk, backport-friendly fix for the immediate breakage.

> Note: an earlier bot branch
(`sonarly-39738-fixupgrade-guard-role-permission-flag-relation`)
proposed the same fallback inline. This PR supersedes it with a named
helper + a focused comment.

Fixes #20841

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-05 17:04:43 +02:00
Charles Bochet b53f1832d8 feat(ci): simplify visual regression dispatch to twenty-ui only (#21215)
## Summary

- Only trigger visual regression on `CI UI` workflow (drop `CI Front`)
- Remove tarball re-packaging step — `ci-privileged` now downloads the
artifact directly via GitHub API
- Remove `mode`/`project` parameters from the dispatch payload
(hardcoded to twenty-ui in ci-privileged)
- Pass `run_id` of the triggering CI UI workflow so ci-privileged can
fetch the correct artifact

## Context

Part of the fast visual regression CI initiative. The `ci-privileged`
workflow has been simplified to only handle `twenty-ui` screenshots
uploaded directly to Argos.

## Test plan

- [x] Full E2E verified on production: screenshots → Argos build → diff
results → PR comment
2026-06-04 13:49:44 +02:00
Paul Rastoin 3d49642d12 [AUDIT] Run knip over twenty-server (#21159)
# Introduction
Run [knip](https://knip.dev/) over twenty-server
Used config:
```json
{
  "$schema": "https://unpkg.com/knip@5/schema.json",
  "workspaces": {
    "packages/twenty-server": {
      "entry": [
        "src/main.ts",
        "src/command/command.ts",
        "src/queue-worker/queue-worker.ts",
        "src/database/scripts/setup-db.ts",
        "src/database/scripts/truncate-db.ts",
        "src/database/clickHouse/migrations/run-migrations.ts",
        "src/database/clickHouse/seeds/run-seeds.ts",
        "src/instrument.ts",
        "lingui.config.ts",
        "test/integration/graphql/codegen/index.ts",
        "test/integration/utils/setup-test.ts",
        "test/integration/utils/teardown-test.ts",
        "scripts/**/*.ts",
        "**/*.spec.ts",
        "**/*.integration-spec.ts"
      ],
      "project": ["src/**/*.ts", "test/**/*.ts", "scripts/**/*.ts"],
      "ignore": [
        "src/database/typeorm/**/migrations/**",
        "src/database/typeorm/**/*.entity.ts",
        "**/*.workspace-entity.ts",
        "**/logic-function-resource/constants/seed-project/**"
      ],
      "ignoreDependencies": ["@types/psl", "@types/aws-lambda"],
      "ignoreBinaries": ["nest", "lingui", "typeorm"]
    }
  }
}
```
2026-06-04 10:05:22 +00:00
martmull 4ad8d8e98e Set 200 code for post requests (#21214)
as title, nestJS use to set 201 for post requests but some services
(like google) requests 200 response code

See
https://discord.com/channels/1130383047699738754/1511054250971758642/1511785364027609099
for context
2026-06-04 09:14:51 +00:00
nitin 475cd9e7fe fix(upgrade): resequence workflow step logs command (#21213) 2026-06-04 08:27:43 +00:00
dependabot[bot] f0be78e629 chore(deps-dev): bump prettier from 3.4.2 to 3.8.3 (#21205)
Bumps [prettier](https://github.com/prettier/prettier) from 3.4.2 to
3.8.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/releases">prettier's
releases</a>.</em></p>
<blockquote>
<h2>3.8.3</h2>
<ul>
<li>SCSS: Prevent trailing comma in <code>if()</code> function (<a
href="https://redirect.github.com/prettier/prettier/pull/18471">prettier/prettier#18471</a>
by <a href="https://github.com/kovsu"><code>@​kovsu</code></a>)</li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/3.8.3/CHANGELOG.md#383">Changelog</a></p>
<h2>3.8.2</h2>
<ul>
<li>Support Angular v21.2</li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#382">Changelog</a></p>
<h2>3.8.1</h2>
<ul>
<li>Include available <code>printers</code> in plugin type declarations
(<a
href="https://redirect.github.com/prettier/prettier/pull/18706">#18706</a>
by <a href="https://github.com/porada"><code>@​porada</code></a>)</li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#381">Changelog</a></p>
<h2>3.8.0</h2>
<ul>
<li>Support Angular v21.1</li>
</ul>
<p><a
href="https://github.com/prettier/prettier/compare/3.7.4...3.8.0">diff</a></p>
<p>🔗 <a href="https://prettier.io/blog/2026/01/14/3.8.0">Release note
&quot;Prettier 3.8: Support for Angular v21.1&quot;</a></p>
<h2>3.7.4</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix comment in union type gets duplicated by <a
href="https://github.com/fisker"><code>@​fisker</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18393">prettier/prettier#18393</a></li>
<li>Fix unstable comment print in union type by <a
href="https://github.com/fisker"><code>@​fisker</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18395">prettier/prettier#18395</a></li>
<li>Avoid quote around LWC interpolations by <a
href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18383">prettier/prettier#18383</a></li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#374">Changelog</a></p>
<h2>3.7.3</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix <code>prettier.getFileInfo()</code> change that breaks VSCode
extension by <a
href="https://github.com/fisker"><code>@​fisker</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18375">prettier/prettier#18375</a></li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#373">Changelog</a></p>
<h2>3.7.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix string print when switching quotes by <a
href="https://github.com/fisker"><code>@​fisker</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18351">prettier/prettier#18351</a></li>
<li>Preserve quote for embedded HTML attribute values by <a
href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18352">prettier/prettier#18352</a></li>
<li>Fix comment in empty type literal by <a
href="https://github.com/fisker"><code>@​fisker</code></a> in <a
href="https://redirect.github.com/prettier/prettier/pull/18364">prettier/prettier#18364</a></li>
</ul>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#372">Changelog</a></p>
<h2>3.7.1</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's
changelog</a>.</em></p>
<blockquote>
<h1>3.8.3</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.8.2...3.8.3">diff</a></p>
<h4>SCSS: Prevent trailing comma in <code>if()</code> function (<a
href="https://redirect.github.com/prettier/prettier/pull/18471">#18471</a>
by <a href="https://github.com/kovsu"><code>@​kovsu</code></a>)</h4>
<!-- raw HTML omitted -->
<pre lang="scss"><code>// Input
$value: if(sass(false): 1; else: -1);
<p>// Prettier 3.8.2
$value: if(
sass(false): 1; else: -1,
);</p>
<p>// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);
</code></pre></p>
<h1>3.8.2</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.8.1...3.8.2">diff</a></p>
<h4>Angular: Support Angular v21.2 (<a
href="https://redirect.github.com/prettier/prettier/pull/18722">#18722</a>,
<a
href="https://redirect.github.com/prettier/prettier/pull/19034">#19034</a>
by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4>
<p>Exhaustive typechecking with <code>@default never;</code></p>
<!-- raw HTML omitted -->
<pre lang="html"><code>&lt;!-- Input --&gt;
@switch (foo) {
  @case (1) {}
  @default never;
}
<p>&lt;!-- Prettier 3.8.1 --&gt;
SyntaxError: Incomplete block &quot;default never&quot;. If you meant to
write the @ character, you should use the &quot;&amp;<a
href="https://redirect.github.com/prettier/prettier/issues/64">#64</a>;&quot;
HTML entity instead. (3:3)</p>
<p>&lt;!-- Prettier 3.8.2 --&gt;
<a href="https://github.com/switch"><code>@​switch</code></a> (foo) {
<a href="https://github.com/case"><code>@​case</code></a> (1) {}
<a href="https://github.com/default"><code>@​default</code></a> never;
}
</code></pre></p>
<p><code>arrow function</code> and <code>instanceof</code>
expressions.</p>
<!-- raw HTML omitted -->
<pre lang="html"><code>&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/prettier/prettier/commit/d7108a79ec745c04292aabf22c4c1adbd690b191"><code>d7108a7</code></a>
Release 3.8.3</li>
<li><a
href="https://github.com/prettier/prettier/commit/177f90898170d363ef64fde663e4d13170688bfe"><code>177f908</code></a>
Prevent trailing comma in SCSS <code>if()</code> function (<a
href="https://redirect.github.com/prettier/prettier/issues/18471">#18471</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/1cd40668c3d6f2f4cf9d87bbc9096d92361b2606"><code>1cd4066</code></a>
Release <code>@​prettier/plugin-oxc</code><a
href="https://github.com/0"><code>@​0</code></a>.1.4</li>
<li><a
href="https://github.com/prettier/prettier/commit/a8700e245038cd8cc0cf28ef06ffedbcb3fc2dfc"><code>a8700e2</code></a>
Update oxc-parser to v0.125.0</li>
<li><a
href="https://github.com/prettier/prettier/commit/752157c78eca6f0a30e5d5cb513b682c5ecfa01e"><code>752157c</code></a>
Fix tests</li>
<li><a
href="https://github.com/prettier/prettier/commit/053fd418e180b12fa2014260212fae831f5fc5ec"><code>053fd41</code></a>
Bump Prettier dependency to 3.8.2</li>
<li><a
href="https://github.com/prettier/prettier/commit/904c6365ec46726fd0e21021c52ae934b7e5abc6"><code>904c636</code></a>
Clean changelog_unreleased</li>
<li><a
href="https://github.com/prettier/prettier/commit/dc1f7fcc508d116cbf1644d69a1f0eb93e40d4a4"><code>dc1f7fc</code></a>
Update dependents count</li>
<li><a
href="https://github.com/prettier/prettier/commit/b31557cf331a02acf83e7e29d1001b070189a0d9"><code>b31557c</code></a>
Release 3.8.2</li>
<li><a
href="https://github.com/prettier/prettier/commit/96bbaeda0525bf758e464aed2f939d739a85c315"><code>96bbaed</code></a>
Support Angular v21.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/18722">#18722</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.4.2...3.8.3">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~GitHub%20Actions">GitHub Actions</a>, a new
releaser for prettier since your current version.</p>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=prettier&package-manager=npm_and_yarn&previous-version=3.4.2&new-version=3.8.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-04 09:45:41 +02:00
dependabot[bot] fe5337b7d0 chore(deps-dev): bump @types/passport-microsoft from 2.1.0 to 2.1.1 (#21204)
Bumps
[@types/passport-microsoft](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/passport-microsoft)
from 2.1.0 to 2.1.1.
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/passport-microsoft">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/passport-microsoft&package-manager=npm_and_yarn&previous-version=2.1.0&new-version=2.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-04 09:45:19 +02:00
dependabot[bot] f50e471385 chore(deps): bump @mantine/hooks from 8.3.15 to 8.3.18 (#21203)
Bumps
[@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks)
from 8.3.15 to 8.3.18.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases">@​mantine/hooks's
releases</a>.</em></p>
<blockquote>
<h2>8.3.18</h2>
<p>This is the last 8.x release. You are welcome to test 9.0 alpha
version and provide feedback before its release on March 31 – <a
href="https://alpha.mantine.dev/changelog/9-0-0/">https://alpha.mantine.dev/changelog/9-0-0/</a></p>
<ul>
<li><code>[@mantine/core]</code> PasswordInput: Fix styles api props not
resolving correctly in theme (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8716">#8716</a>)</li>
</ul>
<h2>8.3.17</h2>
<h2>Changes</h2>
<ul>
<li><code>[@mantine/core]</code> Stepper: Fix Google Translate
compatibility issues (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8744">#8744</a>)</li>
<li><code>[@mantine/hooks]</code> use-list-state: Add memoization to all
handlers (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8739">#8739</a>)</li>
</ul>
<h2>8.3.16</h2>
<h2>What's Changed</h2>
<ul>
<li><code>[@mantine/modals]</code> Fix <code>onClose</code> being called
multiple times (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8727">#8727</a>)</li>
<li><code>[@mantine/core]</code> Tooltip: Fix component not throwing
erro when used with string (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8694">#8694</a>)</li>
<li><code>[@mantine/core]</code> NumberInput: Fix incorrect decimal
separator parsing in <code>onPaste</code></li>
<li><code>[@mantine/core]</code> AppShell: Fix
<code>layout=&quot;alt&quot;</code> not working with
<code>mode=&quot;static&quot;</code></li>
<li><code>[@mantine/stotlight]</code> Fix actions list being rendered
when nothing found message was not set (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8592">#8592</a>)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mantinedev/mantine/compare/8.3.15...8.3.16">https://github.com/mantinedev/mantine/compare/8.3.15...8.3.16</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mantinedev/mantine/commit/530249feb498d74d5ea849d2984c86efd072f38c"><code>530249f</code></a>
[release] Version: 8.3.18</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/bac61d6fc21be84bd80d1d9232a605c05692ae75"><code>bac61d6</code></a>
[release] Version: 8.3.17</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/6b3fdee137584aece43b88b62d8c207a58c35295"><code>6b3fdee</code></a>
[refactor] Fix formatting</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/c048f996cc1a8287bd9eaba1bb59bc6637316b90"><code>c048f99</code></a>
[<code>@​mantine/hooks</code>] use-list-state: Add memoization to all
handlers (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/8739">#8739</a>)</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/dbb8732ca3350259e0cf7b2536d0bcc885b1b587"><code>dbb8732</code></a>
[release] Version: 8.3.16</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/8.3.18/packages/@mantine/hooks">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/hooks&package-manager=npm_and_yarn&previous-version=8.3.15&new-version=8.3.18)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-04 09:45:10 +02:00
Félix Malfait a3a44c8315 fix(front): settings skeleton, app-detail header & empty favorites (#21209)
Three small post-redesign UI fixes. Each is an independent commit, so
they can be split into separate PRs if preferred.

## 1. Settings loading skeleton — match the rounded-card layout

The redesign (#21131) moved settings chrome into a rounded card
(`SettingsPageLayout`: bordered header with breadcrumb + centered title,
optional secondary bar, 760px body), but `SettingsSkeletonLoader` still
rendered the old flat `PageHeader` + `PageBody` — so pages painted as a
full-width flat bar then snapped into the card.

- `SettingsSkeletonLoader` now reproduces the card and **reuses the real
`SettingsPageHeader` + `SettingsPageContainer`**, so the frame aligns by
construction; the card CSS is replicated (not `SettingsPageLayout`) to
avoid the layout's side effects (hotkeys, side panel, info banner).
- It's **composed with `SettingsSectionSkeletonLoader`** so the loading
body is identical whether or not chrome is present. Rule: no chrome on
screen yet → full-page skeleton; chrome already on screen → body-only
`SettingsSectionSkeletonLoader` (the admin Enterprise tab now uses it,
matching its sibling tabs). A short comment on each component documents
this.

## 2. Application detail header — pass a plain title

`SettingsApplicationDetails` / `SettingsAvailableApplicationDetails`
passed a custom `SettingsApplicationDetailTitle` (avatar + name +
multi-line description, fixed width) into `SettingsPageLayout`'s
**centered single-line title slot**, which broke the header. They now
pass the app's display name like every other page. The available-app
"unlisted" notice moves into the body as a reusable `InlineBanner`; the
now-unused `SettingsApplicationDetailTitle` is removed.

## 3. Navigation — hide Favorites when empty

Always rendering the Favorites section (#21087) left a stray "Favorites"
title above Workspace for users with no favorites. It now renders only
when at least one favorite exists (redundant per-child guards dropped).
Note: the "+ add favorite" entry point therefore appears once you have
≥1 favorite; the first favorite is created from a record/view as before.

## Verification
- `nx typecheck twenty-front`  · `oxlint` + `oxfmt --check` on changed
files 
- i18n catalogs intentionally untouched — handled by the repo's separate
i18n pipeline.
2026-06-04 09:32:36 +02:00
github-actions[bot] e99116b0a5 chore: sync AI model catalog from models.dev (#21212)
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-06-04 09:31:01 +02:00
Félix Malfait 2ac515894b feat(settings): add Logs as a dedicated tab in General settings (#21180)
## What & why

The audit-log viewer lived as a full-screen page reachable only via a
"View Logs" button buried in the **Security** tab. This surfaces it as
the **third tab in General settings** (`General | Security | Logs`),
consistent with the other tabs.

## Changes

- **Relocated** the event-logs module
`pages/settings/security/event-logs/` → `modules/settings/event-logs/`
and render it as tab content instead of a `FullScreenContainer` page.
Dropped `SettingsPath.EventLogs`, its route, and the fullscreen handling
in favor of the `general#logs` hash tab.
- **Security tab:** removed the "View Logs" entry; kept the
log-retention setting there.
- **In-tab gating** (shown to users with the Security permission):
Enterprise upgrade card when not entitled, a clear "ClickHouse not
configured" placeholder otherwise (derived from client config), and the
query is skipped when disabled. Replaces a bespoke error component that
string-matched error messages with the shared `SettingsEmptyPlaceholder`
/ `SettingsEnterpriseFeatureGateCard`.
- **Layout:** boxed content column with the table selector + filters
grouped in a `Card` and the results table below, matching settings
conventions. Kept the existing fixed filters (page/event name, member,
period) rather than recreating the record-view filter chips (those are
tightly coupled to record/view context).

Frontend + `twenty-shared` only — no changes to the log query or data.

## Test plan

- [x] `npx nx typecheck twenty-front` and `npx nx lint twenty-front`
pass
- [x] Settings → General shows three tabs; Logs is the third; breadcrumb
stays "Workspace / General"
- [x] With Enterprise + ClickHouse: table selector, filters, refresh,
and the paginated table work
- [x] Non-Enterprise: Enterprise upgrade card shown; no failing query
fires
- [ ] Enterprise without ClickHouse: shows the "ClickHouse not
configured" placeholder
- [ ] Security tab still shows the log-retention setting and the "View
Logs" button is gone
- [ ] A user without the Security permission sees neither the Security
nor Logs tab
2026-06-04 08:47:23 +02:00
Charles Bochet e6614299c6 feat(ci): integrate Argos visual regression via vitest screenshots (#21210)
## Summary

- Adds `@argos-ci/storybook` vitest plugin to `twenty-ui` for automatic
screenshot capture during vitest storybook tests
- Uploads captured screenshots (PNG, ~5MB) as a CI artifact instead of
passing the full storybook build
- Updates the visual regression dispatch workflow to pass
`mode=argos-screenshots` to ci-privileged, which then uploads
screenshots to Argos via CLI

This replaces the 10-minute Storybook screenshot capture with a ~30s
vitest browser-mode approach. The heavy screenshot work happens on free
public runners, while ci-privileged only handles the Argos API upload
(keeping secrets private).

## Architecture

```
twenty (public, free runners)          ci-privileged (private)
─────────────────────────────          ────────────────────────
1. Build storybook-static              4. Download screenshots artifact
2. Vitest captures screenshots         5. `argos upload` → Argos API
3. Upload screenshots artifact         6. Poll for results
                                       7. Post PR comment
```

## Test plan

- [x] Verified locally: vitest captures 225 screenshots in ~28s
- [x] Verified `@argos-ci/cli upload` successfully creates Argos build
from captured screenshots
- [x] Argos diffs computed and results visible via API
- [ ] CI runs end-to-end on a PR
2026-06-04 08:46:37 +02:00
Abdullah. ccffc4a1ea Fix axios related dependabot alerts generated against root yarn.lock (#21187)
Fixes the following Dependabot alerts:
https://github.com/twentyhq/twenty/security/dependabot?q=is%3Aopen+package%3Aaxios+manifest%3Ayarn.lock+has%3Apatch

Upgraded the referenced version in root yarn.lock. Creating a separate
PR for the nested ones to keep the updates isolated (e.g.
/seed-dependencies/yarn.lock).
2026-06-03 23:19:42 +00:00
github-actions[bot] 685c0ddd12 i18n - docs translations (#21195)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-03 21:43:27 +02:00
Etienne 15eaabdbc1 fix(ai) - optimize crud tools (#21133)
- **Add delete many**, `delete_many_{object}` added alongside the
existing `delete_one_{object}`.
- **Uniformize naming**, crud module, type names, and MCP helper
constants renamed for consistency.
- **Optimize tool schema (learn phase)**
  - `find_many(_companies)`: **7 158 → 2 700 tokens**
  - `find_one(_company)`: **280 → 126 tokens**
  -  ....
- Main mechanism: `reused: 'ref'` (line 7 of
`to-tool-json-schema.util.ts`). Zod walks the schema tree, tracks which
Zod schema instances appear more than once, and emits each reused
instance exactly once in `$defs`, replacing all subsequent occurrences
with a `$ref`. Works because filter and value schemas are now extracted
as shared objects.

- **Optimize system prompt (tool catalog)**, DATABASE_CRUD section
restructured to list operation patterns (`find_many_{object}`, …) once +
objects once, instead of the full N×M cross-product of tool names.
- **Optimize execute_tool**, shared record-properties schema (same
`$defs` deduplication applies at call time); introduced `upsert_many`;
added `selectedFields` to `find_*` so the agent only fetches the fields
it needs.
2026-06-03 17:57:40 +00:00
Abdullah. 50c9b68e81 Update axios in package.json of seed-dependencies (#21190)
Fixes the following Dependabot alerts:
https://github.com/twentyhq/twenty/security/dependabot?q=is%3Aopen+package%3Aaxios+manifest%3Apackages%2Ftwenty-server%2Fsrc%2Fengine%2Fcore-modules%2Fapplication%2Fapplication-package%2Fconstants%2Fseed-dependencies%2Fyarn.lock+has%3Apatch

Follow up to the alerts not addressed in
[this](https://github.com/twentyhq/twenty/pull/21187) PR.
2026-06-03 17:49:02 +00:00
github-actions[bot] 34d893f9fd i18n - translations (#21192)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-03 19:57:05 +02:00
Priyanshu Bartwal d3a7ea0790 Fix: Not able to add multiple handles to Blocklist in settings/accounts (#21049)
Fixes: #21031

### Root cause:
This feature was never fully implemented even though the placeholder
text suggested it was supported. It could only update one handle at a
time.

### Fix
Fixed the zod validation to validate each handle separately.
Used `useCreateManyRecords` to update multiple handles at the same time.

### Before:
<img width="2032" height="1162" alt="Screenshot 2026-05-29 at 3 25
12 PM"
src="https://github.com/user-attachments/assets/ae6b6ae3-ed38-4410-801e-11f514773681"
/>

### After:


https://github.com/user-attachments/assets/69354129-422a-41de-baf7-fa5a28f01f3f

---------

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com>
2026-06-03 17:34:51 +00:00
github-actions[bot] 49828d9379 i18n - translations (#21191)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2026-06-03 19:17:44 +02:00
Etienne dd0039ca1c feat(mcp) - optimize instruction prompt and hide get_tool_catalog (#21183)
Workspace-aware initialize.instructions

- Deleted the static mcp-server-instructions.const.ts
- Created build-mcp-server-instructions.util.ts — a comprehensive system
prompt with identity, object list, tool grammar, routing decision tree,
intent mapping, skills vs tools, safety constraints, and data efficiency
guidelines
- Created McpInstructionBuilderService — fetches workspace-specific
object names + skill names and injects them into the instructions


Hide/deprecate get_tool_catalog

Benefit : skip first MCP call (tools are included in instruction)
2026-06-03 16:58:32 +00:00
Marie 4b15b949f3 Provide additional logsobservability to workflow runs (per node) (#21142)
Surfaces per-step "Logs" tabs in the workflow run side panel so users
can see what each step actually did (model + tokens + tool calls for AI,
console output for serverless functions, request/response for HTTP,
recipients/body for Email).

<img width="546" height="501" alt="ai_agent_without_websearch"
src="https://github.com/user-attachments/assets/c6ca3518-9489-4484-a570-3d0569ff3b03"
/>

## Storage

- New `stepLogs` JSONB column on the `workflowRun` workspace entity,
typed as `Record<string, WorkflowRunStepLog>` (keyed by step id).
- Schema lives in `twenty-shared`: `workflowRunStepLogSchema` with a
discriminated `details.type` union for `AI_AGENT | CODE | HTTP_REQUEST |
EMAIL` — frontends and backends consume the same Zod-inferred type.
- Field is added to existing workspaces via a workspace upgrade command
(`2-9 add-workflow-run-step-logs-field`); the standard-object metadata
declares it for new workspaces.
- Writes happen atomically per step in
`WorkflowRunStepLogWorkspaceService.setStepLog` using `jsonb_set`. That
lets concurrent steps in the same run write their own keys without
contending with the existing lock around `workflowRun.state`.
- Per-step payload is hard-capped at 256 KB; anything larger is dropped
with a `logger.warn`, so a pathological tool call can never bloat a row.
See below for more information.

## How logs are produced

**Aalmost everything was already being collected; this PR mostly
persists and renders it.**

- **AI agent** — `AgentAsyncExecutorService` already tracked token
usage, model id, native web-search count, and the AI SDK's `steps[]`. We
map those into the log via `mapAiStepsToToolCallLogs` (`searchVector`
stripped from record outputs, per-call input/output capped at 32/64 KB,
max 200 tool calls per step). The only new measurement is a wall-clock
`durationMs` taken around `executeAgent`, and we now fold native
web-search cost into the displayed `totalCostInDollars` (it was already
billed, just not shown).
- **Code / serverless function** — reuses the `console.log` output the
function runner already returns (`logsByLevel`);
`build-code-step-log.util` only repackages it.
- **HTTP request** — built from the action's existing input/output via
`build-http-request-step-log.util`. No new signals collected.
- **Email (send / draft)** — added `sanitizedHtmlBody` + `plainTextBody`
to the existing tool outputs (a small additive change), then
`build-email-step-log.util` consumes them.

No additional AI inference or external calls are made for logging — the
cost is a small CPU overhead per step plus the JSONB write.

## Security

The log surface intentionally shows whatever the workflow touched, which
made redaction and sanitization the main design concern.

- **HTTP — secrets in headers**: existing `SENSITIVE_HEADER_NAMES` set
(Authorization, Cookie, …) replaced with `[redacted]` in both request
and response.
- **HTTP — secrets in URLs**: `SENSITIVE_URL_PARAM_NAMES` (e.g.
`api_key`, `token`, `access_token`) replaced in the query string via
`URL`-based parsing.
- **HTTP — secrets in bodies**: `SENSITIVE_BODY_KEY_REGEX` deep-walks
JSON request/response bodies (object input or stringified JSON) and
redacts matching keys. Applied to the `error` field too, since
transport-layer errors sometimes embed structured payloads.
- **Email — XSS risk in body preview**: tool outputs now expose a
server-side `sanitizedHtmlBody`; the log builder prefers it over the raw
user-authored `input.body`, with `plainTextBody` as a second fallback.
The original raw body is only used if sanitization didn't happen (e.g.
tool failed before composing).
- **AI — internal/noisy data**: `searchVector` (Postgres tsvector
strings) is stripped from record outputs returned by Twenty tools to
avoid leaking internal full-text-search payloads.
- **DB bloat / runaway agents**: 256 KB per-step cap + 32 KB / 64 KB
per-tool-call input/output cap + 200 tool calls per step.

<img width="547" height="307" alt="logic_function"
src="https://github.com/user-attachments/assets/dd4a3d16-67f2-434b-95b3-bdcaf9ed053d"
/>

## More details on Log size & truncation

Logs are stored in `workflowRun.stepLogs` (JSONB), keyed by `stepId`.

### Per-step cap

Each step's log is hard-capped at **256 KB** (`MAX_STEP_LOG_BYTES` in
`WorkflowRunStepLogWorkspaceService.setStepLog`).

For ~99% of workflows this is roomy — typical real-world sizes:
- Code / serverless function: 1–20 KB
- HTTP request: 5–70 KB
- Email: 5–30 KB
- AI agent (a handful of tool calls): 5–50 KB

### Two layers of bounding

1. **Per-field truncation** in each builder (before writing):
   - **Code**: ≤ 500 entries, ≤ 4 KB per message, ≤ 8 KB stack trace
   - **HTTP**: ≤ 32 KB per body (request + response), UTF-8 byte-aware
   - **Email**: ≤ 8 KB body preview, UTF-8 byte-aware
- **AI agent**: ≤ 32 KB tool input, ≤ 64 KB tool output, ≤ 200 tool
calls/step

2. **Global per-step safety net** at write time: if the assembled
`stepLog` still exceeds 256 KB, the write is **dropped entirely** with a
`logger.warn`. The workflow itself keeps running unaffected.

### What this means in practice

- **Safe**: workflow execution, step results, downstream steps — never
blocked by log size.
- **Safe**: iterators (each iteration overwrites the previous log for
that `stepId`, so they can't accumulate).
- **Safe**: step retries (same `stepId` is overwritten, not appended).
- **Possible**: an AI agent step with many large tool outputs (e.g., 50+
heavy `web_search` calls) can exceed 256 KB → the **entire** step's log
is dropped, side panel shows "No logs were recorded for this step". The
user has no explicit signal that the log was dropped due to size (only
server-side warn).
- **Possible** (theoretical): a workflow with hundreds of distinct steps
could push the row toward Postgres's internal ~256 MB jsonb limit.
Beyond that, individual `jsonb_set` writes would error and be swallowed
by the action's try/catch — workflow still completes.

### Possible future hardening (not in this PR)

- Replace "drop entire log" with a stub that preserves the summary card
(cost, duration, status) and marks `truncated.reason = 'size_cap'`.
- Surface size-drops in the UI (similar to the existing
`<StyledTruncatedNotice>`).
- Emit a metric so dropped logs are observable in dashboards.
2026-06-03 16:53:47 +00:00
martmull 0671ff3de5 Fix lambda error (#21179)
- move twenty-sdk from dependencies to devDependencies
- add documentation about breaking
- add warning about moving the package to dev dependencies
2026-06-03 16:45:51 +00:00
Etienne 7fcbc45017 perf(ai) - per-tool schema resolution in resolveSchemas (#21188)
learn_tools(["find_many_companies"]) goes from ~170ms → ~2ms (85x
faster, measured with 40 objects / empty fields — real workspaces would
see even bigger savings). Previously it generated schemas for all ~250
tools and discarded 249;

now it generates exactly the requested one(s).
2026-06-03 16:29:26 +00:00
466 changed files with 13515 additions and 7476 deletions
@@ -120,7 +120,7 @@ jobs:
echo "--- Checking package.json references correct SDK version ---"
node -e "
const pkg = require('./package.json');
const sdkVersion = pkg.dependencies['twenty-sdk'];
const sdkVersion = pkg.devDependencies['twenty-sdk'];
if (!sdkVersion.startsWith('0.0.0-ci.')) {
console.error('Expected twenty-sdk version to start with 0.0.0-ci., got:', sdkVersion);
process.exit(1);
+12 -10
View File
@@ -27,11 +27,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Login to Docker Hub
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
# Pull base images through Google's Docker Hub mirror — avoids Docker Hub
# rate limits and needs no credentials (this repo is public).
- name: Configure Docker Hub mirror
run: |
echo '{"registry-mirrors":["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Run compose
run: |
echo "Patching docker-compose.yml..."
@@ -102,11 +103,12 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- name: Login to Docker Hub
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
# Pull base images through Google's Docker Hub mirror — avoids Docker Hub
# rate limits and needs no credentials (this repo is public).
- name: Configure Docker Hub mirror
run: |
echo '{"registry-mirrors":["https://mirror.gcr.io"]}' | sudo tee /etc/docker/daemon.json
sudo systemctl restart docker
- name: Create frontend placeholder
run: |
mkdir -p packages/twenty-front/build
+8 -7
View File
@@ -87,17 +87,18 @@ jobs:
npx http-server packages/twenty-ui/storybook-static --port 6007 --silent &
timeout 30 bash -c 'until curl -sf http://localhost:6007 > /dev/null 2>&1; do sleep 1; done'
npx nx storybook:test twenty-ui
- name: Upload screenshots for visual regression
if: always() && !cancelled()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: argos-screenshots-twenty-ui
path: packages/twenty-ui/screenshots
retention-days: 1
ci-ui-status-check:
if: always() && !cancelled()
timeout-minutes: 5
runs-on: ubuntu-latest
needs:
[
changed-files-check,
ui-task,
ui-sb-build,
ui-sb-test,
]
needs: [changed-files-check, ui-task, ui-sb-build, ui-sb-test]
steps:
- name: Fail job if any needs failed
if: contains(needs.*.result, 'failure')
@@ -1,12 +1,12 @@
name: Visual Regression Dispatch
# Uses workflow_run to dispatch visual regression to ci-privileged.
# This runs in the context of the base repo (not the fork), so it has
# access to secrets — making it work for external contributor PRs.
# Dispatches visual regression processing to ci-privileged after CI completes.
# Runs in the context of the base repo (not the fork) so it has access to secrets,
# making it work for external contributor PRs.
on:
workflow_run:
workflows: ['CI Front', 'CI UI']
workflows: ['CI UI']
types: [completed]
permissions:
@@ -21,27 +21,28 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Determine project and artifact name
- name: Determine project
id: project
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
with:
script: |
const workflowName = context.payload.workflow_run.name;
if (workflowName === 'CI Front') {
core.setOutput('project', 'twenty-front');
core.setOutput('artifact_name', 'storybook-static');
core.setOutput('tarball_name', 'storybook-twenty-front-tarball');
core.setOutput('tarball_file', 'storybook-twenty-front.tar.gz');
} else if (workflowName === 'CI UI') {
core.setOutput('project', 'twenty-ui');
core.setOutput('artifact_name', 'storybook-twenty-ui');
core.setOutput('tarball_name', 'storybook-twenty-ui-tarball');
core.setOutput('tarball_file', 'storybook-twenty-ui.tar.gz');
} else {
const projects = {
'CI UI': { project: 'twenty-ui', artifact: 'argos-screenshots-twenty-ui' },
// Add more projects here when ready:
// 'CI Front': { project: 'twenty-front', artifact: 'argos-screenshots-twenty-front' },
};
const config = projects[workflowName];
if (!config) {
core.setFailed(`Unexpected workflow: ${workflowName}`);
return;
}
- name: Check if storybook artifact exists
core.setOutput('project', config.project);
core.setOutput('artifact_name', config.artifact);
- name: Check if screenshots artifact exists
id: check-artifact
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
with:
@@ -59,7 +60,7 @@ jobs:
core.setOutput('exists', found ? 'true' : 'false');
if (!found) {
core.info(`Artifact "${artifactName}" not found in run ${runId} — storybook build was likely skipped`);
core.info(`Artifact "${artifactName}" not found in run ${runId} — skipping`);
}
- name: Get PR number
@@ -71,8 +72,6 @@ jobs:
const headBranch = context.payload.workflow_run.head_branch;
const headRepo = context.payload.workflow_run.head_repository;
// workflow_run.pull_requests is empty for fork PRs,
// so fall back to searching by head label (owner:branch)
let pullRequests = context.payload.workflow_run.pull_requests;
let prNumber;
@@ -80,7 +79,7 @@ jobs:
prNumber = pullRequests[0].number;
} else {
const headLabel = `${headRepo.owner.login}:${headBranch}`;
core.info(`pull_requests is empty (likely a fork PR), searching by head label: ${headLabel}`);
core.info(`Searching for PR by head label: ${headLabel}`);
const { data: prs } = await github.rest.pulls.list({
owner: context.repo.owner,
@@ -96,7 +95,7 @@ jobs:
}
if (!prNumber) {
core.info('No pull request found for this workflow run — skipping');
core.info('No pull request found — skipping');
core.setOutput('has_pr', 'false');
return;
}
@@ -105,42 +104,22 @@ jobs:
core.setOutput('has_pr', 'true');
core.info(`PR #${prNumber}`);
- name: Download storybook artifact from triggering run
if: steps.check-artifact.outputs.exists == 'true' && steps.pr-info.outputs.has_pr == 'true'
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
with:
name: ${{ steps.project.outputs.artifact_name }}
path: storybook-static
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ github.token }}
- name: Package storybook
if: steps.check-artifact.outputs.exists == 'true' && steps.pr-info.outputs.has_pr == 'true'
run: tar -czf /tmp/${{ steps.project.outputs.tarball_file }} -C storybook-static .
- name: Upload storybook tarball
if: steps.check-artifact.outputs.exists == 'true' && steps.pr-info.outputs.has_pr == 'true'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: ${{ steps.project.outputs.tarball_name }}
path: /tmp/${{ steps.project.outputs.tarball_file }}
retention-days: 1
- name: Dispatch to ci-privileged
if: steps.check-artifact.outputs.exists == 'true' && steps.pr-info.outputs.has_pr == 'true'
env:
GH_TOKEN: ${{ secrets.CI_PRIVILEGED_DISPATCH_TOKEN }}
PR_NUMBER: ${{ steps.pr-info.outputs.pr_number }}
RUN_ID: ${{ github.run_id }}
WORKFLOW_RUN_ID: ${{ github.event.workflow_run.id }}
REPOSITORY: ${{ github.repository }}
PROJECT: ${{ steps.project.outputs.project }}
BRANCH: ${{ github.event.workflow_run.head_branch }}
COMMIT: ${{ github.event.workflow_run.head_sha }}
run: |
gh api repos/twentyhq/ci-privileged/dispatches \
--method POST \
-f event_type=visual-regression \
-f "client_payload[pr_number]=$PR_NUMBER" \
-f "client_payload[run_id]=$RUN_ID" \
-f "client_payload[run_id]=$WORKFLOW_RUN_ID" \
-f "client_payload[repo]=$REPOSITORY" \
-f "client_payload[project]=$PROJECT" \
-f "client_payload[branch]=$BRANCH" \
+1
View File
@@ -56,3 +56,4 @@ TRANSLATION_QA_REPORT.md
.playwright-mcp/
.playwright-cli/
output/playwright/
screenshots/
@@ -17,8 +17,7 @@
"test:watch": "vitest"
},
"dependencies": {
"twenty-client-sdk": "TO-BE-GENERATED",
"twenty-sdk": "TO-BE-GENERATED"
"twenty-client-sdk": "TO-BE-GENERATED"
},
"devDependencies": {
"@types/node": "^24.7.2",
@@ -26,6 +25,7 @@
"oxlint": "^0.16.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"twenty-sdk": "TO-BE-GENERATED",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^3.1.1"
@@ -33,9 +33,11 @@ const TEMPLATE_PACKAGE_JSON = {
license: 'MIT',
scripts: { twenty: 'twenty' },
dependencies: {
'twenty-sdk': '0.0.0',
'twenty-client-sdk': '0.0.0',
},
devDependencies: {
'twenty-sdk': '0.0.0',
},
};
describe('copyBaseApplicationProject', () => {
@@ -147,7 +149,7 @@ describe('copyBaseApplicationProject', () => {
join(testAppDirectory, 'package.json'),
);
expect(packageJson.name).toBe('my-test-app');
expect(packageJson.dependencies['twenty-sdk']).toBe(
expect(packageJson.devDependencies['twenty-sdk']).toBe(
createTwentyAppPackageJson.version,
);
expect(packageJson.dependencies['twenty-client-sdk']).toBe(
@@ -120,7 +120,8 @@ const updatePackageJson = async ({
const packageJson = await fs.readJson(join(appDirectory, 'package.json'));
packageJson.name = appName;
packageJson.dependencies['twenty-sdk'] = createTwentyAppPackageJson.version;
packageJson.devDependencies['twenty-sdk'] =
createTwentyAppPackageJson.version;
packageJson.dependencies['twenty-client-sdk'] =
createTwentyAppPackageJson.version;
@@ -43,7 +43,7 @@ A brief note on the overall tone of the conversation (collaborative, tense, expl
- If the transcript is very short (under 200 words), provide a brief 2-3 sentence summary instead of the full structure.
## Saving the Summary
After generating the summary, use \`update_callRecording\` to save it in the \`summary\` field with the format:
After generating the summary, use \`update_one_call_recording\` to save it in the \`summary\` field with the format:
\`\`\`json
{ "summary": { "blocknote": null, "markdown": "<your summary>" } }
\`\`\`
@@ -13,7 +13,7 @@ Retrieve the Twenty records needed to answer the user's question, then present t
Use the selected connected Twenty MCP server when it is available
- `get_tool_catalog``learn_tools``execute_tool`
- `learn_tools``execute_tool`
- Discover the relevant object, fields, filters, and sort options instead of guessing exact API names.
- Retrieve only the fields needed for the answer, plus the fields needed for ordering or disambiguation.
- For "latest", "most recent", or "recent" requests, include the relevant timestamp field used for sorting.
@@ -1787,6 +1787,7 @@ enum FeatureFlagKey {
IS_REST_METADATA_API_NEW_FORMAT_DIRECT
IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED
IS_SETTINGS_DISCOVERY_HERO_ENABLED
IS_WORKFLOW_RUN_STEP_LOGS_ENABLED
}
type WorkspaceUrls {
@@ -1414,7 +1414,7 @@ export interface FeatureFlag {
__typename: 'FeatureFlag'
}
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAIL_GROUP_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' | 'IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED' | 'IS_SETTINGS_DISCOVERY_HERO_ENABLED'
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAIL_GROUP_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' | 'IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED' | 'IS_SETTINGS_DISCOVERY_HERO_ENABLED' | 'IS_WORKFLOW_RUN_STEP_LOGS_ENABLED'
export interface WorkspaceUrls {
customUrl?: Scalars['String']
@@ -8743,7 +8743,8 @@ export const enumFeatureFlagKey = {
IS_JUNCTION_RELATIONS_ENABLED: 'IS_JUNCTION_RELATIONS_ENABLED' as const,
IS_REST_METADATA_API_NEW_FORMAT_DIRECT: 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT' as const,
IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED: 'IS_LOGIC_FUNCTION_PREBUILT_MODE_ENABLED' as const,
IS_SETTINGS_DISCOVERY_HERO_ENABLED: 'IS_SETTINGS_DISCOVERY_HERO_ENABLED' as const
IS_SETTINGS_DISCOVERY_HERO_ENABLED: 'IS_SETTINGS_DISCOVERY_HERO_ENABLED' as const,
IS_WORKFLOW_RUN_STEP_LOGS_ENABLED: 'IS_WORKFLOW_RUN_STEP_LOGS_ENABLED' as const
}
export const enumIdentityProviderType = {
@@ -17,7 +17,7 @@ Resolve the intended workspace before selecting a Twenty MCP server:
Use the selected connected Twenty MCP server when it is available:
```text
get_tool_catalog -> learn_tools -> execute_tool
learn_tools -> execute_tool
```
- Discover object, field, filter, and sort names before querying.
@@ -110,7 +110,7 @@ codex mcp get <server-name>
When connected, use the Twenty MCP discovery flow:
```text
get_tool_catalog -> learn_tools -> execute_tool
learn_tools -> execute_tool
```
## Troubleshooting
@@ -8,5 +8,6 @@ icon: "wrench"
- **Wrong Node version** — Need 24+. Check with `node -v`.
- **Yarn 4 missing** — Run `corepack enable`.
- **Dependencies broken** — `rm -rf node_modules && yarn install`.
- **`twenty-sdk` errors after upgrading to v2.8.0** — It moved from `dependencies` to `devDependencies` in v2.8.0. See [Project Structure → Dependencies](/developers/extend/apps/getting-started/project-structure#dependencies).
Stuck? Ask on the [Twenty Discord](https://discord.com/channels/1130383047699738754/1130386664812982322).
@@ -8,5 +8,6 @@ icon: Schraubenschlüssel
* **Falsche Node-Version** — 24+ erforderlich. Prüfen Sie mit `node -v`.
* **Yarn 4 fehlt** — Führen Sie `corepack enable` aus.
* **Abhängigkeiten defekt** — `rm -rf node_modules && yarn install`.
* **`twenty-sdk`-Fehler nach dem Upgrade auf v2.8.0** — es wurde in v2.8.0 von `dependencies` zu `devDependencies` verschoben. Siehe [Projektstruktur → Abhängigkeiten](/l/de/developers/extend/apps/getting-started/project-structure#dependencies).
Hängen Sie fest? Bitten Sie im [Twenty-Discord](https://discord.com/channels/1130383047699738754/1130386664812982322) um Hilfe.
@@ -103,11 +103,10 @@ Bitten Sie Ihren KI-Assistenten, mit Ihrem CRM zu interagieren:
Nach der Verbindung stellt der MCP-Server Tools bereit, die die Twenty-API widerspiegeln. Der empfohlene Workflow ist:
1. **`get_tool_catalog`** — alle verfügbaren Tools entdecken
2. **`learn_tools`** — das Eingabeschema für bestimmte Tools abrufen
3. **`execute_tool`** — ein Tool ausführen
1. **`learn_tools`** — das Eingabeschema für bestimmte Tools abrufen
2. **`execute_tool`** — ein Tool ausführen
Sie müssen sich die Tool-Namen nicht merken. Fragen Sie Ihren KI-Assistenten, was er tun kann, und er ruft `get_tool_catalog` automatisch auf.
Sie müssen sich die Tool-Namen nicht merken. Fragen Sie Ihren KI-Assistenten, was er tun kann, und er ruft `learn_tools` automatisch auf.
## Berechtigungen
@@ -8,5 +8,6 @@ icon: wrench
* **Versão errada do Node** — É necessário 24 ou superior. Verifique com `node -v`.
* **Falta o Yarn 4** — Execute `corepack enable`.
* **Dependências com problemas** — `rm -rf node_modules && yarn install`.
* **Erros do `twenty-sdk` após a atualização para a v2.8.0** — Ele foi movido de `dependencies` para `devDependencies` na v2.8.0. Veja [Estrutura do projeto → Dependências](/l/pt/developers/extend/apps/getting-started/project-structure#dependencies).
Travou? Peça ajuda no [Discord da Twenty](https://discord.com/channels/1130383047699738754/1130386664812982322).
@@ -103,11 +103,10 @@ Peça ao seu assistente de IA para interagir com seu CRM:
Depois de conectado, o servidor MCP expõe ferramentas que refletem a API do Twenty. O fluxo de trabalho recomendado é:
1. **`get_tool_catalog`** — descobrir todas as ferramentas disponíveis
2. **`learn_tools`** — obter o esquema de entrada para ferramentas específicas
3. **`execute_tool`** — executar uma ferramenta
1. **`learn_tools`** — obter o esquema de entrada para ferramentas específicas
2. **`execute_tool`** — executar uma ferramenta
Você não precisa se lembrar dos nomes das ferramentas. Pergunte ao seu assistente de IA o que ele pode fazer e ele chamará `get_tool_catalog` automaticamente.
Você não precisa se lembrar dos nomes das ferramentas. Pergunte ao seu assistente de IA o que ele pode fazer e ele chamará `learn_tools` automaticamente.
## Permissões
@@ -8,5 +8,6 @@ icon: wrench
* **Versiune Node greșită** — Aveți nevoie de 24+. Verificați cu `node -v`.
* **Lipsește Yarn 4** — Rulați `corepack enable`.
* **Dependențe nefuncționale** — `rm -rf node_modules && yarn install`.
* **Erori ale `twenty-sdk` după actualizarea la v2.8.0** — A fost mutat din `dependencies` în `devDependencies` în v2.8.0. Vezi [Structura proiectului → Dependințe](/l/ro/developers/extend/apps/getting-started/project-structure#dependencies).
Blocat? Întrebați pe [Discordul Twenty](https://discord.com/channels/1130383047699738754/1130386664812982322).
@@ -103,11 +103,10 @@ Roagă-ți asistentul AI să interacționeze cu CRM-ul tău:
După conectare, serverul MCP expune instrumente care oglindesc API-ul Twenty. Fluxul de lucru recomandat este:
1. **`get_tool_catalog`** — descoperă toate instrumentele disponibile
2. **`learn_tools`** — obține schema de intrare pentru instrumente specifice
3. **`execute_tool`** — rulează un instrument
1. **`learn_tools`** — obține schema de intrare pentru instrumente specifice
2. **`execute_tool`** — rulează un instrument
Nu este nevoie să reții numele instrumentelor. Întreabă-ți asistentul AI ce poate face și va apela `get_tool_catalog` automat.
Nu este nevoie să reții numele instrumentelor. Întreabă-ți asistentul AI ce poate face și va apela `learn_tools` automat.
## Permisiuni
@@ -8,5 +8,6 @@ icon: wrench
* **Неподходящая версия Node** — нужна 24+. Проверьте с помощью `node -v`.
* **Отсутствует Yarn 4** — выполните `corepack enable`.
* **Зависимости повреждены** — `rm -rf node_modules && yarn install`.
* **Ошибки `twenty-sdk` после обновления до v2.8.0** — он был перенесен из `dependencies` в `devDependencies` в v2.8.0. См. [Структура проекта → Зависимости](/l/ru/developers/extend/apps/getting-started/project-structure#dependencies).
Застряли? Попросите помощи на [Discord-сервере Twenty](https://discord.com/channels/1130383047699738754/1130386664812982322).
@@ -103,11 +103,10 @@ Twenty предоставляет сервер [MCP](https://modelcontextprotoco
После подключения сервер MCP предоставляет инструменты, отражающие API Twenty. Рекомендуемый рабочий процесс:
1. **`get_tool_catalog`** — получить список всех доступных инструментов
2. **`learn_tools`** — получить схему входных данных для конкретных инструментов
3. **`execute_tool`** — запустить инструмент
1. **`learn_tools`** — получить схему входных данных для конкретных инструментов
2. **`execute_tool`** — запустить инструмент
Вам не нужно запоминать названия инструментов. Спросите у вашего ИИ-ассистента, что он умеет, и он автоматически вызовет `get_tool_catalog`.
Вам не нужно запоминать названия инструментов. Спросите у вашего ИИ-ассистента, что он умеет, и он автоматически вызовет `learn_tools`.
## Разрешения
@@ -8,5 +8,6 @@ icon: anahtar
* **Yanlış Node sürümü** — 24+ gerekir. `node -v` ile kontrol edin.
* **Yarn 4 eksik** — `corepack enable` çalıştırın.
* **Bağımlılıklar bozuk** — `rm -rf node_modules && yarn install`.
* **`twenty-sdk` v2.8.0 sürümüne yükselttikten sonra oluşan hatalar** — v2.8.0 sürümünde `dependencies` içinden `devDependencies` içine taşındı. [Proje Yapısı → Bağımlılıklar](/l/tr/developers/extend/apps/getting-started/project-structure#dependencies) bölümüne bakın.
Takıldınız mı? [Twenty Discord](https://discord.com/channels/1130383047699738754/1130386664812982322) üzerinde yardım isteyin.
@@ -103,11 +103,10 @@ Yapay zeka asistanınızdan CRM'inizle etkileşime geçmesini isteyin:
Bağlandıktan sonra, MCP sunucusu Twenty API'sini yansıtan araçlar sunar. Önerilen iş akışı:
1. **`get_tool_catalog`** — mevcut tüm araçları keşfedin
2. **`learn_tools`** — belirli araçların girdi şemasını alın
3. **`execute_tool`** — bir aracı çalıştırın
1. **`learn_tools`** — belirli araçların girdi şemasını alın
2. **`execute_tool`** — bir aracı çalıştırın
Araç adlarını hatırlamanıza gerek yok. Yapay zeka asistanınıza neler yapabileceğini sorun; `get_tool_catalog` çağrısını otomatik olarak yapacaktır.
Araç adlarını hatırlamanıza gerek yok. Yapay zeka asistanınıza neler yapabileceğini sorun; `learn_tools` çağrısını otomatik olarak yapacaktır.
## İzinler
@@ -8,5 +8,6 @@ icon: wrench
* **Node 版本不正确** — 需要 24+。 使用 `node -v` 检查。
* **缺少 Yarn 4** — 运行 `corepack enable`。
* **依赖损坏** — `rm -rf node_modules && yarn install`。
* **`twenty-sdk` 升级到 v2.8.0 后出现错误** — 在 v2.8.0 中,它从 `dependencies` 移动到了 `devDependencies`。 请参阅[项目结构 → 依赖项](/l/zh/developers/extend/apps/getting-started/project-structure#dependencies)。
卡住了吗? 在 [Twenty 的 Discord](https://discord.com/channels/1130383047699738754/1130386664812982322) 上提问。
@@ -103,11 +103,10 @@ OAuth 需要支持[MCP 授权规范](https://modelcontextprotocol.io/specificati
连接后,MCP 服务器会提供与 Twenty API 一一对应的工具。 推荐的工作流程是:
1. **`get_tool_catalog`** — 发现所有可用工具
2. **`learn_tools`** — 获取特定工具的输入模式
3. **`execute_tool`** — 运行工具
1. **`learn_tools`** — 获取特定工具的输入模式
2. **`execute_tool`** — 运行工具
您无需记住工具名称。 询问您的 AI 助手它能做什么,它会自动调用 `get_tool_catalog`。
您无需记住工具名称。 询问您的 AI 助手它能做什么,它会自动调用 `learn_tools`。
## 权限
@@ -103,11 +103,10 @@ Ask your AI assistant to interact with your CRM:
Once connected, the MCP server exposes tools that mirror the Twenty API. The recommended workflow is:
1. **`get_tool_catalog`** — discover all available tools
2. **`learn_tools`** — get the input schema for specific tools
3. **`execute_tool`** — run a tool
1. **`learn_tools`** — get the input schema for specific tools
2. **`execute_tool`** — run a tool
You don't need to remember tool names. Ask your AI assistant what it can do and it will call `get_tool_catalog` automatically.
You don't need to remember tool names. Ask your AI assistant what it can do and it will call `learn_tools` automatically.
## Permissions
@@ -291,7 +291,8 @@ export enum FeatureFlagKey {
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_REST_METADATA_API_NEW_FORMAT_DIRECT = 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT',
IS_SETTINGS_DISCOVERY_HERO_ENABLED = 'IS_SETTINGS_DISCOVERY_HERO_ENABLED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED'
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED',
IS_WORKFLOW_RUN_STEP_LOGS_ENABLED = 'IS_WORKFLOW_RUN_STEP_LOGS_ENABLED'
}
export enum HealthIndicatorId {
@@ -1643,7 +1643,8 @@ export enum FeatureFlagKey {
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_REST_METADATA_API_NEW_FORMAT_DIRECT = 'IS_REST_METADATA_API_NEW_FORMAT_DIRECT',
IS_SETTINGS_DISCOVERY_HERO_ENABLED = 'IS_SETTINGS_DISCOVERY_HERO_ENABLED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED'
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED',
IS_WORKFLOW_RUN_STEP_LOGS_ENABLED = 'IS_WORKFLOW_RUN_STEP_LOGS_ENABLED'
}
export type Field = {
@@ -7347,6 +7348,13 @@ export type EnterpriseSubscriptionStatusQueryVariables = Exact<{ [key: string]:
export type EnterpriseSubscriptionStatusQuery = { __typename?: 'Query', enterpriseSubscriptionStatus?: { __typename?: 'EnterpriseSubscriptionStatusDTO', status: string, licensee?: string | null, expiresAt?: string | null, cancelAt?: string | null, currentPeriodEnd?: string | null, isCancellationScheduled: boolean } | null };
export type EventLogsQueryVariables = Exact<{
input: EventLogQueryInput;
}>;
export type EventLogsQuery = { __typename?: 'Query', eventLogs: { __typename?: 'EventLogQueryResult', totalCount: number, records: Array<{ __typename?: 'EventLogRecord', event: string, timestamp: string, userId?: string | null, properties?: any | null, recordId?: string | null, objectMetadataId?: string | null, isCustom?: boolean | null }>, pageInfo: { __typename?: 'EventLogPageInfo', endCursor?: string | null, hasNextPage: boolean } } };
export type UpdateLabPublicFeatureFlagMutationVariables = Exact<{
input: UpdateLabPublicFeatureFlagInput;
}>;
@@ -8196,6 +8204,7 @@ export const SetEnterpriseKeyDocument = {"kind":"Document","definitions":[{"kind
export const EnterpriseCheckoutSessionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"EnterpriseCheckoutSession"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"billingInterval"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"enterpriseCheckoutSession"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"billingInterval"},"value":{"kind":"Variable","name":{"kind":"Name","value":"billingInterval"}}}]}]}}]} as unknown as DocumentNode<EnterpriseCheckoutSessionQuery, EnterpriseCheckoutSessionQueryVariables>;
export const EnterprisePortalSessionDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"EnterprisePortalSession"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"returnUrlPath"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"enterprisePortalSession"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"returnUrlPath"},"value":{"kind":"Variable","name":{"kind":"Name","value":"returnUrlPath"}}}]}]}}]} as unknown as DocumentNode<EnterprisePortalSessionQuery, EnterprisePortalSessionQueryVariables>;
export const EnterpriseSubscriptionStatusDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"EnterpriseSubscriptionStatus"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"enterpriseSubscriptionStatus"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"status"}},{"kind":"Field","name":{"kind":"Name","value":"licensee"}},{"kind":"Field","name":{"kind":"Name","value":"expiresAt"}},{"kind":"Field","name":{"kind":"Name","value":"cancelAt"}},{"kind":"Field","name":{"kind":"Name","value":"currentPeriodEnd"}},{"kind":"Field","name":{"kind":"Name","value":"isCancellationScheduled"}}]}}]}}]} as unknown as DocumentNode<EnterpriseSubscriptionStatusQuery, EnterpriseSubscriptionStatusQueryVariables>;
export const EventLogsDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"query","name":{"kind":"Name","value":"EventLogs"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"EventLogQueryInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"eventLogs"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"records"},"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"event"}},{"kind":"Field","name":{"kind":"Name","value":"timestamp"}},{"kind":"Field","name":{"kind":"Name","value":"userId"}},{"kind":"Field","name":{"kind":"Name","value":"properties"}},{"kind":"Field","name":{"kind":"Name","value":"recordId"}},{"kind":"Field","name":{"kind":"Name","value":"objectMetadataId"}},{"kind":"Field","name":{"kind":"Name","value":"isCustom"}}]}},{"kind":"Field","name":{"kind":"Name","value":"totalCount"}},{"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<EventLogsQuery, EventLogsQueryVariables>;
export const UpdateLabPublicFeatureFlagDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateLabPublicFeatureFlag"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"input"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"UpdateLabPublicFeatureFlagInput"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateLabPublicFeatureFlag"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"input"},"value":{"kind":"Variable","name":{"kind":"Name","value":"input"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"key"}},{"kind":"Field","name":{"kind":"Name","value":"value"}}]}}]}}]} as unknown as DocumentNode<UpdateLabPublicFeatureFlagMutation, UpdateLabPublicFeatureFlagMutationVariables>;
export const UploadWorkspaceMemberProfilePictureDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UploadWorkspaceMemberProfilePicture"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"file"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"Upload"}}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"uploadWorkspaceMemberProfilePicture"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"file"},"value":{"kind":"Variable","name":{"kind":"Name","value":"file"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"id"}},{"kind":"Field","name":{"kind":"Name","value":"url"}}]}}]}}]} as unknown as DocumentNode<UploadWorkspaceMemberProfilePictureMutation, UploadWorkspaceMemberProfilePictureMutationVariables>;
export const UpdateUserEmailDocument = {"kind":"Document","definitions":[{"kind":"OperationDefinition","operation":"mutation","name":{"kind":"Name","value":"UpdateUserEmail"},"variableDefinitions":[{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"newEmail"}},"type":{"kind":"NonNullType","type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}},{"kind":"VariableDefinition","variable":{"kind":"Variable","name":{"kind":"Name","value":"verifyEmailRedirectPath"}},"type":{"kind":"NamedType","name":{"kind":"Name","value":"String"}}}],"selectionSet":{"kind":"SelectionSet","selections":[{"kind":"Field","name":{"kind":"Name","value":"updateUserEmail"},"arguments":[{"kind":"Argument","name":{"kind":"Name","value":"newEmail"},"value":{"kind":"Variable","name":{"kind":"Name","value":"newEmail"}}},{"kind":"Argument","name":{"kind":"Name","value":"verifyEmailRedirectPath"},"value":{"kind":"Variable","name":{"kind":"Name","value":"verifyEmailRedirectPath"}}}]}]}}]} as unknown as DocumentNode<UpdateUserEmailMutation, UpdateUserEmailMutationVariables>;
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "jaarliks gefaktureer"
msgid " must be one of {ratingValues} values"
msgstr " moet een van {ratingValues} waardes wees"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(gekies: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "KI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Heg lêers aan"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Aanhegsels"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Basis-URL word vereis"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blou"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Inhoud"
@@ -2961,6 +2977,16 @@ msgstr "Cache-lesing"
msgid "Cache write"
msgstr "Cache-skryf"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Kodeer jou funksie"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kernobjekte"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Koste"
@@ -5752,6 +5783,16 @@ msgstr "Laai lêers af"
msgid "Download sample"
msgstr "Laai voorbeeld af"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicasies"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Leeg"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Leë Inboks"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entiteit-ID"
msgid "Entity ID copied to clipboard"
msgstr "Entiteit-ID na knipbord gekopieer"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Easy wiping van rekords wat sag verwyder is"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Fout"
@@ -6933,6 +7004,9 @@ msgstr "Verlaat Instellings"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Uitdrukking"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funksienaam"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-metode"
msgid "HTTP Method"
msgstr "HTTP-metode"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Inligting"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ongeldige e-pos"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ongeldige e-pos of domein"
@@ -9710,6 +9796,7 @@ msgstr "Teken uit"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigasie-oortjies"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Geen inhoud"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Geen werke is herprobeer nie{errorDetails}"
msgid "No latest version found"
msgstr "Geen jongste weergawe gevind nie"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Geen opsie gevind nie"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Geen uitset"
@@ -11142,6 +11242,16 @@ msgstr "Geen rekords gevind nie"
msgid "No records matching the filter criteria were found."
msgstr "Geen rekords wat aan die filterkriteria voldoen, is gevind nie."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Geen stelselobjekte beskikbaar nie"
msgid "No system objects with views found"
msgstr "Geen stelselobjekte met aansigte gevind nie"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Onderbreking"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Hulpbrontipe"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Antwoord"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Stuur 'n uitnodiging e-pos na jou span"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Besig om te stuur..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Gestuur"
@@ -14750,6 +14885,13 @@ msgstr "Sommige vouers"
msgid "Some layout changes could not be saved"
msgstr "Sommige uitlegveranderings kon nie gestoor word nie."
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Sukses"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Aan"
@@ -16030,11 +16174,21 @@ msgstr "Skakel alle instellingregte"
msgid "Token limits for context and output"
msgstr "Token-limiete vir konteks en uitset"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tekens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Te veel rekords. Tot {maxRecordsString} toegelaat"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Web Soek"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "يتم المحاسبة سنويًا"
msgid " must be one of {ratingValues} values"
msgstr "يجب أن تكون إحدى القيم {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(المحدد: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "الذكاء الاصطناعي"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "إرفاق ملفات"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "المرفقات"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "عنوان URL الأساسي مطلوب"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "أزرق"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "النص"
@@ -2961,6 +2977,16 @@ msgstr "قراءة التخزين المؤقت"
msgid "Cache write"
msgstr "كتابة التخزين المؤقت"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "الفئة"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "برمج الوظيفة الخاصة بك"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "الكائنات الأساسية"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "التكلفة"
@@ -5752,6 +5783,16 @@ msgstr "تنزيل الملفات"
msgid "Download sample"
msgstr "تنزيل نموذج"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "النسخ المكررة"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "فارغ"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "صندوق الوارد فارغ"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "معرّف الكيان"
msgid "Entity ID copied to clipboard"
msgstr "تم نسخ معرف الكيان إلى الحافظة"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "محو السجلات المحذوفة مؤقتًا"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "خطأ"
@@ -6933,6 +7004,9 @@ msgstr "خروج من الإعدادات"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "تعبير"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "اسم الوظيفة"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "طريقة HTTP"
msgid "HTTP Method"
msgstr "طريقة HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "معلومات"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "بريد إلكتروني غير صالح"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "بريد إلكتروني أو نطاق غير صالح"
@@ -9710,6 +9796,7 @@ msgstr "تسجيل الخروج"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "علامات تبويب التنقل"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "لا يوجد متن"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "لم يتم إعادة محاولة أي وظائف{errorDetails}"
msgid "No latest version found"
msgstr "لم يتم العثور على أحدث إصدار"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "لم يتم العثور على خيار"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "لا توجد مخرجات"
@@ -11142,6 +11242,16 @@ msgstr "لم يتم العثور على سجلات"
msgid "No records matching the filter criteria were found."
msgstr "لم يتم العثور على سجلات تطابق معايير التصفية."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "لا توجد كائنات نظام متاحة"
msgid "No system objects with views found"
msgstr "لم يتم العثور على كائنات نظام ذات عروض"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "انقطاع"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "نوع المورد"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "الاستجابة"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "\\\\"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "جاري الإرسال..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "مرسل"
@@ -14750,6 +14885,13 @@ msgstr "بعض المجلدات"
msgid "Some layout changes could not be saved"
msgstr "تعذّر حفظ بعض تغييرات التخطيط"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "نجاح"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "إلى"
@@ -16030,11 +16174,21 @@ msgstr "تبديل جميع أذونات الإعدادات"
msgid "Token limits for context and output"
msgstr "حدود الرموز للسياق والمخرجات"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "رموز"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "عدد كبير جدًا من السجلات. يُسمح بما يصل
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17452,6 +17618,11 @@ msgstr "نحن في انتظار تأكيد من مزود الدفع لدينا
msgid "Web Search"
msgstr "بحث الويب"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " facturat anualment"
msgid " must be one of {ratingValues} values"
msgstr " ha de ser un dels valors {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(seleccionada: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "IA"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Adjunta fitxers"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Adjunts"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "L'URL base és necessari"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blau"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Cos"
@@ -2961,6 +2977,16 @@ msgstr "Lectura de la memòria cau"
msgid "Cache write"
msgstr "Escriptura a la memòria cau"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categoria"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Programar la teva funció"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Objectes principals"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Cost"
@@ -5752,6 +5783,16 @@ msgstr "Descarregar Arxius"
msgid "Download sample"
msgstr "Descarrega el fitxer de mostra"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicats"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Buit"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Bústia buida"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID de l'entitat"
msgid "Entity ID copied to clipboard"
msgstr "Identificador d'entitat copiat al porta-retalls"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Esborrament de registres eliminats suaument"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Error"
@@ -6933,6 +7004,9 @@ msgstr "Sortir de la configuració"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expressió"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nom de la funció"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Mètode HTTP"
msgid "HTTP Method"
msgstr "Mètode HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informació"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Correu electrònic no vàlid"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Correu electrònic o domini no vàlids"
@@ -9710,6 +9796,7 @@ msgstr "Tancar sessió"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Pestanyes de navegació"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Sense cos"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "No s'han reintentat feines{errorDetails}"
msgid "No latest version found"
msgstr "No s'ha trobat la versió més recent"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "No s'ha trobat cap opció"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Sense sortida"
@@ -11142,6 +11242,16 @@ msgstr "No s'han trobat registres"
msgid "No records matching the filter criteria were found."
msgstr "No s'han trobat registres que coincideixin amb els criteris del filtre."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "No hi ha objectes del sistema disponibles"
msgid "No system objects with views found"
msgstr "No s'han trobat objectes del sistema amb vistes"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Interrupció"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tipus de recurs"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Resposta"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Envia un correu d'invitació al teu equip"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Enviant..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Enviat"
@@ -14750,6 +14885,13 @@ msgstr "Algunes carpetes"
msgid "Some layout changes could not be saved"
msgstr "Alguns canvis de disposició no s'han pogut desar"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Èxit"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "A"
@@ -16030,11 +16174,21 @@ msgstr "Alternar tots els permisos de configuració"
msgid "Token limits for context and output"
msgstr "Límits de tokens per al context i la sortida"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Massa registres. Se'n permeten fins a {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Cerca web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " fakturováno ročně"
msgid " must be one of {ratingValues} values"
msgstr " musí být jednou z hodnot {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(vybráno: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Připojit soubory"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Přílohy"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Základní adresa URL je vyžadována"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Modrá"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Text zprávy"
@@ -2961,6 +2977,16 @@ msgstr "Čtení z mezipaměti"
msgid "Cache write"
msgstr "Zápis do mezipaměti"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Naprogramujte svou funkci"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Základní objekty"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Cena"
@@ -5752,6 +5783,16 @@ msgstr "Stáhnout soubory"
msgid "Download sample"
msgstr "Stáhnout ukázkový soubor"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicity"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Prázdné"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Prázdná schránka"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID entity"
msgid "Entity ID copied to clipboard"
msgstr "ID entita zkopírována do schránky"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Vymazání soft-deleted záznamů"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Chyba"
@@ -6933,6 +7004,9 @@ msgstr "Opustit nastavení"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Výraz"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Název funkce"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Metoda HTTP"
msgid "HTTP Method"
msgstr "Metoda HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informace"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Neplatný e-mail"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Neplatný e-mail nebo doména"
@@ -9710,6 +9796,7 @@ msgstr "Odhlásit"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigační karty"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Žádné tělo"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Žádné úlohy nebyly znovu spuštěny{errorDetails}"
msgid "No latest version found"
msgstr "Nelze najít nejnovější verzi"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Žádná možnost nenalezena"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Žádný výstup"
@@ -11142,6 +11242,16 @@ msgstr "Žádné záznamy nenalezeny"
msgid "No records matching the filter criteria were found."
msgstr "Nebyly nalezeny žádné záznamy odpovídající kritériím filtru."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Žádné systémové objekty nejsou k dispozici"
msgid "No system objects with views found"
msgstr "Nebyly nalezeny žádné systémové objekty se zobrazeními"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Výpadek"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Typ prostředku"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Odpověď"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Pošlete pozvánku e-mailem vašemu týmu"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Odesílání..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Odesláno"
@@ -14750,6 +14885,13 @@ msgstr "Některé složky"
msgid "Some layout changes could not be saved"
msgstr "Některé změny rozložení se nepodařilo uložit"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Úspěch"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Komu"
@@ -16030,11 +16174,21 @@ msgstr "Přepnout všechna oprávnění nastavení"
msgid "Token limits for context and output"
msgstr "Limity tokenů pro kontext a výstup"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokeny"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Příliš mnoho záznamů. Povolených je až {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Hledání na webu"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " faktureret årligt"
msgid " must be one of {ratingValues} values"
msgstr " skal være en af {ratingValues} værdierne"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(valgt: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Vedhæft filer"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Vedhæftninger"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Basis-URL er påkrævet"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blå"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Indhold"
@@ -2961,6 +2977,16 @@ msgstr "Cache-læsning"
msgid "Cache write"
msgstr "Cache-skrivning"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr ""
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Kodedin funktion"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kerneobjekter"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Omkostninger"
@@ -5752,6 +5783,16 @@ msgstr "Download filer"
msgid "Download sample"
msgstr "Download prøvefil"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplikater"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Tom"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Tom Indbakke"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entity-ID"
msgid "Entity ID copied to clipboard"
msgstr "Enheds-id kopieret til udklipsholder"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Sletning af blødt slettede poster"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Fejl"
@@ -6933,6 +7004,9 @@ msgstr "Forlad indstillinger"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Udtryk"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funktionsnavn"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-metode"
msgid "HTTP Method"
msgstr "HTTP-metode"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Info"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ugyldig e-mail"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ugyldig e-mail eller domæne"
@@ -9710,6 +9796,7 @@ msgstr "Logud"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigationsfaner"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Ingen body"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Ingen jobs blev forsøgt igen{errorDetails}"
msgid "No latest version found"
msgstr "Ingen seneste version fundet"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Ingen mulighed fundet"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Intet output"
@@ -11142,6 +11242,16 @@ msgstr "Ingen poster fundet"
msgid "No records matching the filter criteria were found."
msgstr "Der blev ikke fundet nogen poster, der matcher filterkriterierne."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Ingen systemobjekter tilgængelige"
msgid "No system objects with views found"
msgstr "Ingen systemobjekter med visninger fundet"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Nedetid"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Ressourcetype"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Svar"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Send en invitationsemail til dit team"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Sender..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Sendt"
@@ -14750,6 +14885,13 @@ msgstr "Nogle mapper"
msgid "Some layout changes could not be saved"
msgstr "Nogle layoutændringer kunne ikke gemmes"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Succes"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr ""
@@ -16032,11 +16176,21 @@ msgstr "Skift alle indstillingers tilladelser"
msgid "Token limits for context and output"
msgstr "Token-grænser for kontekst og output"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Der er for mange poster. Op til {maxRecordsString} er tilladt"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Websøgning"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "jährlich abgerechnet"
msgid " must be one of {ratingValues} values"
msgstr "muss einer der Werte {ratingValues} sein"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(ausgewählt: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr "Diagramm zusammenfassen"
msgid "AI"
msgstr "KI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Dateien anhängen"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Anhänge"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Basis-URL ist erforderlich"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blau"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Inhalt"
@@ -2961,6 +2977,16 @@ msgstr "Cache-Lesen"
msgid "Cache write"
msgstr "Cache-Schreiben"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Funktion programmieren"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kernobjekte"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Kosten"
@@ -5752,6 +5783,16 @@ msgstr "Dateien herunterladen"
msgid "Download sample"
msgstr "Beispieldatei herunterladen"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr "Widget kopieren"
msgid "Duplicates"
msgstr "Duplikate"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Leer"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Leerer Posteingang"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entity-ID"
msgid "Entity ID copied to clipboard"
msgstr "Entity ID in die Zwischenablage kopiert"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Löschung weicher gelöschter Datensätze"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Fehler"
@@ -6933,6 +7004,9 @@ msgstr "Einstellungen verlassen"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Ausdruck"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funktionsname"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-Methode"
msgid "HTTP Method"
msgstr "HTTP-Methode"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informationen"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ungültige E-Mail"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ungültige E-Mail oder Domain"
@@ -9710,6 +9796,7 @@ msgstr "Abmelden"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigationsregisterkarten"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Kein Body"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Keine Aufgaben wurden erneut versucht{errorDetails}"
msgid "No latest version found"
msgstr "Keine neueste Version gefunden"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Keine Option gefunden"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Keine Ausgabe"
@@ -11142,6 +11242,16 @@ msgstr "Keine Einträge gefunden"
msgid "No records matching the filter criteria were found."
msgstr "Es wurden keine Datensätze gefunden, die den Filterkriterien entsprechen."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Keine Systemobjekte verfügbar"
msgid "No system objects with views found"
msgstr "Keine Systemobjekte mit Ansichten gefunden"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Ausfall"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Ressourcentyp"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Antwort"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Einladung per E-Mail an Ihr Team senden"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Wird gesendet..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Gesendet"
@@ -14750,6 +14885,13 @@ msgstr "Einige Ordner"
msgid "Some layout changes could not be saved"
msgstr "Einige Layoutänderungen konnten nicht gespeichert werden"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Erfolg"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "An"
@@ -16030,11 +16174,21 @@ msgstr "Alle Einstellungsberechtigungen umschalten"
msgid "Token limits for context and output"
msgstr "Token-Grenzwerte für Kontext und Ausgabe"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "Token"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Zu viele Datensätze. Bis zu {maxRecordsString} erlaubt"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Websuche"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " τιμολογείται ετησίως"
msgid " must be one of {ratingValues} values"
msgstr " πρέπει να είναι μία από τις τιμές {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(επιλεγμένο: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Επισυνάψτε αρχεία"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Συνημμένα"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Απαιτείται το βασικό URL"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Μπλε"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Κείμενο"
@@ -2961,6 +2977,16 @@ msgstr "Ανάγνωση cache"
msgid "Cache write"
msgstr "Εγγραφή cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Κατηγορία"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Κωδικοποιήστε τη λειτουργία σας"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Κύρια Αντικείμενα"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Κόστος"
@@ -5752,6 +5783,16 @@ msgstr "Λήψη αρχείων"
msgid "Download sample"
msgstr "Λήψη δείγματος"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Διπλότυπα"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Κενό"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Άδειο Γραμματοκιβώτιο"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Αναγνωριστικό οντότητας"
msgid "Entity ID copied to clipboard"
msgstr "Το Αναγνωριστικό Οντότητας αντιγράφηκε στο πρόχειρο"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Διαγραφή εγγραφών που έχουν διαγραφεί με ήπιο τρόπο"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Σφάλμα"
@@ -6933,6 +7004,9 @@ msgstr "Έξοδος από Ρυθμίσεις"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Έκφραση"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Όνομα συνάρτησης"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Μέθοδος HTTP"
msgid "HTTP Method"
msgstr "Μέθοδος HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Πληροφορίες"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Μη έγκυρο email"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Μη έγκυρο email ή domain"
@@ -9710,6 +9796,7 @@ msgstr "Αποσύνδεση"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Καρτέλες πλοήγησης"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Χωρίς σώμα"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Δεν επαναλήφθηκαν εργασίες{errorDetails}"
msgid "No latest version found"
msgstr "Δεν βρέθηκε καμία νεότερη έκδοση"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Δε βρέθηκε επιλογή"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Καμία έξοδος"
@@ -11142,6 +11242,16 @@ msgstr "Δεν βρέθηκαν εγγραφές"
msgid "No records matching the filter criteria were found."
msgstr "Δεν βρέθηκαν εγγραφές που να αντιστοιχούν στα κριτήρια φιλτραρίσματος."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Δεν υπάρχουν διαθέσιμα αντικείμενα συσ
msgid "No system objects with views found"
msgstr "Δεν βρέθηκαν αντικείμενα συστήματος με προβολές"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Διακοπή λειτουργίας"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Τύπος πόρου"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Απόκριση"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Στείλτε ένα email πρόσκλησης στην ομάδα σας"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Αποστολή..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Αποστείλεται"
@@ -14752,6 +14887,13 @@ msgstr "Ορισμένοι φάκελοι"
msgid "Some layout changes could not be saved"
msgstr "Δεν ήταν δυνατή η αποθήκευση ορισμένων αλλαγών διάταξης."
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15143,6 +15285,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Επιτυχία"
@@ -16001,6 +16144,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Προς"
@@ -16034,11 +16178,21 @@ msgstr "Εναλλαγή όλων των δικαιωμάτων ρυθμίσεω
msgid "Token limits for context and output"
msgstr "Όρια tokens για πλαίσιο και έξοδο"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "διακριτικά"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16068,6 +16222,18 @@ msgstr "Πάρα πολλές εγγραφές. Επιτρέπονται έως
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17458,6 +17624,11 @@ msgstr ""
msgid "Web Search"
msgstr "Αναζήτηση στον Ιστό"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -24,6 +24,11 @@ msgstr " billed annually"
msgid " must be one of {ratingValues} values"
msgstr " must be one of {ratingValues} values"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr "—"
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -94,6 +99,9 @@ msgstr "(selected: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1532,6 +1540,11 @@ msgstr "Aggregate Chart"
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr "AI agent run"
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2510,6 +2523,7 @@ msgstr "Attach files"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Attachments"
@@ -2716,6 +2730,7 @@ msgid "Base URL is required"
msgstr "Base URL is required"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2802,6 +2817,7 @@ msgstr "Blue"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Body"
@@ -2956,6 +2972,16 @@ msgstr "Cache read"
msgid "Cache write"
msgstr "Cache write"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr "Cached creation"
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr "Cached read"
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3200,6 +3226,7 @@ msgid "Category"
msgstr "Category"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3559,6 +3586,9 @@ msgstr "Code your function"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4225,6 +4255,7 @@ msgid "Core Objects"
msgstr "Core Objects"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Cost"
@@ -5747,6 +5778,16 @@ msgstr "Download Files"
msgid "Download sample"
msgstr "Download sample"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr "Draft email"
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr "Drafted"
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5787,6 +5828,14 @@ msgstr "Duplicate widget"
msgid "Duplicates"
msgstr "Duplicates"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr "Duration"
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6211,6 +6260,9 @@ msgstr "Empty"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6232,6 +6284,9 @@ msgstr "Empty Inbox"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6567,6 +6622,18 @@ msgstr "Entity ID"
msgid "Entity ID copied to clipboard"
msgstr "Entity ID copied to clipboard"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr "Entries ({0}, latest iteration only)"
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr "Entries ({1})"
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6583,6 +6650,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Erasure of soft-deleted records"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Error"
@@ -6928,6 +6999,9 @@ msgstr "Exit Settings"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7043,6 +7117,7 @@ msgstr "Expression"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7806,6 +7881,11 @@ msgstr "Function"
msgid "Function name"
msgstr "Function name"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr "Function run"
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8279,6 +8359,11 @@ msgstr "HTTP method"
msgid "HTTP Method"
msgstr "HTTP Method"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr "HTTP request"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8619,6 +8704,8 @@ msgstr "Infos"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8794,7 +8881,6 @@ msgstr "Invalid email"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Invalid email or domain"
@@ -9728,6 +9814,7 @@ msgstr "Logout"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10451,6 +10538,11 @@ msgstr "Navigation menu items"
msgid "Navigation tabs"
msgstr "Navigation tabs"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr "Network error"
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10796,6 +10888,7 @@ msgstr "No billing data is available for this workspace."
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "No body"
@@ -11007,6 +11100,7 @@ msgstr "No indexes match your filters."
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr "No input"
@@ -11036,6 +11130,11 @@ msgstr "No jobs were retried{errorDetails}"
msgid "No latest version found"
msgstr "No latest version found"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr "No logs were recorded for this step."
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11098,6 +11197,7 @@ msgid "No option found"
msgstr "No option found"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "No output"
@@ -11160,6 +11260,16 @@ msgstr "No records found"
msgid "No records matching the filter criteria were found."
msgstr "No records matching the filter criteria were found."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr "No request body"
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr "No response body"
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11219,6 +11329,11 @@ msgstr "No system objects available"
msgid "No system objects with views found"
msgstr "No system objects with views found"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr "No tools were called"
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11925,6 +12040,8 @@ msgstr "Outage"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12777,6 +12894,11 @@ msgstr "Read-only"
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr "Read-only {entityTypeLabel} definition shipped by this app"
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr "Reasoning"
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12809,6 +12931,7 @@ msgid "Recents"
msgstr "Recents"
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr "Recipients"
@@ -13217,6 +13340,11 @@ msgstr "Reply..."
msgid "Report an issue"
msgstr "Report an issue"
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr "Request"
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13313,6 +13441,7 @@ msgstr "Resource Type"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Response"
@@ -14264,6 +14393,11 @@ msgstr "Send"
msgid "Send an invite email to your team"
msgstr "Send an invite email to your team"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr "Send email"
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14287,6 +14421,7 @@ msgid "Sending..."
msgstr "Sending..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Sent"
@@ -14768,6 +14903,13 @@ msgstr "Some folders"
msgid "Some layout changes could not be saved"
msgstr "Some layout changes could not be saved"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15159,6 +15301,7 @@ msgid "subtitle"
msgstr "subtitle"
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Success"
@@ -16047,6 +16190,7 @@ msgstr "Title"
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "To"
@@ -16080,11 +16224,21 @@ msgstr "Toggle all settings permissions"
msgid "Token limits for context and output"
msgstr "Token limits for context and output"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr "Token usage"
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr "Tokens"
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16114,6 +16268,18 @@ msgstr "Too many records. Up to {maxRecordsString} allowed"
msgid "Tool call: {0}"
msgstr "Tool call: {0}"
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr "Tool calls"
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr "Tool calls ({0})"
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17504,6 +17670,11 @@ msgstr ""
msgid "Web Search"
msgstr "Web Search"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr "Web searches"
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " facturado anualmente"
msgid " must be one of {ratingValues} values"
msgstr " debe ser uno de los valores {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(seleccionado: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "IA"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Adjuntar archivos"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Adjuntos"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "La URL base es obligatoria"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Azul"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Cuerpo"
@@ -2961,6 +2977,16 @@ msgstr "Lectura de caché"
msgid "Cache write"
msgstr "Escritura de caché"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categoría"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codificar su función"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Objetos principales"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Costo"
@@ -5752,6 +5783,16 @@ msgstr "Descargar archivos"
msgid "Download sample"
msgstr "Descargar archivo de ejemplo"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicados"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Vacío"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Bandeja de entrada vacía"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID de entidad"
msgid "Entity ID copied to clipboard"
msgstr "ID de entidad copiado al portapapeles"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Borrado de registros eliminados suavemente"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Error"
@@ -6933,6 +7004,9 @@ msgstr "Salir de Configuración"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expresión"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nombre de la función"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Método HTTP"
msgid "HTTP Method"
msgstr "Método HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Información"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Correo electrónico no válido"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Correo electrónico o dominio no válido"
@@ -9710,6 +9796,7 @@ msgstr "Cerrar sesión"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Pestañas de navegación"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Sin cuerpo"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "No se reintentó ningún trabajo{errorDetails}"
msgid "No latest version found"
msgstr "No se encontró la última versión"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "No se encontró opción"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Sin salida"
@@ -11142,6 +11242,16 @@ msgstr "No se encontraron registros"
msgid "No records matching the filter criteria were found."
msgstr "No se encontraron registros que coincidan con los criterios del filtro."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "No hay objetos del sistema disponibles"
msgid "No system objects with views found"
msgstr "No se encontraron objetos del sistema con vistas"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Interrupción"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tipo de recurso"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Respuesta"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Enviar una invitación por correo electrónico a tu equipo"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Enviando..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Enviado"
@@ -14750,6 +14885,13 @@ msgstr "Algunas carpetas"
msgid "Some layout changes could not be saved"
msgstr "No se pudieron guardar algunos cambios de diseño"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr "subtítulo"
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Éxito"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Para"
@@ -16032,11 +16176,21 @@ msgstr "Alternar todos los permisos de configuración"
msgid "Token limits for context and output"
msgstr "Límites de tokens para el contexto y la salida"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Demasiados registros. Se permiten hasta {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Buscar en la Web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "veloitus vuosittain"
msgid " must be one of {ratingValues} values"
msgstr " on oltava yksi {ratingValues} arvoista"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(valittu: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Liitä tiedostoja"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Liitteet"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Perus-URL on pakollinen"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Sininen"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Sisältö"
@@ -2961,6 +2977,16 @@ msgstr "Välimuistin luku"
msgid "Cache write"
msgstr "Välimuistin kirjoitus"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Luokka"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Koodaa funktiosi"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Ydinobjektit"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Kustannus"
@@ -5752,6 +5783,16 @@ msgstr "Lataa tiedostoja"
msgid "Download sample"
msgstr "Lataa esimerkkitiedosto"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Kaksoiskappaleet"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Tyhjä"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Tyhjä Saapuneet"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entiteetin tunnus"
msgid "Entity ID copied to clipboard"
msgstr "Yksikkö ID kopioitu leikepöydälle"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Pehmeästi poistettujen tietueiden poistaminen"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Virhe"
@@ -6933,6 +7004,9 @@ msgstr "Poistu asetuksista"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Ilmaisu"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funktion nimi"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-metodi"
msgid "HTTP Method"
msgstr "HTTP-metodi"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Tiedot"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Virheellinen sähköpostiosoite"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Virheellinen sähköpostiosoite tai verkkotunnus"
@@ -9710,6 +9796,7 @@ msgstr "Kirjaudu ulos"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigointivälilehdet"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Ei viestirunkoa"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Töitä ei yritetty uudelleen{errorDetails}"
msgid "No latest version found"
msgstr "Viimeistä versiota ei löytynyt"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Ei vaihtoehtoa löytynyt"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Ei tulostetta"
@@ -11142,6 +11242,16 @@ msgstr "Ei tietueita löydetty"
msgid "No records matching the filter criteria were found."
msgstr "Suodatuskriteerejä vastaavia tietueita ei löytynyt."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr ""
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Katkos"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Resurssityyppi"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Vastaus"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Lähetä kutsusähköposti tiimillesi"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Lähetetään..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Lähetetty"
@@ -14750,6 +14885,13 @@ msgstr "Jotkin kansiot"
msgid "Some layout changes could not be saved"
msgstr "Joitakin asettelumuutoksia ei voitu tallentaa"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Onnistui"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Vastaanottaja"
@@ -16030,11 +16174,21 @@ msgstr "Vaihda kaikkien asetusten oikeudet"
msgid "Token limits for context and output"
msgstr "Token-rajoitukset kontekstille ja tulosteelle"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokenit"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Liian monta tietuetta. Enintään {maxRecordsString} sallitaan"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Verkkohaku"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " facturé annuellement"
msgid " must be one of {ratingValues} values"
msgstr " doit être l'un des valeurs {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(sélectionné : {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "IA"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Joindre des fichiers"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Pièces jointes"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "L'URL de base est requise"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Bleu"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Corps du message"
@@ -2961,6 +2977,16 @@ msgstr "Lecture du cache"
msgid "Cache write"
msgstr "Écriture dans le cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Catégorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Coder votre fonction"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Objets de base"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Coût"
@@ -5752,6 +5783,16 @@ msgstr "Télécharger les fichiers"
msgid "Download sample"
msgstr "Télécharger l'exemple"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Doublons"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Vide"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Boîte de réception vide"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Identifiant d'entité"
msgid "Entity ID copied to clipboard"
msgstr "ID d'entité copié dans le presse-papiers"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Effacement des enregistrements supprimés en douceur"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Erreur"
@@ -6933,6 +7004,9 @@ msgstr "Quitter les paramètres"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expression"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nom de la fonction"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Méthode HTTP"
msgid "HTTP Method"
msgstr "Méthode HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informations"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Email invalide"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Email ou domaine invalide"
@@ -9710,6 +9796,7 @@ msgstr "Déconnexion"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Onglets de navigation"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Aucun corps"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Aucune tâche n'a été réessayée{errorDetails}"
msgid "No latest version found"
msgstr "Aucune dernière version trouvée"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Aucune option trouvée"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Aucune sortie"
@@ -11142,6 +11242,16 @@ msgstr "Aucun enregistrement trouvé"
msgid "No records matching the filter criteria were found."
msgstr "Aucun enregistrement correspondant aux critères de filtrage n'a été trouvé."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Aucun objet système disponible"
msgid "No system objects with views found"
msgstr "Aucun objet système comportant des vues trouvé"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Panne"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Type de ressource"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Réponse"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Envoyer un email d'invitation à votre équipe"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Envoi..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Envoyé"
@@ -14750,6 +14885,13 @@ msgstr "Certains dossiers"
msgid "Some layout changes could not be saved"
msgstr "Certaines modifications de la mise en page n'ont pas pu être enregistrées."
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Succès"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "À"
@@ -16032,11 +16176,21 @@ msgstr "Basculer toutes les permissions des paramètres"
msgid "Token limits for context and output"
msgstr "Limites de jetons pour le contexte et la sortie"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "jetons"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Trop d'enregistrements. Jusqu'à {maxRecordsString} autorisés"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Recherche Web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
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
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " מחויב מדי שנה"
msgid " must be one of {ratingValues} values"
msgstr " חייב להיות אחד מהערכים {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(נבחר: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "בינה מלאכותית (AI)"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "צרף קבצים"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "קבצים מצורפים"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "נדרשת כתובת URL בסיסית"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "כחול"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "גוף"
@@ -2961,6 +2977,16 @@ msgstr "קריאה מהמטמון"
msgid "Cache write"
msgstr "כתיבה למטמון"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "קטגוריה"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "קודד את הפונקציה שלך"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "אובייקטי ליבה"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "עלות"
@@ -5752,6 +5783,16 @@ msgstr "הורדת קבצים"
msgid "Download sample"
msgstr "הורד קובץ לדוגמה"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "שכפולים"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "ריק"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "תיבת דואר ריקה"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "מזהה ישות"
msgid "Entity ID copied to clipboard"
msgstr "מזהה ישות הועתק ללוח הגזירים"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "מחיקת רשומות שנמחקו ברכות"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "שגיאה"
@@ -6933,6 +7004,9 @@ msgstr "יציאה מהגדרות"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "ביטוי"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "שם הפונקציה"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "שיטת HTTP"
msgid "HTTP Method"
msgstr "שיטת HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "מידע"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "דוא\"ל לא תקין"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "דוא\"ל או דומיין לא חוקי"
@@ -9710,6 +9796,7 @@ msgstr "התנתקות"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "לשוניות ניווט"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "ללא גוף"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "לא בוצעה הפעלה מחדש של עבודות {errorDetails}"
msgid "No latest version found"
msgstr "גרסה אחרונה לא נמצאה"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "לא נמצאה אפשרות"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "אין פלט"
@@ -11142,6 +11242,16 @@ msgstr "לא נמצאו רשומות"
msgid "No records matching the filter criteria were found."
msgstr "לא נמצאו רשומות התואמות לקריטריוני הסינון."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "אין אובייקטי מערכת זמינים"
msgid "No system objects with views found"
msgstr "לא נמצאו אובייקטי מערכת עם תצוגות"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "השבתה"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "סוג משאב"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "תגובה"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "\\"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "נשלח..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "נשלח"
@@ -14750,6 +14885,13 @@ msgstr "כמה תיקיות"
msgid "Some layout changes could not be saved"
msgstr "לא ניתן היה לשמור חלק מהשינויים בפריסה"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "הצלחה"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "אל"
@@ -16030,11 +16174,21 @@ msgstr "שנה את כל הגדרות ההרשאות"
msgid "Token limits for context and output"
msgstr "מגבלות אסימונים להקשר ולפלט"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "אסימונים"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "יותר מדי רשומות. מותר עד {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "חיפוש באינטרנט"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " évente számlázva"
msgid " must be one of {ratingValues} values"
msgstr " egyiknek lennie kell a(z) {ratingValues} értékek közül"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(kiválasztva: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "MI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Fájlok csatolása"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Csatolmányok"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Az alap URL megadása kötelező"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Kék"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Szövegtörzs"
@@ -2961,6 +2977,16 @@ msgstr "Gyorsítótár-olvasás"
msgid "Cache write"
msgstr "Gyorsítótár-írás"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategória"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Kódold a funkciódat"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Alap objektumok"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Költség"
@@ -5752,6 +5783,16 @@ msgstr "Fájlok letöltése"
msgid "Download sample"
msgstr "Minta letöltése"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplikátumok"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Üres"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Üres Postafiók"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entitásazonosító"
msgid "Entity ID copied to clipboard"
msgstr "Entitás ID vágólapra másolva"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Lágyított adatok törlése"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Hiba"
@@ -6933,6 +7004,9 @@ msgstr "Kilépés a beállításokból"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Kifejezés"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Függvény neve"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-módszer"
msgid "HTTP Method"
msgstr "HTTP-módszer"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Információk"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Érvénytelen email"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Érvénytelen email vagy domain"
@@ -9710,6 +9796,7 @@ msgstr "Kijelentkezés"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigációs fülek"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Nincs törzs"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nem újraindítottak állást{errorDetails}"
msgid "No latest version found"
msgstr "Nincs találat az újabb verziókra"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nem található lehetőség"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Nincs kimenet"
@@ -11142,6 +11242,16 @@ msgstr "Nincs találat"
msgid "No records matching the filter criteria were found."
msgstr "A szűrési feltételeknek megfelelő rekordok nem találhatók."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Nem állnak rendelkezésre rendszerobjektumok"
msgid "No system objects with views found"
msgstr "Nem találhatók nézettel rendelkező rendszerobjektumok"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Leállás"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Erőforrás típusa"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Válasz"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Invitáló e-mail küldése a csapatnak"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Küldés..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Elküldve"
@@ -14750,6 +14885,13 @@ msgstr "Néhány mappa"
msgid "Some layout changes could not be saved"
msgstr "Néhány elrendezési módosítást nem sikerült menteni"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Siker"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Címzett"
@@ -16030,11 +16174,21 @@ msgstr "Az összes beállítási jogosultság átkapcsolása"
msgid "Token limits for context and output"
msgstr "Tokenkorlátok a kontextusra és a kimenetre"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokenek"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Túl sok rekord. Legfeljebb {maxRecordsString} engedélyezett"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Webes Keresés"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " fatturato annualmente"
msgid " must be one of {ratingValues} values"
msgstr " deve essere uno dei valori {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(selezionato: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Allega file"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Allegati"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "L'URL di base è obbligatorio"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blu"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Corpo"
@@ -2961,6 +2977,16 @@ msgstr "Lettura dalla cache"
msgid "Cache write"
msgstr "Scrittura nella cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categoria"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codifica la tua funzione"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Oggetti principali"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Costo"
@@ -5752,6 +5783,16 @@ msgstr "Scarica file"
msgid "Download sample"
msgstr "Scarica file di esempio"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicati"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Vuoto"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Posta in arrivo vuota"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID entità"
msgid "Entity ID copied to clipboard"
msgstr "ID entità copiato negli appunti"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Cancellazione dei record eliminati temporaneamente"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Errore"
@@ -6933,6 +7004,9 @@ msgstr "Esci dalle impostazioni"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Espressione"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nome della funzione"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Metodo HTTP"
msgid "HTTP Method"
msgstr "Metodo HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informazioni"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Email non valida"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Email o dominio non valido"
@@ -9710,6 +9796,7 @@ msgstr "Disconnessione"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Schede di navigazione"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Nessun corpo"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nessun lavoro è stato riprovato{errorDetails}"
msgid "No latest version found"
msgstr "Nessuna versione recente trovata"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nessuna opzione trovata"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Nessun output"
@@ -11142,6 +11242,16 @@ msgstr "Nessun record trovato"
msgid "No records matching the filter criteria were found."
msgstr "Non sono stati trovati record che corrispondono ai criteri del filtro."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Nessun oggetto di sistema disponibile"
msgid "No system objects with views found"
msgstr "Nessun oggetto di sistema con viste trovato"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Interruzione"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tipo di risorsa"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Risposta"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Invia un'email di invito al tuo team"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Invio in corso..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Inviato"
@@ -14750,6 +14885,13 @@ msgstr "Alcune cartelle"
msgid "Some layout changes could not be saved"
msgstr "Non è stato possibile salvare alcune modifiche al layout"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Successo"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "A"
@@ -16032,11 +16176,21 @@ msgstr "Alternare tutte le autorizzazioni delle impostazioni"
msgid "Token limits for context and output"
msgstr "Limiti di token per il contesto e l'output"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "token"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Troppi record. Fino a {maxRecordsString} consentiti"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Cerca sul Web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "年間請求されます"
msgid " must be one of {ratingValues} values"
msgstr "{ratingValues} のいずれかの値でなければなりません"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(選択済み: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "ファイルを添付"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "添付ファイル"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "ベース URL は必須です"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "青"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "本文"
@@ -2961,6 +2977,16 @@ msgstr "キャッシュ読み取り"
msgid "Cache write"
msgstr "キャッシュ書き込み"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "カテゴリ"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "関数をコーディング"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "コアオブジェクト"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "コスト"
@@ -5752,6 +5783,16 @@ msgstr "ファイルをダウンロード"
msgid "Download sample"
msgstr "サンプルファイルをダウンロード"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "重複"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "空"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "受信トレイを空にする"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "エンティティ ID"
msgid "Entity ID copied to clipboard"
msgstr "エンティティIDがクリップボードにコピーされました"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "ソフト削除されたレコードの消去"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "エラー"
@@ -6933,6 +7004,9 @@ msgstr "設定を終了"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "式"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "関数名"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP メソッド"
msgid "HTTP Method"
msgstr "HTTP メソッド"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "情報"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "無効なメールアドレス"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "無効なメールアドレスまたはドメイン"
@@ -9710,6 +9796,7 @@ msgstr "ログアウト"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "ナビゲーションタブ"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "本文なし"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "ジョブの再試行は行われませんでした{errorDetails}"
msgid "No latest version found"
msgstr "最新バージョンが見つかりません"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "オプションが見つかりません"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "出力がありません"
@@ -11142,6 +11242,16 @@ msgstr "レコードが見つかりません"
msgid "No records matching the filter criteria were found."
msgstr "フィルター条件に一致するレコードは見つかりませんでした。"
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "利用可能なシステムオブジェクトはありません"
msgid "No system objects with views found"
msgstr "ビューのあるシステムオブジェクトが見つかりません"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "障害"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "リソースタイプ"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "レスポンス"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "チームに招待メールを送信"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "送信中..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "送信済み"
@@ -14750,6 +14885,13 @@ msgstr "いくつかのフォルダー"
msgid "Some layout changes could not be saved"
msgstr "一部のレイアウト変更は保存できませんでした"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "成功"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "宛先"
@@ -16030,11 +16174,21 @@ msgstr "すべての設定権限を切り替える"
msgid "Token limits for context and output"
msgstr "コンテキストおよび出力のトークン上限"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "トークン"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "レコードが多すぎます。最大 {maxRecordsString} まで許可
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "ウェブ検索"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "연간 청구됨"
msgid " must be one of {ratingValues} values"
msgstr " {ratingValues} 값 중 하나여야 합니다."
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(선택됨: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "파일 첨부"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "첨부 파일"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "기본 URL이 필요합니다"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "파란색"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "본문"
@@ -2961,6 +2977,16 @@ msgstr "캐시 읽기"
msgid "Cache write"
msgstr "캐시 쓰기"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "카테고리"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "함수 코딩하기"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "핵심 객체"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "비용"
@@ -5752,6 +5783,16 @@ msgstr "파일 다운로드"
msgid "Download sample"
msgstr "샘플 파일 다운로드"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "중복 항목"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "비어 있음"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "받은 편지함 비우기"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "엔터티 ID"
msgid "Entity ID copied to clipboard"
msgstr "개체 ID가 클립보드에 복사되었습니다"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "소프트 삭제된 기록 지우기"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "오류"
@@ -6933,6 +7004,9 @@ msgstr "설정 종료"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "표현식"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "함수 이름"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP 메서드"
msgid "HTTP Method"
msgstr "HTTP 메서드"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "정보"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "잘못된 이메일"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "잘못된 이메일 또는 도메인"
@@ -9710,6 +9796,7 @@ msgstr "로그아웃"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "내비게이션 탭"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "본문 없음"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "작업이 재시도되지 않았습니다{errorDetails}"
msgid "No latest version found"
msgstr "최신 버전을 찾을 수 없음"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "옵션을 찾을 수 없음"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "출력 없음"
@@ -11142,6 +11242,16 @@ msgstr "기록을 찾을 수 없습니다"
msgid "No records matching the filter criteria were found."
msgstr "필터 기준에 맞는 레코드를 찾을 수 없습니다."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "사용 가능한 시스템 개체가 없습니다"
msgid "No system objects with views found"
msgstr "보기가 있는 시스템 개체를 찾을 수 없습니다"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "장애"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "리소스 유형"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "응답"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "팀에 초대 이메일 보내기"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "전송 중..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "보냄"
@@ -14750,6 +14885,13 @@ msgstr "일부 폴더"
msgid "Some layout changes could not be saved"
msgstr "일부 레이아웃 변경 사항을 저장하지 못했습니다."
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "성공"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "받는 사람"
@@ -16030,11 +16174,21 @@ msgstr "모든 설정 권한 전환"
msgid "Token limits for context and output"
msgstr "컨텍스트 및 출력에 대한 토큰 제한"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "토큰"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "레코드가 너무 많습니다. 최대 {maxRecordsString}개까지 허
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "웹 검색"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "jaarlijks gefactureerd"
msgid " must be one of {ratingValues} values"
msgstr " moet een van {ratingValues} waarden zijn"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(geselecteerd: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Bestanden toevoegen"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Bijlagen"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Basis-URL is vereist"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blauw"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Inhoud"
@@ -2961,6 +2977,16 @@ msgstr "Lezen uit cache"
msgid "Cache write"
msgstr "Schrijven naar cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codeer je functie"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kernobjecten"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Kosten"
@@ -5752,6 +5783,16 @@ msgstr "Bestanden Downloaden"
msgid "Download sample"
msgstr "Voorbeeldbestand downloaden"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicaten"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Leeg"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Lege Inbox"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entiteit-ID"
msgid "Entity ID copied to clipboard"
msgstr "Entity-ID gekopieerd naar klembord"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Verwijdering van zacht verwijderde records"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Fout"
@@ -6933,6 +7004,9 @@ msgstr "Verlaat instellingen"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Uitdrukking"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Functienaam"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-methode"
msgid "HTTP Method"
msgstr "HTTP-methode"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informatie"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ongeldig e-mailadres"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ongeldig e-mailadres of domein"
@@ -9710,6 +9796,7 @@ msgstr "Uitloggen"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigatietabbladen"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Geen body"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Er werden geen taken opnieuw geprobeerd {errorDetails}"
msgid "No latest version found"
msgstr "Geen nieuwste versie gevonden"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Geen optie gevonden"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Geen uitvoer"
@@ -11142,6 +11242,16 @@ msgstr "Geen gegevens gevonden"
msgid "No records matching the filter criteria were found."
msgstr "Er zijn geen records gevonden die aan de filtercriteria voldoen."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Geen systeemobjecten beschikbaar"
msgid "No system objects with views found"
msgstr "Geen systeemobjecten met weergaven gevonden"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Storing"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Resourcetype"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Antwoord"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Stuur een uitnodigingsmail naar je team"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Bezig met verzenden..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Verzonden"
@@ -14750,6 +14885,13 @@ msgstr "Sommige mappen"
msgid "Some layout changes could not be saved"
msgstr "Sommige indelingswijzigingen konden niet worden opgeslagen"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Succes"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Aan"
@@ -16032,11 +16176,21 @@ msgstr "Schakel alle instellingstoestemmingen in/uit"
msgid "Token limits for context and output"
msgstr "Tokenlimieten voor context en uitvoer"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Te veel records. Maximaal {maxRecordsString} toegestaan"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Web Zoeken"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " faktureres årlig"
msgid " must be one of {ratingValues} values"
msgstr " må være ett av {ratingValues} verdiene"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(valgt: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Legg ved filer"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Vedlegg"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Base-URL er påkrevd"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blå"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Innhold"
@@ -2961,6 +2977,16 @@ msgstr "Cache-lesing"
msgid "Cache write"
msgstr "Cache-skriving"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategori"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Koder din funksjon"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kjerneobjekter"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Kostnad"
@@ -5752,6 +5783,16 @@ msgstr "Last ned filer"
msgid "Download sample"
msgstr "Last ned eksempelfil"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplikater"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Tom"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Tøm innboks"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Enhets-ID"
msgid "Entity ID copied to clipboard"
msgstr "Enhets-ID kopiert til utklippstavlen"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Sletting av mykslettede poster"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Feil"
@@ -6933,6 +7004,9 @@ msgstr "Avslutt innstillinger"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Uttrykk"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funksjonsnavn"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-metode"
msgid "HTTP Method"
msgstr "HTTP-metode"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Info"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ugyldig e-post"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ugyldig e-post eller domene"
@@ -9710,6 +9796,7 @@ msgstr "Logg ut"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigasjonsfaner"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Ingen body"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Ingen jobber ble forsøkt på nytt{errorDetails}"
msgid "No latest version found"
msgstr "Ingen nyeste versjon funnet"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Ingen alternativ funnet"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Ingen utdata"
@@ -11142,6 +11242,16 @@ msgstr "Ingen poster funnet"
msgid "No records matching the filter criteria were found."
msgstr "Fant ingen oppføringer som samsvarer med filterkriteriene."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Ingen systemobjekter tilgjengelige"
msgid "No system objects with views found"
msgstr "Ingen systemobjekter med visninger funnet"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Nedetid"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Ressurstype"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Svar"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Send en invitasjonse-post til teamet ditt"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Sender..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Sendt"
@@ -14750,6 +14885,13 @@ msgstr "Noen mapper"
msgid "Some layout changes could not be saved"
msgstr "Noen endringer i oppsettet kunne ikke lagres"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Vellykket"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Til"
@@ -16030,11 +16174,21 @@ msgstr "Veksle alle innstillingstillatelser"
msgid "Token limits for context and output"
msgstr "Token-grenser for kontekst og utdata"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "For mange oppføringer. Opptil {maxRecordsString} tillatt"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Web Søk"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " rozliczany rocznie"
msgid " must be one of {ratingValues} values"
msgstr " musi być jednym z wartości {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(wybrano: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Dołącz pliki"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Załączniki"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Bazowy adres URL jest wymagany"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Niebieski"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Treść"
@@ -2961,6 +2977,16 @@ msgstr "Odczyt z pamięci podręcznej"
msgid "Cache write"
msgstr "Zapis do pamięci podręcznej"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategoria"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Koduj swoją funkcję"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Obiekty podstawowe"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Koszt"
@@ -5752,6 +5783,16 @@ msgstr "Pobierz pliki"
msgid "Download sample"
msgstr "Pobierz przykładowy plik"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplikaty"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Puste"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Pusta skrzynka odbiorcza"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Identyfikator podmiotu"
msgid "Entity ID copied to clipboard"
msgstr "ID encji został skopiowany do schowka"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Usunięcie zmiękczonych zapisów"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Błąd"
@@ -6933,6 +7004,9 @@ msgstr "Wyjdź z ustawień"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Wyrażenie"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nazwa funkcji"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Metoda HTTP"
msgid "HTTP Method"
msgstr "Metoda HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informacje"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Nieprawidłowy adres e-mail"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Nieprawidłowy adres e-mail lub domena"
@@ -9710,6 +9796,7 @@ msgstr "Wyloguj"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Karty nawigacyjne"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Brak treści"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nie ponowiono żadnych zadań{errorDetails}"
msgid "No latest version found"
msgstr "Nie znaleziono najnowszej wersji"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nie znaleziono opcji"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Brak wyjścia"
@@ -11142,6 +11242,16 @@ msgstr "Nie znaleziono rekordów"
msgid "No records matching the filter criteria were found."
msgstr "Nie znaleziono rekordów spełniających kryteria filtru."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Brak dostępnych obiektów systemowych"
msgid "No system objects with views found"
msgstr "Nie znaleziono obiektów systemowych z widokami"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Awaria"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Typ zasobu"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Odpowiedź"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Wyślij e-mail z zaproszeniem do swojego zespołu"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Wysyłanie..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Wysłane"
@@ -14750,6 +14885,13 @@ msgstr "Niektóre foldery"
msgid "Some layout changes could not be saved"
msgstr "Nie udało się zapisać niektórych zmian układu"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Sukces"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Do"
@@ -16030,11 +16174,21 @@ msgstr "Przełącz wszystkie uprawnienia ustawień"
msgid "Token limits for context and output"
msgstr "Limity tokenów dla kontekstu i wyjścia"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokeny"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Zbyt wiele rekordów. Dozwolone maksymalnie {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Szukaj w sieci"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -24,6 +24,11 @@ msgstr ""
msgid " must be one of {ratingValues} values"
msgstr ""
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -94,6 +99,9 @@ msgstr ""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1532,6 +1540,11 @@ msgstr ""
msgid "AI"
msgstr ""
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2510,6 +2523,7 @@ msgstr ""
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr ""
@@ -2716,6 +2730,7 @@ msgid "Base URL is required"
msgstr ""
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2802,6 +2817,7 @@ msgstr ""
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr ""
@@ -2956,6 +2972,16 @@ msgstr ""
msgid "Cache write"
msgstr ""
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3200,6 +3226,7 @@ msgid "Category"
msgstr ""
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3559,6 +3586,9 @@ msgstr ""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4225,6 +4255,7 @@ msgid "Core Objects"
msgstr ""
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr ""
@@ -5747,6 +5778,16 @@ msgstr ""
msgid "Download sample"
msgstr ""
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5787,6 +5828,14 @@ msgstr ""
msgid "Duplicates"
msgstr ""
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6211,6 +6260,9 @@ msgstr ""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6232,6 +6284,9 @@ msgstr ""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6567,6 +6622,18 @@ msgstr ""
msgid "Entity ID copied to clipboard"
msgstr ""
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6583,6 +6650,10 @@ msgid "Erasure of soft-deleted records"
msgstr ""
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr ""
@@ -6928,6 +6999,9 @@ msgstr ""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7043,6 +7117,7 @@ msgstr ""
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7806,6 +7881,11 @@ msgstr ""
msgid "Function name"
msgstr ""
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8256,6 +8336,11 @@ msgstr ""
msgid "HTTP Method"
msgstr ""
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8596,6 +8681,8 @@ msgstr ""
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8771,7 +8858,6 @@ msgstr ""
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr ""
@@ -9705,6 +9791,7 @@ msgstr ""
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10428,6 +10515,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr ""
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10773,6 +10865,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr ""
@@ -10984,6 +11077,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11013,6 +11107,11 @@ msgstr ""
msgid "No latest version found"
msgstr ""
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11075,6 +11174,7 @@ msgid "No option found"
msgstr ""
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr ""
@@ -11137,6 +11237,16 @@ msgstr ""
msgid "No records matching the filter criteria were found."
msgstr ""
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11196,6 +11306,11 @@ msgstr ""
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11902,6 +12017,8 @@ msgstr ""
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12754,6 +12871,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12786,6 +12908,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13194,6 +13317,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13290,6 +13418,7 @@ msgstr ""
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr ""
@@ -14241,6 +14370,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr ""
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14264,6 +14398,7 @@ msgid "Sending..."
msgstr ""
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr ""
@@ -14745,6 +14880,13 @@ msgstr ""
msgid "Some layout changes could not be saved"
msgstr ""
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15136,6 +15278,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr ""
@@ -15992,6 +16135,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr ""
@@ -16025,11 +16169,21 @@ msgstr ""
msgid "Token limits for context and output"
msgstr ""
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr ""
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16059,6 +16213,18 @@ msgstr ""
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17447,6 +17613,11 @@ msgstr ""
msgid "Web Search"
msgstr ""
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "cobrado anualmente"
msgid " must be one of {ratingValues} values"
msgstr " deve ser um dos valores {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(selecionado: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr "Gráfico agregado"
msgid "AI"
msgstr "IA"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Anexar arquivos"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Anexos"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "A URL base é obrigatória"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Azul"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Corpo"
@@ -2961,6 +2977,16 @@ msgstr "Leitura do cache"
msgid "Cache write"
msgstr "Gravação no cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categoria"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codifique sua função"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Objetos principais"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Custo"
@@ -5752,6 +5783,16 @@ msgstr "Baixar Arquivos"
msgid "Download sample"
msgstr "Baixar arquivo de exemplo"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicatas"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Vazio"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Caixa de entrada vazia"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID da entidade"
msgid "Entity ID copied to clipboard"
msgstr "ID da Entidade copiado para a área de transferência"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Apagamento de registros excluídos suavemente"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Erro"
@@ -6933,6 +7004,9 @@ msgstr "Sair das Configurações"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expressão"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nome da função"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Método HTTP"
msgid "HTTP Method"
msgstr "Método HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informações"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "E-mail inválido"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "E-mail ou domínio inválido"
@@ -9710,6 +9796,7 @@ msgstr "Sair"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Abas de Navegação"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Sem corpo"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nenhum trabalho foi repetido{errorDetails}"
msgid "No latest version found"
msgstr "Nenhuma versão mais recente encontrada"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nenhuma opção encontrada"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Sem saída"
@@ -11142,6 +11242,16 @@ msgstr "Nenhum registro encontrado"
msgid "No records matching the filter criteria were found."
msgstr "Nenhum registro correspondente aos critérios do filtro foi encontrado."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Nenhum objeto do sistema disponível"
msgid "No system objects with views found"
msgstr "Nenhum objeto do sistema com visualizações encontrado"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Interrupção"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tipo de recurso"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Resposta"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Envie um e-mail de convite para sua equipe"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Enviando..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Enviado"
@@ -14750,6 +14885,13 @@ msgstr "Algumas pastas"
msgid "Some layout changes could not be saved"
msgstr "Algumas alterações de layout não puderam ser salvas"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Sucesso"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Para"
@@ -16030,11 +16174,21 @@ msgstr "Alternar todas as permissões de configurações"
msgid "Token limits for context and output"
msgstr "Limites de tokens para contexto e saída"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Registros demais. Até {maxRecordsString} permitidos"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Pesquisar na Web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "faturado anualmente"
msgid " must be one of {ratingValues} values"
msgstr " deve ser um dos valores {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(selecionado: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "IA"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Anexar ficheiros"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Anexos"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "A URL base é obrigatória"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Azul"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Corpo"
@@ -2961,6 +2977,16 @@ msgstr "Leitura em cache"
msgid "Cache write"
msgstr "Gravação em cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categoria"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codifique sua função"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Objetos principais"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Custo"
@@ -5752,6 +5783,16 @@ msgstr "Baixar arquivos"
msgid "Download sample"
msgstr "Transferir exemplo"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicados"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Vazio"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Caixa de entrada vazia"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID da Entidade"
msgid "Entity ID copied to clipboard"
msgstr "ID da Entidade copiado para a área de transferência"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Apagamento de registros excluídos temporariamente"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Erro"
@@ -6933,6 +7004,9 @@ msgstr "Sair das Definições"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expressão"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Nome da função"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Método HTTP"
msgid "HTTP Method"
msgstr "Método HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informações"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "E-mail inválido"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "E-mail ou domínio inválido"
@@ -9710,6 +9796,7 @@ msgstr "Terminar sessão"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Abas de Navegação"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Sem corpo"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nenhum trabalho foi reiniciado{errorDetails}"
msgid "No latest version found"
msgstr "Nenhuma versão mais recente encontrada"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nenhuma opção encontrada"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Sem saída"
@@ -11142,6 +11242,16 @@ msgstr "Nenhum registro encontrado"
msgid "No records matching the filter criteria were found."
msgstr "Não foram encontrados registos que correspondam aos critérios do filtro."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Nenhum objeto do sistema disponível"
msgid "No system objects with views found"
msgstr "Nenhum objeto do sistema com vistas encontrado"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Interrupção"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tipo de Recurso"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Resposta"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Enviar um convite por e-mail à sua equipa"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Enviando..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Enviado"
@@ -14750,6 +14885,13 @@ msgstr "Algumas pastas"
msgid "Some layout changes could not be saved"
msgstr "Algumas alterações de layout não puderam ser salvas"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Sucesso"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Para"
@@ -16030,11 +16174,21 @@ msgstr "Ativar todas as permissões de configurações"
msgid "Token limits for context and output"
msgstr "Limites de tokens para contexto e saída"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Demasiados registos. Até {maxRecordsString} permitidos"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Pesquisa na Web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " facturat anual"
msgid " must be one of {ratingValues} values"
msgstr " trebuie să fie una dintre valorile {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(selectată: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Atașați fișiere"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Atașamente"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "URL-ul de bază este necesar"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Albastru"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Corp"
@@ -2961,6 +2977,16 @@ msgstr "Citire din cache"
msgid "Cache write"
msgstr "Scriere în cache"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Categorie"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Codificați funcția dumneavoastră"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Obiecte de bază"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Cost"
@@ -5752,6 +5783,16 @@ msgstr "Descărcați fișiere"
msgid "Download sample"
msgstr "Descarcă fișierul de mostră"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Duplicat"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Gol"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Inbox gol"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID entitate"
msgid "Entity ID copied to clipboard"
msgstr "ID-ul Entității copiat în clipboard"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Ștergerea înregistrărilor soft-delete"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Eroare"
@@ -6933,6 +7004,9 @@ msgstr "Ieșire din Setări"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Expresie"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Numele funcției"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Metodă HTTP"
msgid "HTTP Method"
msgstr "Metodă HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Informații"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Email invalid"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Email sau domeniu invalid"
@@ -9710,6 +9796,7 @@ msgstr "Deconectare"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "File de navigare"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Fără Body"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Nu au fost reîncercate locuri de muncă{errorDetails}"
msgid "No latest version found"
msgstr "Nu a fost găsită cea mai recentă versiune"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Nu a fost găsită nicio opțiune"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Nicio ieșire"
@@ -11142,6 +11242,16 @@ msgstr "Nu s-au găsit înregistrări"
msgid "No records matching the filter criteria were found."
msgstr "Nu s-au găsit înregistrări care să corespundă criteriilor de filtrare."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Niciun obiect de sistem disponibil"
msgid "No system objects with views found"
msgstr "Nu au fost găsite obiecte de sistem cu vizualizări"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Întrerupere"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Tip de resursă"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Răspuns"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Trimite un email de invitație echipei tale"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Se trimite..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Trimis"
@@ -14750,6 +14885,13 @@ msgstr "Unele foldere"
msgid "Some layout changes could not be saved"
msgstr "Unele modificări ale aspectului nu au putut fi salvate"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Succes"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Către"
@@ -16030,11 +16174,21 @@ msgstr "Comută toate permisiunile de setări"
msgid "Token limits for context and output"
msgstr "Limite de jetoane pentru context și ieșire"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "jetoane"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Prea multe înregistrări. Până la {maxRecordsString} sunt permise"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Căutare pe web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
Binary file not shown.
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " наплаћује се годишње"
msgid " must be one of {ratingValues} values"
msgstr " мора бити једна од {ratingValues} вредности"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(изабрано: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Приложите датотеке"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Прилози"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Основни URL је обавезан"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Плава"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Садржај"
@@ -2961,6 +2977,16 @@ msgstr "Читање из кеша"
msgid "Cache write"
msgstr "Писање у кеш"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr ""
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Напишите вашу функцију"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Основни објекти"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Цена"
@@ -5752,6 +5783,16 @@ msgstr "Преузми датотеке"
msgid "Download sample"
msgstr "Преузми пример"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Дупликати"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Празно"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Празан пријемни сандуче"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Идентификатор ентитета"
msgid "Entity ID copied to clipboard"
msgstr "ID ентитета копиран у клипборд"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Брисање меко-обрисаних записа"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Грешка"
@@ -6933,6 +7004,9 @@ msgstr "Изађи из подешавања"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Израз"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Назив функције"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP метода"
msgid "HTTP Method"
msgstr "HTTP метода"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Информације"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Невалидан имејл"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Невалидан имејл или домен"
@@ -9710,6 +9796,7 @@ msgstr "Одјава"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Навигациони језичци"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Нема тела"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Ниједан посао није поновљен{errorDetails}"
msgid "No latest version found"
msgstr "Није пронађена најновија верзија"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Нема пронађене опције"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Нема излаза"
@@ -11142,6 +11242,16 @@ msgstr "Нису пронађени подаци"
msgid "No records matching the filter criteria were found."
msgstr "Нису пронађени записи који одговарају критеријумима филтера."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Нема доступних системских објеката"
msgid "No system objects with views found"
msgstr "Нису пронађени системски објекти са приказима"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Прекид рада"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Тип ресурса"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Одговор"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Пошаљите имејл позивницу вашем тиму"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Слање..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Послато"
@@ -14750,6 +14885,13 @@ msgstr "Неке фасцикле"
msgid "Some layout changes could not be saved"
msgstr "Неке измене распореда нису могле бити сачуване"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Успех"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr ""
@@ -16030,11 +16174,21 @@ msgstr "Промени све дозволе за подешавања"
msgid "Token limits for context and output"
msgstr "Ограничења токена за контекст и излаз"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "токени"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Превише записа. Дозвољено до {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Веб Претрага"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " faktureras årligen"
msgid " must be one of {ratingValues} values"
msgstr " måste vara ett av {ratingValues} värden"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(vald: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Bifoga filer"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Bilagor"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Bas-URL krävs"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Blå"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Innehåll"
@@ -2961,6 +2977,16 @@ msgstr "Cache-läsning"
msgid "Cache write"
msgstr "Cache-skrivning"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategori"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Koda din funktion"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Kärnobjekt"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Kostnad"
@@ -5752,6 +5783,16 @@ msgstr "Ladda ner filer"
msgid "Download sample"
msgstr "Ladda ner exempel"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Dubbletter"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Tom"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Tom inkorg"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Entitets-ID"
msgid "Entity ID copied to clipboard"
msgstr "Enhets-ID kopierat till urklipp"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Radering av mjukt raderade poster"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Fel"
@@ -6933,6 +7004,9 @@ msgstr "Avsluta inställningar"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Uttryck"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Funktionsnamn"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP-metod"
msgid "HTTP Method"
msgstr "HTTP-metod"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Information"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Ogiltig e-post"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Ogiltig e-post eller domän"
@@ -9710,6 +9796,7 @@ msgstr "Logga ut"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10435,6 +10522,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Navigeringsflikar"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10780,6 +10872,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Ingen body"
@@ -10991,6 +11084,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11020,6 +11114,11 @@ msgstr "Inga jobb återsöktes{errorDetails}"
msgid "No latest version found"
msgstr "Ingen senaste version hittad"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11082,6 +11181,7 @@ msgid "No option found"
msgstr "Inget alternativ hittades"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Ingen utdata"
@@ -11144,6 +11244,16 @@ msgstr "Inga poster hittades"
msgid "No records matching the filter criteria were found."
msgstr "Inga poster som matchar filterkriterierna hittades."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11203,6 +11313,11 @@ msgstr "Inga systemobjekt tillgängliga"
msgid "No system objects with views found"
msgstr "Inga systemobjekt med vyer hittades"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11909,6 +12024,8 @@ msgstr "Avbrott"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12761,6 +12878,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12793,6 +12915,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13201,6 +13324,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13297,6 +13425,7 @@ msgstr "Resurstyp"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Svar"
@@ -14250,6 +14379,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Skicka en inbjudnings-e-post till ditt team"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14273,6 +14407,7 @@ msgid "Sending..."
msgstr "Skickar..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Skickat"
@@ -14754,6 +14889,13 @@ msgstr "Vissa mappar"
msgid "Some layout changes could not be saved"
msgstr "Vissa layoutändringar kunde inte sparas"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15145,6 +15287,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Lyckades"
@@ -16005,6 +16148,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Till"
@@ -16038,11 +16182,21 @@ msgstr "Växla alla inställningsrättigheter"
msgid "Token limits for context and output"
msgstr "Token-gränser för kontext och utdata"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "tokens"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16072,6 +16226,18 @@ msgstr "För många poster. Upp till {maxRecordsString} tillåts"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17462,6 +17628,11 @@ msgstr ""
msgid "Web Search"
msgstr "Webbsök"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "yıllık faturalandırılır"
msgid " must be one of {ratingValues} values"
msgstr " {ratingValues} değerlerinden biri olmalı"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(seçili: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Dosya ekle"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Ekler"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Temel URL gerekli"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Mavi"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "İçerik"
@@ -2961,6 +2977,16 @@ msgstr "Önbellekten okuma"
msgid "Cache write"
msgstr "Önbelleğe yazma"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Kategori"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Fonksiyonunu kodla"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Temel Nesneler"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Maliyet"
@@ -5752,6 +5783,16 @@ msgstr "Dosyaları İndir"
msgid "Download sample"
msgstr "Örnek dosyayı indir"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Çiftler"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Boş"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Boş Gelen Kutusu"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Varlık Kimliği"
msgid "Entity ID copied to clipboard"
msgstr "Varlık Kimliği panoya kopyalandı"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Yumuşak silinmiş kayıtların silinmesi"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Hata"
@@ -6933,6 +7004,9 @@ msgstr "Ayarları Kapat"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "İfade"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Fonksiyon adı"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP yöntemi"
msgid "HTTP Method"
msgstr "HTTP Yöntemi"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Bilgiler"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Geçersiz e-posta"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Geçersiz e-posta veya alan adı"
@@ -9710,6 +9796,7 @@ msgstr "Çıkış yap"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Gezinti sekmeleri"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Gövde yok"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "İşler yeniden denenmedi{errorDetails}"
msgid "No latest version found"
msgstr "Son sürüm bulunamadı"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Seçenek bulunamadı"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Çıktı yok"
@@ -11142,6 +11242,16 @@ msgstr "Kayıt bulunamadı"
msgid "No records matching the filter criteria were found."
msgstr "Filtre kriterleriyle eşleşen kayıt bulunamadı."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Kullanılabilir sistem nesnesi yok"
msgid "No system objects with views found"
msgstr "Görünümü olan sistem nesnesi bulunamadı"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Kesinti"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Kaynak Türü"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Yanıt"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Takımınıza davet e-postası gönderin"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Gönderiliyor..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Gönderildi"
@@ -14750,6 +14885,13 @@ msgstr "Bazı klasörler"
msgid "Some layout changes could not be saved"
msgstr "Bazı yerleşim değişiklikleri kaydedilemedi"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Başarılı"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Kime"
@@ -16030,11 +16174,21 @@ msgstr "Tüm ayar izinlerini değiştir"
msgid "Token limits for context and output"
msgstr "Bağlam ve çıktı için token sınırları"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "belirteçler"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Çok fazla kayıt. En fazla {maxRecordsString} kayda izin verilir"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Web Ara"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " виставляється щорічно"
msgid " must be one of {ratingValues} values"
msgstr " має бути одним із значень {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(обрано: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "ШІ"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Прикріпити файли"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Вкладення"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "Потрібно вказати базову URL-адресу"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Синій"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Текст"
@@ -2961,6 +2977,16 @@ msgstr "Зчитування з кешу"
msgid "Cache write"
msgstr "Запис у кеш"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Категорія"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Закодуйте свою функцію"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Основні об'єкти"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Вартість"
@@ -5752,6 +5783,16 @@ msgstr "Завантажити файл"
msgid "Download sample"
msgstr "Завантажити зразок"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Дублети"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Порожньо"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Порожня скринька"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "Ідентифікатор сутності"
msgid "Entity ID copied to clipboard"
msgstr "Ідентифікатор об'єкта скопійовано в буфер обміну"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Видалення м'яко видалених записів"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Помилка"
@@ -6933,6 +7004,9 @@ msgstr "Вийти з налаштувань"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Вираз"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Назва функції"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Метод HTTP"
msgid "HTTP Method"
msgstr "Метод HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Інформація"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Недійсна електронна адреса"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Недійсна електронна адреса або домен"
@@ -9710,6 +9796,7 @@ msgstr "Вийти"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Навігаційні вкладки"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Без тіла"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Жодне завдання не було повторено{errorDetail
msgid "No latest version found"
msgstr "Нову версію не знайдено"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Опцій не знайдено"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Немає виводу"
@@ -11142,6 +11242,16 @@ msgstr "Записів не знайдено"
msgid "No records matching the filter criteria were found."
msgstr "Не знайдено записів, що відповідають критеріям фільтра."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Немає доступних системних об’єктів"
msgid "No system objects with views found"
msgstr "Не знайдено системних об’єктів із переглядами"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Збій"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Тип ресурсу"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Відповідь"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Надішліть запрошення на електронну адресу вашої команди"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Надсилається..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Відправлено"
@@ -14750,6 +14885,13 @@ msgstr "Деякі папки"
msgid "Some layout changes could not be saved"
msgstr "Деякі зміни компонування не вдалося зберегти"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Успіх"
@@ -15999,6 +16142,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Кому"
@@ -16032,11 +16176,21 @@ msgstr "Перемикати всі дозволи налаштувань"
msgid "Token limits for context and output"
msgstr "Обмеження токенів для контексту та виводу"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "токени"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16066,6 +16220,18 @@ msgstr "Занадто багато записів. Дозволено до {max
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17456,6 +17622,11 @@ msgstr ""
msgid "Web Search"
msgstr "Веб-пошук"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "trả hàng năm"
msgid " must be one of {ratingValues} values"
msgstr " phải là một trong các giá trị {ratingValues}"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(đã chọn: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "Đính kèm tệp"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "Tập tin đính kèm"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "URL cơ sở là bắt buộc"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "Xanh dương"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "Nội dung"
@@ -2961,6 +2977,16 @@ msgstr "Đọc từ bộ nhớ đệm"
msgid "Cache write"
msgstr "Ghi vào bộ nhớ đệm"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "Danh mục"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "Mã hóa chức năng của bạn"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "Đối tượng cốt lõi"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "Chi phí"
@@ -5752,6 +5783,16 @@ msgstr "Tải về tệp"
msgid "Download sample"
msgstr "Tải tệp mẫu"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "Trùng lặp"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "Trống"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "Hộp thư rỗng"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "ID thực thể"
msgid "Entity ID copied to clipboard"
msgstr "Đã sao chép ID thực thể vào bảng tạm"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "Xóa vĩnh viễn các bản ghi đã xóa mềm"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "Lỗi"
@@ -6933,6 +7004,9 @@ msgstr "\"Thoát Cài đặt\""
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "Biểu thức"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "Tên hàm"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "Phương thức HTTP"
msgid "HTTP Method"
msgstr "Phương thức HTTP"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "Thông tin"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "Email không hợp lệ"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "Email hoặc tên miền không hợp lệ"
@@ -9710,6 +9796,7 @@ msgstr "Đăng xuất"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "Tab điều hướng"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "Không có phần thân"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "Không có công việc nào được thử lại{errorDetails}"
msgid "No latest version found"
msgstr "Không tìm thấy phiên bản mới nhất"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "Không có tuỳ chọn nào"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "Không có đầu ra"
@@ -11142,6 +11242,16 @@ msgstr "Không tìm thấy bản ghi"
msgid "No records matching the filter criteria were found."
msgstr "Không tìm thấy bản ghi nào khớp với tiêu chí lọc."
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "Không có đối tượng hệ thống nào có sẵn"
msgid "No system objects with views found"
msgstr "Không tìm thấy đối tượng hệ thống nào có chế độ xem"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "Gián đoạn"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "Loại tài nguyên"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "Phản hồi"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "Gửi email mời đến đội của bạn"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "Đang gửi..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "Đã gửi"
@@ -14750,6 +14885,13 @@ msgstr "Một số thư mục"
msgid "Some layout changes could not be saved"
msgstr "Một số thay đổi về bố cục không thể được lưu"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "Thành công"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "Đến"
@@ -16030,11 +16174,21 @@ msgstr "Chuyển đổi tất cả quyền cài đặt"
msgid "Token limits for context and output"
msgstr "Giới hạn token cho ngữ cảnh và đầu ra"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "mã thông báo"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "Quá nhiều bản ghi. Cho phép tối đa {maxRecordsString}"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "Tìm kiếm web"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr " 每年支付"
msgid " must be one of {ratingValues} values"
msgstr " 必须是 {ratingValues} 之一"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(已选择: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "附加文件"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "附件"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "基础 URL 为必填项"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "蓝色"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "正文"
@@ -2961,6 +2977,16 @@ msgstr "缓存读取"
msgid "Cache write"
msgstr "缓存写入"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "类别"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "编写您的功能"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "核心对象"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "成本"
@@ -5752,6 +5783,16 @@ msgstr "下载文件"
msgid "Download sample"
msgstr "下载示例文件"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "重复项"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "空"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "清空收件箱"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "实体 ID"
msgid "Entity ID copied to clipboard"
msgstr "实体 ID 已复制到剪贴板"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "软删除记录的擦除"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "错误"
@@ -6933,6 +7004,9 @@ msgstr "退出设置"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "表达式"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "函数名称"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP 方法"
msgid "HTTP Method"
msgstr "HTTP 方法"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "信息"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "无效的电子邮件"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "无效的电子邮件或域"
@@ -9710,6 +9796,7 @@ msgstr "注销"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "导航选项卡"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "无正文"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "重试任务失败{errorDetails}"
msgid "No latest version found"
msgstr "找不到最新版本"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "未找到选项"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "无输出"
@@ -11142,6 +11242,16 @@ msgstr "未找到记录"
msgid "No records matching the filter criteria were found."
msgstr "未找到符合筛选条件的记录。"
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "没有可用的系统对象"
msgid "No system objects with views found"
msgstr "未找到具有视图的系统对象"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "中断"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "资源类型"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "响应"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "向您的团队发送邀请电子邮件"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "发送中..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "已发送"
@@ -14750,6 +14885,13 @@ msgstr "某些文件夹"
msgid "Some layout changes could not be saved"
msgstr "某些布局更改无法保存"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "成功"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "收件人"
@@ -16030,11 +16174,21 @@ msgstr "切换所有设置权限"
msgid "Token limits for context and output"
msgstr "上下文和输出的 token 限制"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "令牌"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "记录过多。最多允许 {maxRecordsString} 条"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "网络搜索"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
+172 -1
View File
@@ -29,6 +29,11 @@ msgstr "每年結算"
msgid " must be one of {ratingValues} values"
msgstr " 必須是 {ratingValues} 值中的一個"
#. js-lingui-id: h47p9L
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "—"
msgstr ""
#. js-lingui-id: ypz2+E
#: src/modules/object-record/object-filter-dropdown/utils/getOperandLabel.ts
msgid ": Empty"
@@ -99,6 +104,9 @@ msgstr "(已選取: {selectedIconKey})"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -1537,6 +1545,11 @@ msgstr ""
msgid "AI"
msgstr "AI"
#. js-lingui-id: oI7HO0
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "AI agent run"
msgstr ""
#. js-lingui-id: V+Qj+q
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
msgid "AI Chat"
@@ -2515,6 +2528,7 @@ msgstr "附加檔案"
#. js-lingui-id: w/Sphq
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Attachments"
msgstr "附件"
@@ -2721,6 +2735,7 @@ msgid "Base URL is required"
msgstr "需要提供基礎 URL"
#. js-lingui-id: /xLNEx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Bcc"
@@ -2807,6 +2822,7 @@ msgstr "藍色"
#. js-lingui-id: bGQplw
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Body"
msgstr "內文"
@@ -2961,6 +2977,16 @@ msgstr "快取讀取"
msgid "Cache write"
msgstr "快取寫入"
#. js-lingui-id: LbCV38
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached creation"
msgstr ""
#. js-lingui-id: FKV3nW
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Cached read"
msgstr ""
#. js-lingui-id: PmmvzS
#: src/modules/object-record/record-table/record-table-footer/components/RecordTableColumnAggregateFooterValue.tsx
msgid "Calculate"
@@ -3205,6 +3231,7 @@ msgid "Category"
msgstr "分類"
#. js-lingui-id: RpYfjZ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Cc"
@@ -3564,6 +3591,9 @@ msgstr "編寫您的功能代碼"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -4230,6 +4260,7 @@ msgid "Core Objects"
msgstr "核心對象"
#. js-lingui-id: I99Miw
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "Cost"
msgstr "成本"
@@ -5752,6 +5783,16 @@ msgstr "下載文件"
msgid "Download sample"
msgstr "下載範例檔案"
#. js-lingui-id: DbAw4C
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Draft email"
msgstr ""
#. js-lingui-id: fdUFex
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Drafted"
msgstr ""
#. js-lingui-id: XKUtpI
#: src/modules/activities/files/components/DropZone.tsx
msgid "Drag and Drop Here"
@@ -5792,6 +5833,14 @@ msgstr ""
msgid "Duplicates"
msgstr "副本"
#. js-lingui-id: lkz6PL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Duration"
msgstr ""
#. js-lingui-id: KIjvtr
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Dutch"
@@ -6216,6 +6265,9 @@ msgstr "空"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6237,6 +6289,9 @@ msgstr "清空收件箱"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -6572,6 +6627,18 @@ msgstr "實體 ID"
msgid "Entity ID copied to clipboard"
msgstr "實體 ID 已複製到剪貼板"
#. js-lingui-id: /qwiJU
#. placeholder {0}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({0}, latest iteration only)"
msgstr ""
#. js-lingui-id: Mfqmk8
#. placeholder {1}: entries.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEntries.tsx
msgid "Entries ({1})"
msgstr ""
#. js-lingui-id: 3IeauL
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
msgid "Env Variable Options"
@@ -6588,6 +6655,10 @@ msgid "Erasure of soft-deleted records"
msgstr "擦除已軟刪除的記錄"
#. js-lingui-id: SlfejT
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Error"
msgstr "錯誤"
@@ -6933,6 +7004,9 @@ msgstr "退出設置"
#: src/pages/settings/security/event-logs/components/EventLogJsonCell.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepOutputDetail.tsx
#: src/modules/workflow/workflow-steps/components/WorkflowRunStepInputDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJsonDataIndicatorHealthStatus.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
@@ -7048,6 +7122,7 @@ msgstr "表達式"
#. js-lingui-id: 7Bj3x9
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
#: src/pages/settings/admin-panel/SettingsAdminInstanceStatus.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/admin-panel/utils/getUpgradeHealthStatusBadge.ts
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkspacesStatusSummaryCard.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
@@ -7811,6 +7886,11 @@ msgstr ""
msgid "Function name"
msgstr "函式名稱"
#. js-lingui-id: KBnkoU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
msgid "Function run"
msgstr ""
#. js-lingui-id: tkr79G
#: src/utils/title-utils.ts
msgid "Functions - Settings"
@@ -8261,6 +8341,11 @@ msgstr "HTTP 方法"
msgid "HTTP Method"
msgstr "HTTP 方法"
#. js-lingui-id: PmknJS
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "HTTP request"
msgstr ""
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
@@ -8601,6 +8686,8 @@ msgstr "資訊"
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTestTab.tsx
#: src/modules/ai/components/ToolStepRenderer.tsx
@@ -8776,7 +8863,6 @@ msgstr "無效的電子郵件"
#. js-lingui-id: /m52AE
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
#: src/modules/settings/accounts/components/SettingsAccountsBlocklistInput.tsx
msgid "Invalid email or domain"
msgstr "無效的電子郵件或域名"
@@ -9710,6 +9796,7 @@ msgstr "登出"
#. js-lingui-id: w/bY7R
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminJobDetailsExpandable.tsx
#: src/modules/logic-functions/components/LogicFunctionLogs.tsx
msgid "Logs"
@@ -10433,6 +10520,11 @@ msgstr ""
msgid "Navigation tabs"
msgstr "導航分頁"
#. js-lingui-id: wW3b68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Network error"
msgstr ""
#. js-lingui-id: qqeAJM
#: src/modules/settings/developers/utils/formatExpiration.ts
msgid "Never"
@@ -10778,6 +10870,7 @@ msgstr ""
#. js-lingui-id: V/RzSE
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/BodyInput.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "No body"
msgstr "沒有主體"
@@ -10989,6 +11082,7 @@ msgstr ""
#. js-lingui-id: gIrKyO
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
msgid "No input"
msgstr ""
@@ -11018,6 +11112,11 @@ msgstr "未重試工作{errorDetails}"
msgid "No latest version found"
msgstr "未找到最新版本"
#. js-lingui-id: vV85hO
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "No logs were recorded for this step."
msgstr ""
#. js-lingui-id: 5sf2dF
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "No logs yet"
@@ -11080,6 +11179,7 @@ msgid "No option found"
msgstr "未找到選項"
#. js-lingui-id: XRc1G9
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/ai/components/TerminalOutput.tsx
msgid "No output"
msgstr "無輸出"
@@ -11142,6 +11242,16 @@ msgstr "未找到記錄"
msgid "No records matching the filter criteria were found."
msgstr "找不到符合篩選條件的記錄。"
#. js-lingui-id: YLozFb
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No request body"
msgstr ""
#. js-lingui-id: 0X71SU
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "No response body"
msgstr ""
#. js-lingui-id: Ev2r9A
#: src/modules/views/components/ViewFieldsSearchDropdownSection.tsx
#: src/modules/ui/input/components/internal/phone/components/PhoneCountryPickerDropdownSelect.tsx
@@ -11201,6 +11311,11 @@ msgstr "沒有可用的系統物件"
msgid "No system objects with views found"
msgstr "找不到具有檢視的系統物件"
#. js-lingui-id: t0t36i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "No tools were called"
msgstr ""
#. js-lingui-id: ZCTuAQ
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No trigger is configured for this function."
@@ -11907,6 +12022,8 @@ msgstr "中斷"
#. js-lingui-id: gh06VD
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsToolCallRow.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/components/WorkflowStepExecutionResult.tsx
#: src/modules/side-panel/pages/workflow/step/view-run/components/SidePanelWorkflowRunViewStepContent.tsx
#: src/modules/logic-functions/components/LogicFunctionExecutionResult.tsx
@@ -12759,6 +12876,11 @@ msgstr ""
msgid "Read-only {entityTypeLabel} definition shipped by this app"
msgstr ""
#. js-lingui-id: wUf2OL
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Reasoning"
msgstr ""
#. js-lingui-id: W+ApAD
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
msgid "Reauthorize"
@@ -12791,6 +12913,7 @@ msgid "Recents"
msgstr ""
#. js-lingui-id: yPrbsy
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "Recipients"
msgstr ""
@@ -13199,6 +13322,11 @@ msgstr ""
msgid "Report an issue"
msgstr ""
#. js-lingui-id: OlFf9i
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Request"
msgstr ""
#. js-lingui-id: /laZGZ
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "Request Failed"
@@ -13295,6 +13423,7 @@ msgstr "資源類型"
#. js-lingui-id: ZlCDf+
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsHttpRequestDetail.tsx
msgid "Response"
msgstr "回應"
@@ -14246,6 +14375,11 @@ msgstr ""
msgid "Send an invite email to your team"
msgstr "向您的團隊發送邀請電子郵件"
#. js-lingui-id: 65dxv8
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
msgid "Send email"
msgstr ""
#. js-lingui-id: i/TzEU
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
#: src/modules/activities/emails/components/EmptyInboxPlaceholder.tsx
@@ -14269,6 +14403,7 @@ msgid "Sending..."
msgstr "發送中..."
#. js-lingui-id: h69WC6
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
msgid "Sent"
msgstr "已發送"
@@ -14750,6 +14885,13 @@ msgstr "某些資料夾"
msgid "Some layout changes could not be saved"
msgstr "某些版面配置變更無法儲存"
#. js-lingui-id: VOOhW/
#. placeholder {0}: stepLog.truncated.droppedEntries
#. placeholder {1}: stepLog.truncated.droppedBytes
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsDetail.tsx
msgid "Some log data was dropped to fit the size limit ({0} entries, {1} bytes)."
msgstr ""
#. js-lingui-id: nwtY4N
#: src/pages/auth/Authorize.tsx
msgid "Something went wrong"
@@ -15141,6 +15283,7 @@ msgid "subtitle"
msgstr ""
#. js-lingui-id: zzDlyQ
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsCodeDetail.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
msgid "Success"
msgstr "成功"
@@ -15997,6 +16140,7 @@ msgstr ""
#. js-lingui-id: /jQctM
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionEmailBase.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsEmailDetail.tsx
#: src/modules/activities/emails/components/EmailComposerFields.tsx
msgid "To"
msgstr "收件者"
@@ -16030,11 +16174,21 @@ msgstr "切換所有設置權限"
msgid "Token limits for context and output"
msgstr "上下文與輸出的權杖上限"
#. js-lingui-id: 7wDgAB
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Token usage"
msgstr ""
#. js-lingui-id: WOr+hW
#: src/modules/ai/components/internal/AiChatContextUsageButton.tsx
msgid "tokens"
msgstr "權杖"
#. js-lingui-id: 6RDwJM
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tokens"
msgstr ""
#. js-lingui-id: oK9ArN
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Tomato"
@@ -16064,6 +16218,18 @@ msgstr "記錄過多。最多允許 {maxRecordsString} 筆"
msgid "Tool call: {0}"
msgstr ""
#. js-lingui-id: YDLN0O
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls"
msgstr ""
#. js-lingui-id: XfXfry
#. placeholder {0}: toolCalls.length
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Tool calls ({0})"
msgstr ""
#. js-lingui-id: GnoLfm
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Tool calls made"
@@ -17454,6 +17620,11 @@ msgstr ""
msgid "Web Search"
msgstr "網路搜索"
#. js-lingui-id: 4ptK68
#: src/modules/workflow/workflow-run/observability/WorkflowRunStepLogsAiAgentDetail.tsx
msgid "Web searches"
msgstr ""
#. js-lingui-id: Dq7Z5R
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "webhook"
@@ -1,3 +1,4 @@
import { MONOSPACE_FONT_FAMILY } from '@/ui/theme/constants/MonospaceFontFamily';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { useState } from 'react';
@@ -70,7 +71,7 @@ const StyledOutputArea = styled.div<{ isError?: boolean }>`
isError
? themeCssVariables.color.red
: themeCssVariables.font.color.primary};
font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
font-family: ${MONOSPACE_FONT_FAMILY};
font-size: ${themeCssVariables.font.size.sm};
line-height: 1.5;
max-height: 300px;
@@ -23,14 +23,14 @@ describe('resolveToolInput', () => {
it('should unwrap execute_tool input', () => {
const input = {
toolName: 'find_companies',
toolName: 'find_many_companies',
arguments: { filter: { name: 'Acme' } },
};
const result = resolveToolInput(input, 'execute_tool');
expect(result).toEqual({
resolvedInput: { filter: { name: 'Acme' } },
resolvedToolName: 'find_companies',
resolvedToolName: 'find_many_companies',
});
});
@@ -108,13 +108,13 @@ describe('getToolDisplayMessage', () => {
describe('learn_tools', () => {
it('should show tool names when provided', () => {
const message = getToolDisplayMessage(
{ toolNames: ['find_companies', 'create_task'] },
{ toolNames: ['find_many_companies', 'create_one_task'] },
'learn_tools',
true,
);
expect(message).toContain('Learned');
expect(message).toContain('find_companies, create_task');
expect(message).toContain('find_many_companies, create_one_task');
});
it('should show generic message without tool names', () => {
@@ -182,13 +182,13 @@ describe('getToolDisplayMessage', () => {
describe('execute_tool wrapper', () => {
it('should unwrap execute_tool and display inner tool name', () => {
const message = getToolDisplayMessage(
{ toolName: 'find_companies', arguments: { limit: 10 } },
{ toolName: 'find_many_companies', arguments: { limit: 10 } },
'execute_tool',
true,
);
expect(message).toContain('Ran');
expect(message).toContain('find companies');
expect(message).toContain('find many companies');
});
});
});
@@ -435,14 +435,6 @@ const SettingsSecurityApprovedAccessDomain = lazy(() =>
),
);
const SettingsEventLogs = lazy(() =>
import('~/pages/settings/security/event-logs/SettingsEventLogs').then(
(module) => ({
default: module.SettingsEventLogs,
}),
),
);
const SettingsNewEmailingDomain = lazy(() =>
import('~/pages/settings/emailing-domains/SettingsNewEmailingDomain').then(
(module) => ({
@@ -934,7 +926,6 @@ export const SettingsRoutes = ({ isAdminPageEnabled }: SettingsRoutesProps) => (
path={SettingsPath.NewApprovedAccessDomain}
element={<SettingsSecurityApprovedAccessDomain />}
/>
<Route path={SettingsPath.EventLogs} element={<SettingsEventLogs />} />
</Route>
{isAdminPageEnabled && (
@@ -91,8 +91,6 @@ export const FavoritesSection = () => {
const handleAddFavorite = (event?: React.MouseEvent) => {
event?.stopPropagation();
// Expansion is gated on items existing, so this stays collapsed if the user
// cancels and reveals the favorite as soon as it is added.
openNavigationSection();
setNavigationMenuItemEditSection('favorite');
setPendingInsertionNavigationMenuItem(null);
@@ -119,10 +117,14 @@ export const FavoritesSection = () => {
[deleteManyNavigationMenuItems],
);
if (topLevelItems.length === 0) {
return null;
}
return (
<NavigationMenuItemSection
title={t`Favorites`}
isOpen={topLevelItems.length > 0 && isNavigationSectionOpen}
isOpen={isNavigationSectionOpen}
onToggle={toggleNavigationSection}
rightIcon={
<LightIconButton
@@ -132,66 +134,64 @@ export const FavoritesSection = () => {
/>
}
>
{topLevelItems.length > 0 && (
<StyledList>
{topLevelItems.map((item, index) => (
<StyledListItemRow key={item.id}>
{index === 0 ? (
<NavigationMenuItemDroppableSlot
droppableId={ORPHAN_DROPPABLE_ID}
index={0}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemOrphanDropTarget
index={0}
compact
sectionId={NavigationSections.FAVORITES}
droppableId={ORPHAN_DROPPABLE_ID}
/>
</NavigationMenuItemDroppableSlot>
) : (
<StyledList>
{topLevelItems.map((item, index) => (
<StyledListItemRow key={item.id}>
{index === 0 ? (
<NavigationMenuItemDroppableSlot
droppableId={ORPHAN_DROPPABLE_ID}
index={0}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemOrphanDropTarget
index={index}
index={0}
compact
sectionId={NavigationSections.FAVORITES}
droppableId={ORPHAN_DROPPABLE_ID}
/>
)}
<NavigationMenuItemSortableItem
id={item.id}
</NavigationMenuItemDroppableSlot>
) : (
<NavigationMenuItemOrphanDropTarget
index={index}
group={ORPHAN_DROPPABLE_ID}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemDisplay
item={item}
isEditInPlace={isNavigationMenuItemFolder(item)}
isDragging={isDragging}
folderChildrenById={folderChildrenById}
folderCount={folderCount}
rightOptions={
isNavigationMenuItemFolder(item)
? undefined
: makeRightOptions(item)
}
/>
</NavigationMenuItemSortableItem>
</StyledListItemRow>
))}
<NavigationMenuItemDroppableSlot
droppableId={ORPHAN_DROPPABLE_ID}
compact
sectionId={NavigationSections.FAVORITES}
droppableId={ORPHAN_DROPPABLE_ID}
/>
)}
<NavigationMenuItemSortableItem
id={item.id}
index={index}
group={ORPHAN_DROPPABLE_ID}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemDisplay
item={item}
isEditInPlace={isNavigationMenuItemFolder(item)}
isDragging={isDragging}
folderChildrenById={folderChildrenById}
folderCount={folderCount}
rightOptions={
isNavigationMenuItemFolder(item)
? undefined
: makeRightOptions(item)
}
/>
</NavigationMenuItemSortableItem>
</StyledListItemRow>
))}
<NavigationMenuItemDroppableSlot
droppableId={ORPHAN_DROPPABLE_ID}
index={topLevelItems.length}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemOrphanDropTarget
index={topLevelItems.length}
disabled={favoritesDropDisabled}
>
<NavigationMenuItemOrphanDropTarget
index={topLevelItems.length}
compact
sectionId={NavigationSections.FAVORITES}
droppableId={ORPHAN_DROPPABLE_ID}
/>
</NavigationMenuItemDroppableSlot>
</StyledList>
)}
compact
sectionId={NavigationSections.FAVORITES}
droppableId={ORPHAN_DROPPABLE_ID}
/>
</NavigationMenuItemDroppableSlot>
</StyledList>
</NavigationMenuItemSection>
);
};
@@ -1,5 +1,6 @@
import { styled } from '@linaria/react';
import { zodResolver } from '@hookform/resolvers/zod';
import { styled } from '@linaria/react';
import { isNonEmptyString } from '@sniptt/guards';
import { useEffect } from 'react';
import { Controller, useForm } from 'react-hook-form';
import { Key } from 'ts-key-enum';
@@ -7,7 +8,7 @@ import { z } from 'zod';
import { SettingsTextInput } from '@/ui/input/components/SettingsTextInput';
import { useLingui } from '@lingui/react/macro';
import { isValidHostname } from 'twenty-shared/utils';
import { isNonEmptyArray, isValidHostname } from 'twenty-shared/utils';
import { Button } from 'twenty-ui/input';
import { themeCssVariables } from 'twenty-ui/theme-constants';
@@ -21,8 +22,14 @@ const StyledLinkContainer = styled.div`
margin-right: ${themeCssVariables.spacing[2]};
`;
const parseHandles = (value: string): string[] =>
value
.split(',')
.map((handle) => handle.trim())
.filter((handle) => isNonEmptyString(handle));
type SettingsAccountsBlocklistInputProps = {
updateBlockedEmailList: (email: string) => void;
updateBlockedEmailList: (emails: string[]) => void;
blockedEmailOrDomainList: string[];
};
@@ -37,29 +44,46 @@ export const SettingsAccountsBlocklistInput = ({
const { t } = useLingui();
const validationSchema = (blockedEmailOrDomainList: string[]) =>
z
.object({
emailOrDomain: z
.string()
.trim()
.pipe(z.email({ error: t`Invalid email or domain` }))
.or(
z.string().refine(
(value) =>
value.startsWith('@') &&
isValidHostname(value.slice(1), {
allowIp: false,
allowLocalhost: false,
}),
t`Invalid email or domain`,
),
)
.refine(
(value) => !blockedEmailOrDomainList.includes(value),
t`Email or domain is already in blocklist`,
),
})
.required();
z.object({
emailOrDomain: z
.string()
.trim()
.refine(
(value) => {
const handles = parseHandles(value);
return (
isNonEmptyArray(handles) &&
handles.every((handle) => {
const isEmail = z.email().safeParse(handle).success;
const isDomain =
handle.startsWith('@') &&
isValidHostname(handle.slice(1), {
allowIp: false,
allowLocalhost: false,
});
return isEmail || isDomain;
})
);
},
t`Invalid email or domain`,
)
.refine(
(value) => {
const handles = parseHandles(value);
return (
isNonEmptyArray(handles) &&
handles.every(
(handle) => !blockedEmailOrDomainList.includes(handle),
)
);
},
t`Email or domain is already in blocklist`,
),
});
const { reset, handleSubmit, control, formState } = useForm<FormInput>({
mode: 'onSubmit',
@@ -70,7 +94,10 @@ export const SettingsAccountsBlocklistInput = ({
});
const submit = handleSubmit((data) => {
updateBlockedEmailList(data.emailOrDomain);
const handles = parseHandles(data.emailOrDomain);
if (isNonEmptyArray(handles)) {
updateBlockedEmailList(handles);
}
});
const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => {
@@ -78,6 +105,7 @@ export const SettingsAccountsBlocklistInput = ({
return;
}
if (e.key === Key.Enter) {
e.preventDefault();
submit();
}
};
@@ -1,14 +1,14 @@
import { type BlocklistItem } from '@/accounts/types/BlocklistItem';
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { useCreateManyRecords } from '@/object-record/hooks/useCreateManyRecords';
import { useDeleteOneRecord } from '@/object-record/hooks/useDeleteOneRecord';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { SettingsAccountsBlocklistInput } from '@/settings/accounts/components/SettingsAccountsBlocklistInput';
import { SettingsAccountsBlocklistTable } from '@/settings/accounts/components/SettingsAccountsBlocklistTable';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useLingui } from '@lingui/react/macro';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { H2Title } from 'twenty-ui/display';
import { Section } from 'twenty-ui/layout';
@@ -34,8 +34,8 @@ export const SettingsAccountsBlocklistSection = () => {
skip: !isDefined(currentWorkspaceMember),
});
const { createOneRecord: createBlocklistItem } =
useCreateOneRecord<BlocklistItem>({
const { createManyRecords: createBlocklistItems } =
useCreateManyRecords<BlocklistItem>({
objectNameSingular: CoreObjectNameSingular.Blocklist,
});
@@ -47,10 +47,15 @@ export const SettingsAccountsBlocklistSection = () => {
deleteBlocklistItem(id);
};
const updateBlockedEmailList = (handle: string) => {
createBlocklistItem({
handle,
workspaceMemberId: currentWorkspaceMember?.id,
const updateBlockedEmailList = (handles: string[]) => {
if (!isDefined(currentWorkspaceMember)) return;
createBlocklistItems({
recordsToCreate: [...new Set(handles)].map((handle) => {
return {
handle,
workspaceMemberId: currentWorkspaceMember.id,
};
}),
});
};
@@ -55,8 +55,8 @@ export const AddToBlocklist: Story = {
await userEvent.click(addToBlocklistButton);
expect(updateBlockedEmailListJestFn).toHaveBeenCalledTimes(1);
expect(updateBlockedEmailListJestFn).toHaveBeenCalledWith(
expect(updateBlockedEmailListJestFn).toHaveBeenCalledWith([
'test@twenty.com',
);
]);
},
};
@@ -5,7 +5,7 @@ import { SettingsAdminConfigVariables } from '@/settings/admin-panel/config-vari
import { SETTINGS_ADMIN_TABS } from '@/settings/admin-panel/constants/SettingsAdminTabs';
import { SETTINGS_ADMIN_TABS_ID } from '@/settings/admin-panel/constants/SettingsAdminTabsId';
import { SettingsAdminHealthStatus } from '@/settings/admin-panel/health-status/components/SettingsAdminHealthStatus';
import { SettingsSkeletonLoader } from '@/settings/components/SettingsSkeletonLoader';
import { SettingsSectionSkeletonLoader } from '@/settings/components/SettingsSectionSkeletonLoader';
import { activeTabIdComponentState } from '@/ui/layout/tab-list/states/activeTabIdComponentState';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { lazy, Suspense } from 'react';
@@ -34,7 +34,7 @@ export const SettingsAdminTabContent = () => {
return <SettingsAdminHealthStatus />;
case SETTINGS_ADMIN_TABS.ENTERPRISE:
return (
<Suspense fallback={<SettingsSkeletonLoader />}>
<Suspense fallback={<SettingsSectionSkeletonLoader />}>
<SettingsEnterprise isAdminPanelTab />
</Suspense>
);

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