Compare commits

..
59 Commits
Author SHA1 Message Date
Paul Rastoinandprastoin 483ef905ff [RenameIndexCommand] Fix orphaned index edge case (#16539)
We've been facing orphaned metadata index that would result in alter
error, now if we encounter one we just delete it
2025-12-12 17:45:46 +01:00
Weikoandprastoin 228ab5f760 Fix rest metadata version missing (#16536)
## Context

The REST pipeline re-fetches/sets the metadata version later in
RestApiBaseHandler#getObjectMetadata by reading from DB and seeding the
cache if it’s missing. That’s the place that actually needs it and
already handles the “undefined” case.

This also mirror the graphql path that was updated 3 weeks ago
2025-12-12 17:45:39 +01:00
Paul Rastoinandprastoin d7533bef8c fix(server): non blocking CleanEmptyStringNullInTextFieldsCommand error (#16529)
# Introduction
Getting query timeout on prod upgrade for workspace that has huge
timeline activity table
2025-12-12 16:06:06 +01:00
WeikoandGitHub bd8ed03990 Add TTL eviction to local data cache (#16510)
We keep different versions of our cache to avoid race conditions but we
never evict stale data. This PR should fix that
2025-12-12 10:14:46 +01:00
Abdul RahmanandGitHub 4b2a604ef0 Filter BAD_USER_INPUT errors from Sentry (#16511)
Closes #15561
2025-12-12 09:08:50 +01:00
Abdul RahmanandGitHub 865265d0d9 fix: Display locked UI for restricted email thread messages (#16512)
Closes #15289 

<img width="410" height="609" alt="Screenshot 2025-12-12 at 1 08 46 AM"
src="https://github.com/user-attachments/assets/34ea73e6-8664-4b59-96ad-3c15d04e148c"
/>
2025-12-12 09:05:52 +01:00
Félix MalfaitandGitHub 5f4f4c0af8 feat(ai): add dashboard tools for AI chat (#16517)
## Summary

- Implements real tools for the dashboard-building skill to create and
manage dashboards through the AI chat interface
- Adds 6 new dashboard tools: `create_complete_dashboard`,
`list_dashboards`, `get_dashboard`, `add_dashboard_widget`,
`update_dashboard_widget`, `delete_dashboard_widget`
- Improves widget configuration robustness with typed Zod schemas and
discriminated unions for graph types

## Key Changes

**New Dashboard Tools:**
- `create_complete_dashboard` - Creates a dashboard with layout, tab,
and widgets in a single call
- `list_dashboards` - Lists all dashboards in the workspace
- `get_dashboard` - Gets full dashboard details including tabs and
widget configurations
- `add_dashboard_widget` - Adds a widget to an existing dashboard tab
- `update_dashboard_widget` - Updates widget properties or configuration
- `delete_dashboard_widget` - Removes a widget from a dashboard

**Widget Configuration Improvements:**
- Typed Zod schemas for each chart type (AGGREGATE, BAR, LINE, PIE)
- Discriminated union validation based on `graphType`
- Widget-level error handling for partial success when creating
dashboards
- Clear documentation about required `objectMetadataId` and field UUIDs

**Skill Documentation Updates:**
- Updated `dashboard-building.skill.ts` with critical guidance about
looking up field metadata first
- Added workflow instructions: use `list_object_metadata_items` before
creating GRAPH widgets
- Practical grid layout recommendations

## Test plan

- [ ] Create a new dashboard via AI chat
- [ ] Verify widgets display data correctly when proper field IDs are
provided
- [ ] Test adding/updating/deleting widgets on existing dashboards
- [ ] Verify error messages are helpful when configuration is incorrect
2025-12-12 07:35:14 +01:00
Félix MalfaitandGitHub 70a78aafe9 feat(ai): replace agent search with skills system (#16513)
## Summary

- Replace the agent search mechanism with a new skills-based system
- Add a `skills` module with predefined skill definitions that the AI
can load on demand
- Remove specialized agents (workflow-builder, data-manipulator,
dashboard-builder, metadata-builder, researcher), keeping only the
helper agent
- Add `recordReferences` to workflow creation tool for chip linking in
the UI

## Changes

### New Skills Module
- `skill-definitions.ts` - Contains 5 skill definitions with detailed
instructions
- `skills.service.ts` - Service to get skills by name
- `load-skill.tool.ts` - Tool for AI to load skills explicitly

### Removed
- `agent-search.tool.ts` - Replaced by skill loading
- Specialized agent definitions (converted to skills)

### Updated
- Chat execution now shows skill catalog in system prompt
- Workflow creation returns `recordReferences` for UI linking

## Test plan
- [ ] Verify AI can load skills using `load_skill` tool
- [ ] Verify skill content is returned correctly
- [ ] Verify workflow creation shows clickable chip in chat
- [ ] Verify helper agent still works
2025-12-12 06:51:25 +01:00
4d90a8f6e3 i18n - docs translations (#16516)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-12 02:07:40 +01:00
14b2487d25 i18n - translations (#16515)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-12 00:01:10 +01:00
aad581a353 i18n - translations (#16514)
Created by Github action

---------

Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 23:21:05 +01:00
Félix MalfaitandGitHub a13727335b feat(ai): refresh AI models with deprecation support and multi-provider defaults (BREAKING: deploy server before frontend please) (#16503)
## Summary

- Add latest AI models from OpenAI (GPT-4.1, o3, o4-mini), Anthropic
(Claude 4.5 Opus/Sonnet/Haiku), and xAI (Grok 4.1)
- Mark deprecated models (GPT-4o, GPT-4o-mini, GPT-4-turbo, Claude Opus
4, Claude Sonnet 4) with a `deprecated` flag
- Split AI models into separate files per provider for better
maintainability
- Support comma-separated default model lists for automatic fallback
across providers (works out of the box for self-hosters regardless of
which provider they configure)
- Filter deprecated models from dropdown selection while keeping them
functional for existing agents

## Changes

### New Models Added
| Provider | Models |
|----------|--------|
| OpenAI | gpt-4.1, gpt-4.1-mini, o3, o4-mini |
| Anthropic | claude-opus-4-5, claude-sonnet-4-5, claude-haiku-4-5 |
| xAI | grok-4-1-fast-reasoning |

### Deprecated Models
- gpt-4o, gpt-4o-mini, gpt-4-turbo (OpenAI)
- claude-opus-4-20250514, claude-sonnet-4-20250514 (Anthropic)

### Config Changes
Default model configs now support comma-separated fallback lists:
-
`DEFAULT_AI_SPEED_MODEL_ID=gpt-4.1-mini,claude-haiku-4-5-20251001,grok-3-mini`
-
`DEFAULT_AI_PERFORMANCE_MODEL_ID=gpt-4.1,claude-sonnet-4-5-20250929,grok-4`

## Test plan

- [x] Unit tests pass
- [x] Typecheck passes
- [x] Lint passes
- [ ] Verify deprecated models don't appear in model dropdowns
- [ ] Verify agents with deprecated models still work correctly
- [ ] Verify default model fallback works when only one provider is
configured
2025-12-11 21:47:38 +01:00
GuillimandGitHub 999bc84b17 fix(server): Favortites, attachments, timeline... (#16509)
fix(server): system objects like Favortites, attachments, timeline...
should be system fields
2025-12-11 18:28:14 +01:00
WeikoandGitHub 083a038f8a Deprecate workspace datasoure (#16507) 2025-12-11 18:27:49 +01:00
Raphaël BosiandGitHub 3dd2684254 Fix dashboard duplication (#16505)
Use `UUID!`
2025-12-11 16:47:51 +01:00
Raphaël BosiandGitHub 2da56c1886 Fix default order by (#16492)
Always apply an order by on the group by
2025-12-11 15:46:48 +01:00
7f9e948e05 i18n - docs translations (#16501)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 15:21:36 +01:00
ec8773437e Improved table flash on reload (#16419)
This PR fixes https://github.com/twentyhq/core-team-issues/issues/1732

There is still some room for improvement but the main goal is reached :
removing the flash effect each time the table virtualization has to
recompute due to an update after initial loading.

# QA

## Create 


https://github.com/user-attachments/assets/1b4fc307-42ce-4ba6-b557-68ac7fcad40f

## Update with sort


https://github.com/user-attachments/assets/e0700f44-8926-4395-8ab8-b32773f21de8

## Update with filter


https://github.com/user-attachments/assets/d325f85a-1a7b-4366-aac3-250331be7575

## Soft delete


https://github.com/user-attachments/assets/2c980183-c637-4aa7-a0ca-244e61396b20

## Restore and destroy


https://github.com/user-attachments/assets/01af9ec7-b442-4686-a1d7-ea1fc543fe62

## Drag & drop


https://github.com/user-attachments/assets/bba76bdb-d4ec-433d-b44e-37fdb9952b06

---------

Co-authored-by: Charles Bochet <charles@twenty.com>
2025-12-11 15:14:20 +01:00
Félix MalfaitandGitHub 3cea19baf4 feat(ai): add view management tools for AI chat (#16495)
## Summary

Adds a new **VIEW** tool category for the AI chat, enabling it to work
with views:

- **get-views**: List views in the workspace, optionally filtered by
object metadata ID
- **get-view-query-parameters**: Convert a view's filters and sorts into
GraphQL query parameters that can be passed to existing `find_*` data
tools
- **create-view**, **update-view**, **delete-view**: CRUD operations for
view management

### Key design decisions

1. **No pagination duplication**: Instead of creating a
`find-records-from-view` tool that would duplicate pagination logic,
`get-view-query-parameters` returns filter/sort parameters that the AI
can pass to existing record-fetching tools.

2. **Permission model**:
- Read tools (get-views, get-view-query-parameters) are available to all
users
   - Write tools require the `VIEW` permission
   - UNLISTED views can only be modified by their creator

3. **Leverages existing utilities**: Uses
`computeRecordGqlOperationFilter` from `twenty-shared` for filter
conversion.

### Files changed

- Added `ViewToolProvider`, `ViewToolsFactory`, and
`ViewQueryParamsService`
- Added `VIEW` to `ToolCategory` enum and tool registry
- Updated `chat-execution.service.ts` to include view tools in the
catalog and pass viewId in browsing context
- Extracted shared `formatValidationErrors` utility to reduce
duplication

## Test plan

- [x] Unit tests for `ViewToolsFactory` 
- [x] Unit tests for `ViewQueryParamsService`
- [x] Lint and typecheck pass
2025-12-11 15:05:42 +01:00
2943125410 i18n - translations (#16500)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 15:01:58 +01:00
Paul RastoinandGitHub f06a5ccacd Remove sync metadata from upgrade (#16491)
# Introduction
Related https://github.com/twentyhq/core-team-issues/issues/1910
From now on the upgrade won't integrate any sync metadata as it's going
to be deprecated very soon
Any updates to about to removes workspace-entity or standard flat entity
will require a dedicated upgrade command, what we've already started
doing during the 1.13 sprint, until we have totally migrated the v2 to
be workspace agnostic
2025-12-11 14:50:56 +01:00
Baptiste DevessierandGitHub 9c1197c0b2 fix: constrain side column width (#16498)
## Before


https://github.com/user-attachments/assets/18bfd8b0-7636-40b2-aa64-24c84ab74009

## After

<img width="3456" height="2160" alt="CleanShot 2025-12-11 at 14 13
23@2x"
src="https://github.com/user-attachments/assets/e10dc51c-afdb-4145-8ed5-0aaadfebb48b"
/>
2025-12-11 14:32:26 +01:00
GuillimandGitHub b83dc3aaff TimelineActivity migration to morph (#15652)
# TimelineActivity migration to morph


- Creates `timelineActivities2` relations on Company, Dashboard, Note,
Opportunity, Person, Task, Workflow, WorkflowRun, and WorkflowVersion
entities with proper metadata and cascade delete behavior.

It was required to create standard fields as well since the
mapObjectMetadataByUniqueIdentifier needs it. otherwise the fields won't
be considered

- Feature Flag `IS_TIMELINE_ACTIVITY_MIGRATED` necessary to have the two
states in parallel. It is used as a stamp once the migration has been
run

- Migration is done using the coreDataSource. Why ?
even though is unsafe to use, the first implementation of the migration
took forever on each workspace. See [this
commit](https://github.com/twentyhq/twenty/pull/15652/commits/477011e8d7d4c580f79ba7ec4a8fb002a3ec86b2)

The plan for this complex migration is as follows :

![plan](https://github.com/user-attachments/assets/51c63ea6-fb0d-40b4-b99d-3e0b35a204e6)
Note: we will need to rename fields in the release 1.12 (there is no
easy way to do all this in one release)
2025-12-11 14:28:26 +01:00
Baptiste DevessierandGitHub c13ef0c4a4 Fix overflow text with tooltip (#16490)
This PR allows the `OverflowingTextWithTooltip` component to take
complex content as parameter. It fixes the buggy display of long records
pinned as favorites.


https://github.com/user-attachments/assets/0224da09-8547-4def-927d-3f545406287e

Created extensive stories to test every case. Cleaned the component.

## Demo


https://github.com/user-attachments/assets/a8f257b5-2baf-42da-897b-a76b8a9ab664
2025-12-11 13:49:56 +01:00
918b145fb5 i18n - docs translations (#16497)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 13:43:50 +01:00
310bf5fe9a i18n - translations (#16496)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 13:02:10 +01:00
Raphaël BosiandGitHub 5af2d37253 [DASHBOARDS] Dashboard duplication (#16291)
## Description

- Created a Dashboard duplication action
- Created a new duplication custom resolver
- Created the service using the v2 of the API
- Created the integration tests following the v2 methodology

## Video QA


https://github.com/user-attachments/assets/e409951a-5946-4da0-91a0-1f7d2ecadb08
2025-12-11 11:15:15 +00:00
6c728fff78 i18n - docs translations (#16489)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 11:21:26 +01:00
5a697e914b i18n - translations (#16487)
Created by Github action

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 11:01:08 +01:00
Félix MalfaitandGitHub bc57b8ee4e feat(ai): add browsing context and fix tool loading (#16476)
## Summary

- Add `BrowsingContext` type to automatically pass what the user is
currently viewing (recordPage or listView) to the AI chat
- Simplify context architecture: remove toggleable context UI, make it
automatic and invisible to the user
- Fix tool loading: add `unionOf` handling in
`getDatabaseToolsForObject` and fix regex ordering so `find_one_*` tools
are properly registered
- Use plural names for find tools (`find_people` vs `find_one_person`)
for better semantics
- Clean up unused components and states

## Changes

### Frontend
- New `BrowsingContext` type and `useGetBrowsingContext` hook to gather
context from Recoil state
- Simplified `useAgentChat` to use the new browsing context
- Removed toggleable context UI components
(`AgentChatContextRecordPreview`, `SendMessageWithRecordsContextButton`,
etc.)
- Removed `isAgentChatCurrentContextActiveState`

### Backend
- New `BrowsingContextType` for recordPage and listView contexts
- Updated `ChatExecutionService` to build context from browsing context
- Fixed `tool-registry.service.ts`:
  - Added `unionOf` handling in permission config
- Fixed regex ordering (`find_one` before `find`) so tools load
correctly
- Use plural names for search tools (`find_people` instead of
`find_person`)

## Test plan

- [x] Typecheck passes
- [x] Lint passes
- [ ] Test AI chat on record page - should show context in system prompt
- [ ] Test AI chat on list view - should show view name and filters
- [ ] Test `find_one_*` tools now load correctly
- [ ] Test `find_*` tools use plural naming
2025-12-11 10:19:27 +01:00
GuillimandGitHub 5daef28328 Morph INPUT integration test (#16464)
- Adding a new target to the test setup suite
- We add the MORPH_RELATION to the list of types we wanna test in the
current test suites

Important:
I noticed the REST API was not working well with Morph relations. I
created [an
issue](https://github.com/twentyhq/core-team-issues/issues/2002) to work
on that. Within that timeframe, I `xdescribed` the related tests

Fixes https://github.com/twentyhq/core-team-issues/issues/1327
2025-12-11 10:10:30 +01:00
Thomas TrompetteandGitHub 7021cd41ea Use rich text editor in form field (#16474)
Fix https://github.com/twentyhq/twenty/issues/15948

Before
<img width="982" height="505" alt="Capture d’écran 2025-12-10 à 17 26
17"
src="https://github.com/user-attachments/assets/661a8205-cb1f-4b4b-8f0a-813c09ac9d16"
/>

After
<img width="982" height="767" alt="Capture d’écran 2025-12-10 à 17 25
49"
src="https://github.com/user-attachments/assets/58fa83a8-890e-42cb-a0bd-c5f6d7890d37"
/>
2025-12-11 08:43:29 +01:00
1077cf1560 i18n - translations (#16482)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-11 01:40:49 +01:00
MarieandGitHub 7a7f36d38c [Fix] Forbid default value removal for non-nullable select field (#16465)
Permanently fixes https://github.com/twentyhq/private-issues/issues/389

On a non-nullable select field, default value should not be removable,
otherwise users won't be able to create new records from the interface.
This PR enforces this in FE and BE.


https://github.com/user-attachments/assets/1dfa2bcc-b9df-4a00-9915-679d36ec1b25
2025-12-11 00:53:48 +01:00
Charles BochetandGitHub bed5270f3c Message/Calendar thread temporary fix during datasource refactoring (#16480)
The current repository implementation require the caller to pass the
permissionConfig which is not the case in messaging and calendar custom
resolver. We are bypassing the permission as fetching the role in the
caller will likely not be needed anymore in the new datasource / orm
implementation
2025-12-11 00:22:48 +01:00
Charles BochetandGitHub 2948880a0b Fix typecheck on messaging (#16477)
As per title
2025-12-10 17:59:45 +01:00
neo773andGitHub b760e6df46 fix process group emails (#16473) 2025-12-10 17:43:50 +01:00
WeikoandGitHub 9bd8f94b3a Refactor global datasource part 3 (#16447)
## Context
Following https://github.com/twentyhq/twenty/pull/16399
Now using the new global orm manager everywhere and returning a
GlobalDatasource/WorkspaceDatasource based on a feature flag.
This means we now need to wrap all our ORM calls within
executeInWorkspaceContext callback (at least for now) so the global
datasource can dynamically hydrate its context via the new store (the
global datasource does not store anything related to workspaces as it is
now a unique singleton). If feature flag is off it still uses local data
stored in the workspace datasource.
2025-12-10 17:17:33 +01:00
Paul RastoinandGitHub 4f13022774 Remaining standard view, view filter/group/field (#16466)
# Introduction
Following https://github.com/twentyhq/twenty/pull/16436
Related https://github.com/twentyhq/core-team-issues/issues/1995

## Objects

### 1. **Task** 📋
- **3 Views**: allTasks, byStatus, assignedToMe
- **20 View Fields** across all views
- **7 View Groups**: 4 for assignedToMe (TODO, IN_PROGRESS, DONE,
empty), 3 for byStatus
- **1 View Filter**: assigneeIsMe

### 2. **Opportunity** 💼
- **2 Views**: allOpportunities, byStage (kanban with MIN aggregation)
- **12 View Fields** (6 per view)
- **5 View Groups**: NEW, SCREENING, MEETING, PROPOSAL, CUSTOMER

### 3. **Company** 🏢
- **1 View**: allCompanies
- **8 View Fields** (includes COUNT, MAX, PERCENTAGE_EMPTY aggregations)

### 4. **Person** 👤
- **1 View**: allPeople
- **10 View Fields** (includes COUNT_UNIQUE_VALUES, PERCENTAGE_EMPTY,
MIN aggregations)

### 5. **Note** 📝
- **1 View**: allNotes
- **5 View Fields**

### 6. **Message** 📧
- **1 View**: allMessages
- **7 View Fields**

### 7. **Message Thread** 💬
- **1 View**: allMessageThreads
- **2 View Fields**

### 8. **Calendar Event** 📅
- **1 View**: allCalendarEvents (with calendar field: startsAt)
- **8 View Fields**

### 9. **Workflow** ⚙️
- **1 View**: allWorkflows
- **6 View Fields**

### 10. **Workflow Run** 🏃
- **1 View**: allWorkflowRuns
- **3 View Fields**

### 11. **Dashboard** 📊
- **1 View**: allDashboards
- **4 View Fields**

---
2025-12-10 16:44:20 +01:00
Lucas BordeauandGitHub 3648fa064c Fixed workflow filter initialization (#16471)
This PR fixes https://github.com/twentyhq/twenty/issues/16165.

The bug was due to a wrong initialization of a record filter, which was
using another object metadata item than the filtered one.

As we can see in the original issue : 

```
...
"fieldMetadataId": "f12697bf-1eba-4061-bdd4-3e8a81172b79"
...
"fieldMetadataId": "658c531c-0c2e-43a1-8f70-4d6266c3841f",
...
```

The fix was to update the hook that returned the default field metadata
item to use for a new filter, and force the caller to tell which object
metadata item to use.
2025-12-10 16:43:20 +01:00
b17e45f272 Feat/wrap nav drawer with overflowing text with tooltip (#16455)
# **feat: Add tooltips for truncated names in navigation components**

### **Summary**

Adds hover tooltips across navigation components so users can view full
names when text is truncated due to limited space.

---

# **Changes Made**

### **Sidebar Navigation**

* Added tooltips to navigation drawer items and menu labels.
* Long workspace or company names now show full text on hover.

### **Top Bar**

* Added tooltip support to the View Picker dropdown header.
* Long view names (e.g., *“AuraML, very very long name”*) now reveal
their full value on hover.

---

# **Implementation**

* Integrated `OverflowingTextWithTooltip` from `twenty-ui/display`.
* Wrapped navigation and view labels with the component.
* Updated layout styles to allow accurate overflow detection.
* Tooltip appears **only** when truncation occurs; short names show no
tooltip.

---

# **User Experience**

Users can hover over any truncated workspace, company, navigation, or
view name to see the complete text—improving clarity, accessibility, and
overall navigation usability.


[https://github.com/user-attachments/assets/97f9ea6c-409c-4ec5-a27c-a7b1c5aa5682](https://github.com/user-attachments/assets/97f9ea6c-409c-4ec5-a27c-a7b1c5aa5682)

---

### **Fixes**

Closes **#16412**

---

---------

Co-authored-by: Devessier <baptiste@devessier.fr>
2025-12-10 16:08:44 +01:00
WeikoandGitHub 0a11add616 Fix sync role v1 (#16459)
## Context
SyncMetadata for role update was broken when those roles had permission
flags in them.
This PR https://github.com/twentyhq/twenty/issues/16365 introduced a
change in all existing standard roles which probably triggered the
update of faulty roles for the first time. Down the line, some
properties from flat were not omit before querying the DB (in this case
permissionFlagIds does not exist as a column in role table)

The fix is definitely not great, this also probably broke the update of
permissionFlags for existing STANDARD roles but it's not subject to
change (It actually never changed. Again, what has been updated was not
the permission flag but a new boolean introduced 2 days ago which forced
the "UPDATE" path in the sync which was probably never triggered before,
or at least not for roles with permission flags which are "quite" new).
Also we are about to remove this whole code in favor of the new
migration v2
2025-12-10 15:45:04 +01:00
Paul RastoinandGitHub 478c753a50 [Validate build and run] Early return if workspace migration has no actions (#16467)
# Introduction
Early returning in `validateBuildAndRun` as the runner even if passed an
empty workspace migration actions array be invalidating dependency
related flat entity maps.
When we will refactor the runner to consume the generic flat entity maps
tools such as
`addFlatEntityToFlatEntityAndRelatedEntityMapsThroughMutationOrThrow` we
will be able to remove the dependency cache invalidation
2025-12-10 14:23:22 +00:00
ac0ec88a87 i18n - docs translations (#16470)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-10 15:21:40 +01:00
Félix MalfaitandGitHub 5df8fd90c3 feat: simplify AI chat architecture and add record links (#16463)
## Summary

This PR significantly simplifies the AI chat architecture by removing
complex routing/planning mechanisms and introduces clickable record
links in AI responses.

## Changes

### AI Chat Architecture Simplification
- **Removed** the entire `ai-chat-router` module (~850 lines) including:
  - Strategy decider service
  - Plan generator service
  - Complex routing logic
- **Removed** agent execution planning services (~700 lines):
  - `agent-execution.service.ts`
  - `agent-plan-executor.service.ts`
  - `agent-tool-generator.service.ts`
- **Added** centralized `ToolRegistryService` for tool management:
  - Builds searchable tool index (database, action, workflow tools)
  - Provides tool lookup by name
  - Supports agent search for loading expertise
- **Added** `ChatExecutionService` as simple replacement:
  - Includes full tool catalog in system prompt
- Pre-loads common tools (find/create/update for company, person,
opportunity, task, note)
  - Uses `load_tools` mechanism for dynamic tool activation
  - Enables native web search by default

### Record References in AI Responses
- Added `recordReferences` field to tool outputs for create, find, and
update operations
- Implemented `[[record:objectName:recordId:displayName]]` syntax for AI
to reference records
- Created `RecordLink` component that renders clickable chips with
object icons
- Integrated record link parsing into the markdown renderer
- Users can now click directly on created/found records in AI responses

### Workflow Agent Fixes
- Fixed cache invalidation issue when creating agents in workflows
- Added default prompt for workflow-created agents to prevent validation
errors
- Relaxed agent validation to only check properties being updated (not
all required properties)

### Code Quality Improvements
- Extracted `getRecordDisplayName` utility that mirrors frontend's
`getLabelIdentifierFieldValue` logic
- Uses object metadata to determine the correct label identifier field
- Handles `FULL_NAME` composite type for person/workspaceMember objects
- Shared across create, find, and update record services

## Net Impact
- **~1,200 lines deleted** (complex routing/planning code)
- **~500 lines added** (simpler tool registry + record links)
- Significantly reduced code complexity
- Better tool discovery through full catalog in system prompt
- Improved UX with clickable record references

## Testing
- Typecheck passes
- Lint passes
- Manual testing of AI chat with record creation and linking
2025-12-10 15:14:12 +01:00
WeikoandGitHub 59b54f254e Fix missing shouldHideEmptyGroups in fromCreateViewInputToFlatViewToCreate typecheck (#16468) 2025-12-10 14:09:31 +00:00
EtienneandGitHub 5e44781be1 Fix line break in richTextV2 field workflow editor (#16462)
Api expect markdown format where '\n' is escape (but not '  \n')

fixes https://github.com/twentyhq/twenty/issues/14976
2025-12-10 14:08:08 +00:00
89cc59d8ab fix(CSV export): update the csv export format for multi-select and arrray fields to match the import template format (#16450)
Closes #16432

Multi-Select and Array fields were exported in an incompatible format:
**Before**: {"0":"VALUE1","1":"VALUE2"} (object with numeric keys)
**After**: ["VALUE1","VALUE2"] (JSON array)

This prevented exported CSV files from being re-imported successfully.

### Changes
Modified useExportProcessRecordsForCSV hook to stringify Multi-Select
and Array fields as JSON arrays before CSV generation

---------

Co-authored-by: Etienne <45695613+etiennejouan@users.noreply.github.com>
2025-12-10 14:07:43 +00:00
Raphaël BosiandGitHub f48adb5f07 Migrate page layout services (#16443)
Last step of the page layout migration:
- Migrate services
- Write integration tests
2025-12-10 13:49:44 +00:00
Abdul RahmanandGitHub 1839f8e946 Fix: Persist hide empty groups setting on backend (BREAKING: deploy server first) (#16385)
Closes #13754 and [core team issue
#414](https://github.com/twentyhq/core-team-issues/issues/414)
2025-12-10 19:10:29 +05:30
Baptiste DevessierandGitHub 20f2ca6864 Prevent seeding empty configuration for dashboard widgets (#16458)
We used to seed widgets with empty configuration when the fields they
required weren't defined. I suggest we only seed properly defined
widgets.
2025-12-10 14:40:02 +01:00
Paul RastoinandGitHub 20879c8147 Standard views tooling (#16436)
# Introduction
In this PR we've introduced the type safe generation tooling for
standard view, view fields, view filters and view groups.
Also generated the ids before such as what was done for object and
fields, it's still temporary as will be replaced by universalIdentifier
mapping afterwards

## Task views
In this PR only implemented the `task` views and view groups, filters
and fields in order to battle test all the generation tools
Will create a dedicated PR that will implement all the remaining views.
2025-12-10 14:29:01 +01:00
1e166ccb53 Fix file preview modal to always open full screen from command menu (#16446)
Closes #16434 




https://github.com/user-attachments/assets/ecf838ea-9f59-42d9-9a2d-97a4fa3b7910

---------

Co-authored-by: Baptiste Devessier <baptiste@devessier.fr>
2025-12-10 13:16:57 +00:00
bc274b9937 i18n - docs translations (#16461)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-10 13:23:06 +01:00
Abdul RahmanandGitHub d932ec28e3 Show friendly message for non-previewable file previews (#16372)
<img width="1507" height="807" alt="Screenshot 2025-12-06 at 12 50
42 AM"
src="https://github.com/user-attachments/assets/9e13d813-76fa-43e9-9dea-ead1dca4ca1f"
/>

Closes #15771
2025-12-10 12:50:29 +01:00
30e3aa5961 i18n - translations (#16457)
Created by Github action

---------

Co-authored-by: github-actions <github-actions@twenty.com>
2025-12-10 11:21:54 +01:00
WeikoandGitHub 915e0fd436 Fix formatData util logging (#16454)
Log introduced in https://github.com/twentyhq/twenty/pull/16389
However this is a util hence cannot simply inject the logger service.
I'm removing the log for now as adding loggerService as a parameter of a
util might not be the right solution (yet)
```typescript
this.logger.warn(`Field metadata for field "${key}" is missing in object metadata ${flatObjectMetadata.nameSingular} for data: ${JSON.stringify(data)}`);
                 ^
TypeError: Cannot read properties of undefined (reading 'logger')
```
2025-12-10 10:53:18 +01:00
Baptiste DevessierandGitHub fd54a2af5c Create fields widget (#16403)
https://github.com/user-attachments/assets/b150815a-5d54-4d4a-b984-20dcf7b29aa7
2025-12-10 10:31:36 +01:00
Paul RastoinandGitHub 7b98804ec1 Fix flat field metadata date type (#16445)
# Introduction
Following https://github.com/twentyhq/twenty/pull/16420
2025-12-09 19:53:36 +01:00
1036 changed files with 36614 additions and 33322 deletions
@@ -32,4 +32,3 @@ export const MyComponent = () => {
</Tab>
</Tabs>
@@ -123,6 +123,14 @@ Figma プラットフォームの学習に関するより包括的な詳細と
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
これは推奨拡張機能の一部です。
## コラボレーション
@@ -158,7 +158,7 @@ SSLHTTPS)は、特定のブラウザ機能が正しく動作するために
2. **.env ファイルを更新**
.env`ファイルを開き、`SERVER_URL\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\`を更新します:
.env`ファイルを開き、`SERVER_URL\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\`を更新します:
```ini
SERVER_URL=http(s)://your-domain-or-ip:your-port
@@ -30,7 +30,7 @@ Twentyは、日常をサポートする最適なデータモデルを形成す
既存のオブジェクトの特性に過ぎないもの(例:会社の「業種」や機会の「ステータス」)はフィールドにします。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。 カテゴリ、ラベル、属性にはフィールドが最適です。
**3. 単独で存在する場合には新しいオブジェクトを作成してください。**
概念が独自のライフサイクル、プロパティ、または関係を持つ場合、それは通常オブジェクトに値します。 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば:
概念が独自のライフサイクル、プロパティ、または関係を持つ場合、それは通常オブジェクトに値します。 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば: 例えば:
- **プロジェクト**:独自の期限、所有者、タスクを持つもの
- **サブスクリプション**:会社、製品、請求書を結ぶもの
@@ -51,7 +51,7 @@ npx nx run twenty-front:storybook:coverage # (needs yarn storybook:serve:dev to
## Технологический стек
The project has a clean and simple stack, with minimal boilerplate code.
Проект имеет чистый и простой стек с минимальным кодом.
**Приложение**
@@ -78,7 +78,7 @@ const PageListeningEnter = () => {
### Прослушивание горячих клавиш в компоненте типа модального окна
For this example we'll use a modal component that listens for the Escape key to tell its parent to close it.
Для этого примера мы используем модальный компонент, который прослушивает ключ Escape, чтобы сообщить своему родителю закрыть его.
В этом случае взаимодействие пользователя меняет область операций.
@@ -45,7 +45,7 @@ sectionInfo: 配置您的Twenty工作空间设置和偏好
刪除您的帳號將永久移除您對所有工作空間的訪問。
刪除您的帳號將永久移除您對所有工作空間的訪問。 此操作無法撤銷,您將失去所有工作空間權限,如您只想退出特定的團隊,應考慮退出個別的工作空間。 刪除您的帳號將永久移除您對所有工作空間的訪問。
刪除您的帳號將永久移除您對所有工作空間的訪問。 此操作無法撤銷,您將失去所有工作空間權限,如您只想退出特定的團隊,應考慮退出個別的工作空間。
</Warning> 刪除您的帳號將永久移除您對所有工作空間的訪問。
</Warning> 刪除您的帳號將永久移除您對所有工作空間的訪問。
刪除您的帳號將永久移除您對所有工作空間的訪問。 此操作無法撤銷,您將失去所有工作空間權限,如您只想退出特定的團隊,應考慮退出個別的工作空間。
</Warning>
@@ -1 +1 @@
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Espaço de Trabalho Suspenso\"],\"Dear {userName},\":[\"Caro \",[\"userName\"],\",\"],\"Hello,\":[\"Olá,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Parece que seu workspace <0>\",[\"workspaceDisplayName\"],\"</0> foi suspenso por \",[\"daysSinceInactive\"],\" dias.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"O workspace será desativado em \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\", e todos os seus dados serão excluídos.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Se quiser continuar usando o Twenty, atualize sua assinatura nos próximos \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\".\"],\"Update your subscription\":[\"Atualize sua assinatura\"],\"Validate domain\":[\"Validar domínio\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Por favor, valide este domínio para permitir que usuários com endereços de e-mail <1>@\",[\"domain\"],\"</1> entrem no seu espaço de trabalho sem precisar de um convite.\"],\"Test email\":[\"Email de teste\"],\"Join your team on Twenty\":[\"Junte-se à sua equipe no Twenty\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) convidou você para se juntar a um espaço de trabalho chamado <1>\",[\"workspaceName\"],\"</1>.\"],\"Accept invite\":[\"Aceitar convite\"],\"Confirm your new email address\":[\"Confirm your new email address\"],\"Confirm your email address\":[\"Confirme seu endereço de e-mail\"],\"Confirm new email\":[\"Confirm new email\"],\"Verify Email\":[\"Verificar e-mail\"],\"Password updated\":[\"Senha atualizada\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Esta é uma confirmação de que a senha da sua conta (\",[\"email\"],\") foi alterada com sucesso em \",[\"formattedDate\"],\".\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Se você não iniciou essa alteração, entre em contato com o proprietário do workspace imediatamente.\"],\"Connect to Twenty\":[\"Conecte-se ao Twenty\"],\"Reset your password 🗝\":[\"Redefina sua senha 🗝\"],\"Set your password 🗝\":[\"Defina sua senha 🗝\"],\"Reset\":[\"Redefinir\"],\"Set\":[\"Definir\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Este link é válido apenas para os próximos \",[\"duration\"],\". Se o link não funcionar, você pode usar o link de verificação de login diretamente:\"],\"Deleted Workspace\":[\"Espaço de Trabalho Excluído\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Seu workspace <0>\",[\"workspaceDisplayName\"],\"</0> foi excluído porque sua assinatura expirou há \",[\"daysSinceInactive\"],\" dias.\"],\"All data in this workspace has been permanently deleted.\":[\"Todos os dados deste workspace foram excluídos permanentemente.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Se quiser usar o Twenty novamente, você pode criar um novo workspace.\"],\"Create a new workspace\":[\"Criar um novo espaço de trabalho\"],\"What is Twenty?\":[\"O que é Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"É um CRM, um software para ajudar empresas a gerenciar seus dados de clientes e os relacionamentos de maneira eficiente.\"],\"Website\":[\"Site\"],\"Visit Twenty's website\":[\"Visite o website do Twenty\"],\"Github\":[\"Github\"],\"Visit Twenty's GitHub repository\":[\"Visite o repositório GitHub do Twenty\"],\"User guide\":[\"Guia do Usuário\"],\"Read Twenty's user guide\":[\"Leia o guia do usuário do Twenty\"],\"Developers\":[\"Desenvolvedores\"],\"Visit Twenty's developer documentation\":[\"Visite a documentação do desenvolvedor do Twenty\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Empresa de Benefício Público\"],\"San Francisco / Paris\":[\"São Francisco / Paris\"]}")as Messages;
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Espaço de Trabalho Suspenso\"],\"Dear {userName},\":[\"Caro \",[\"userName\"],\",\"],\"Hello,\":[\"Olá,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Parece que seu workspace <0>\",[\"workspaceDisplayName\"],\"</0> foi suspenso por \",[\"daysSinceInactive\"],\" dias.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"O workspace será desativado em \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\", e todos os seus dados serão excluídos.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Se quiser continuar usando o Twenty, atualize sua assinatura nos próximos \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\".\"],\"Update your subscription\":[\"Atualize sua assinatura\"],\"Validate domain\":[\"Validar domínio\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Por favor, valide este domínio para permitir que usuários com endereços de e-mail <1>@\",[\"domain\"],\"</1> entrem no seu espaço de trabalho sem precisar de um convite.\"],\"Test email\":[\"Email de teste\"],\"Join your team on Twenty\":[\"Junte-se à sua equipe no Twenty\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) convidou você para se juntar a um espaço de trabalho chamado <1>\",[\"workspaceName\"],\"</1>.\"],\"Accept invite\":[\"Aceitar convite\"],\"Confirm your new email address\":[\"Confirme seu novo endereço de e-mail\"],\"Confirm your email address\":[\"Confirme seu endereço de e-mail\"],\"Confirm new email\":[\"Confirme o novo email\"],\"Verify Email\":[\"Verificar e-mail\"],\"Password updated\":[\"Senha atualizada\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Esta é uma confirmação de que a senha da sua conta (\",[\"email\"],\") foi alterada com sucesso em \",[\"formattedDate\"],\".\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Se você não iniciou essa alteração, entre em contato com o proprietário do workspace imediatamente.\"],\"Connect to Twenty\":[\"Conecte-se ao Twenty\"],\"Reset your password 🗝\":[\"Redefina sua senha 🗝\"],\"Set your password 🗝\":[\"Defina sua senha 🗝\"],\"Reset\":[\"Redefinir\"],\"Set\":[\"Definir\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Este link é válido apenas para os próximos \",[\"duration\"],\". Se o link não funcionar, você pode usar o link de verificação de login diretamente:\"],\"Deleted Workspace\":[\"Espaço de Trabalho Excluído\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Seu workspace <0>\",[\"workspaceDisplayName\"],\"</0> foi excluído porque sua assinatura expirou há \",[\"daysSinceInactive\"],\" dias.\"],\"All data in this workspace has been permanently deleted.\":[\"Todos os dados deste workspace foram excluídos permanentemente.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Se quiser usar o Twenty novamente, você pode criar um novo workspace.\"],\"Create a new workspace\":[\"Criar um novo espaço de trabalho\"],\"What is Twenty?\":[\"O que é Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"É um CRM, um software para ajudar empresas a gerenciar seus dados de clientes e os relacionamentos de maneira eficiente.\"],\"Website\":[\"Site\"],\"Visit Twenty's website\":[\"Visite o website do Twenty\"],\"Github\":[\"Github\"],\"Visit Twenty's GitHub repository\":[\"Visite o repositório GitHub do Twenty\"],\"User guide\":[\"Guia do Usuário\"],\"Read Twenty's user guide\":[\"Leia o guia do usuário do Twenty\"],\"Developers\":[\"Desenvolvedores\"],\"Visit Twenty's developer documentation\":[\"Visite a documentação do desenvolvedor do Twenty\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Empresa de Benefício Público\"],\"San Francisco / Paris\":[\"São Francisco / Paris\"]}")as Messages;
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -91,7 +91,7 @@ msgstr "Aceitar convite"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
msgid "Confirm your new email address"
msgstr ""
msgstr "Confirme seu novo endereço de e-mail"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
@@ -101,7 +101,7 @@ msgstr "Confirme seu endereço de e-mail"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
msgid "Confirm new email"
msgstr ""
msgstr "Confirme o novo email"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
+2 -2
View File
@@ -91,7 +91,7 @@ msgstr "Принять приглашение"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
msgid "Confirm your new email address"
msgstr ""
msgstr "Подтвердите ваш новый адрес электронной почты"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
@@ -101,7 +101,7 @@ msgstr "Подтвердите ваш адрес электронной почт
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
msgid "Confirm new email"
msgstr ""
msgstr "Подтвердить новый адрес эл. почты"
#. js-lingui-explicit-id
#: src/emails/send-email-verification-link.email.tsx
@@ -571,6 +571,7 @@ export type CheckUserExistOutput = {
export type ClientAiModelConfig = {
__typename?: 'ClientAIModelConfig';
deprecated?: Maybe<Scalars['Boolean']>;
inputCostPer1kTokensInCredits: Scalars['Float'];
label: Scalars['String'];
modelId: Scalars['String'];
@@ -695,6 +696,7 @@ export type CoreView = {
objectMetadataId: Scalars['UUID'];
openRecordIn: ViewOpenRecordIn;
position: Scalars['Float'];
shouldHideEmptyGroups: Scalars['Boolean'];
type: ViewType;
updatedAt: Scalars['DateTime'];
viewFields: Array<CoreViewField>;
@@ -986,6 +988,7 @@ export type CreateViewInput = {
objectMetadataId: Scalars['UUID'];
openRecordIn?: InputMaybe<ViewOpenRecordIn>;
position?: InputMaybe<Scalars['Float']>;
shouldHideEmptyGroups?: InputMaybe<Scalars['Boolean']>;
type?: InputMaybe<ViewType>;
visibility?: InputMaybe<ViewVisibility>;
};
@@ -1209,6 +1212,16 @@ export type DuplicateWorkflowVersionStepInput = {
workflowVersionId: Scalars['String'];
};
export type DuplicatedDashboard = {
__typename?: 'DuplicatedDashboard';
createdAt: Scalars['String'];
id: Scalars['UUID'];
pageLayoutId?: Maybe<Scalars['UUID']>;
position: Scalars['Float'];
title?: Maybe<Scalars['String']>;
updatedAt: Scalars['String'];
};
export type EditSsoInput = {
id: Scalars['UUID'];
status: SsoIdentityProviderStatus;
@@ -1295,6 +1308,7 @@ export enum FeatureFlagKey {
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_RECORD_PAGE_LAYOUT_ENABLED = 'IS_RECORD_PAGE_LAYOUT_ENABLED',
IS_STRIPE_INTEGRATION_ENABLED = 'IS_STRIPE_INTEGRATION_ENABLED',
IS_TIMELINE_ACTIVITY_MIGRATED = 'IS_TIMELINE_ACTIVITY_MIGRATED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED',
IS_WORKFLOW_RUN_STOPPAGE_ENABLED = 'IS_WORKFLOW_RUN_STOPPAGE_ENABLED'
}
@@ -1850,6 +1864,7 @@ export type Mutation = {
destroyPageLayoutWidget: Scalars['Boolean'];
disablePostgresProxy: PostgresCredentials;
dismissReconnectAccountBanner: Scalars['Boolean'];
duplicateDashboard: DuplicatedDashboard;
duplicateWorkflow: WorkflowVersionDto;
duplicateWorkflowVersionStep: WorkflowVersionStepChanges;
editSSOIdentityProvider: EditSsoOutput;
@@ -2388,6 +2403,11 @@ export type MutationDismissReconnectAccountBannerArgs = {
};
export type MutationDuplicateDashboardArgs = {
id: Scalars['UUID'];
};
export type MutationDuplicateWorkflowArgs = {
input: DuplicateWorkflowInput;
};
@@ -4478,6 +4498,7 @@ export type UpdateViewInput = {
name?: InputMaybe<Scalars['String']>;
openRecordIn?: InputMaybe<ViewOpenRecordIn>;
position?: InputMaybe<Scalars['Float']>;
shouldHideEmptyGroups?: InputMaybe<Scalars['Boolean']>;
type?: InputMaybe<ViewType>;
visibility?: InputMaybe<ViewVisibility>;
};
@@ -6082,7 +6103,7 @@ export type ViewFilterFragmentFragment = { __typename?: 'CoreViewFilter', id: st
export type ViewFilterGroupFragmentFragment = { __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string };
export type ViewFragmentFragment = { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> };
export type ViewFragmentFragment = { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> };
export type ViewGroupFragmentFragment = { __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null };
@@ -6093,7 +6114,7 @@ export type CreateCoreViewMutationVariables = Exact<{
}>;
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type CreateCoreViewFieldMutationVariables = Exact<{
input: CreateViewFieldInput;
@@ -6234,7 +6255,7 @@ export type UpdateCoreViewMutationVariables = Exact<{
}>;
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type UpdateCoreViewFieldMutationVariables = Exact<{
input: UpdateViewFieldInput;
@@ -6276,7 +6297,7 @@ export type UpdateCoreViewSortMutation = { __typename?: 'Mutation', updateCoreVi
export type FindAllCoreViewsQueryVariables = Exact<{ [key: string]: never; }>;
export type FindAllCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindAllCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindManyCoreViewFieldsQueryVariables = Exact<{
viewId: Scalars['String'];
@@ -6318,14 +6339,14 @@ export type FindManyCoreViewsQueryVariables = Exact<{
}>;
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindOneCoreViewQueryVariables = Exact<{
id: Scalars['String'];
}>;
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } | null };
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: string, name: string, objectMetadataId: string, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: string | null, mainGroupByFieldMetadataId?: string | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: string | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: string | null, viewFields: Array<{ __typename?: 'CoreViewField', id: string, fieldMetadataId: string, viewId: string, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: string, fieldMetadataId: string, operand: ViewFilterOperand, value: any, viewFilterGroupId?: string | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: string, parentViewFilterGroupId?: string | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: string }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: string, fieldMetadataId: string, direction: ViewSortDirection, viewId: string }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: string, isVisible: boolean, fieldValue: string, position: number, viewId: string, createdAt: string, updatedAt: string, deletedAt?: string | null }> } | null };
export type FindOneCoreViewFieldQueryVariables = Exact<{
id: Scalars['String'];
@@ -7178,6 +7199,7 @@ export const ViewFragmentFragmentDoc = gql`
kanbanAggregateOperation
kanbanAggregateOperationFieldMetadataId
mainGroupByFieldMetadataId
shouldHideEmptyGroups
anyFieldFilterValue
calendarFieldMetadataId
calendarLayout
+28 -6
View File
@@ -571,6 +571,7 @@ export type CheckUserExistOutput = {
export type ClientAiModelConfig = {
__typename?: 'ClientAIModelConfig';
deprecated?: Maybe<Scalars['Boolean']>;
inputCostPer1kTokensInCredits: Scalars['Float'];
label: Scalars['String'];
modelId: Scalars['String'];
@@ -695,6 +696,7 @@ export type CoreView = {
objectMetadataId: Scalars['UUID'];
openRecordIn: ViewOpenRecordIn;
position: Scalars['Float'];
shouldHideEmptyGroups: Scalars['Boolean'];
type: ViewType;
updatedAt: Scalars['DateTime'];
viewFields: Array<CoreViewField>;
@@ -969,6 +971,7 @@ export type CreateViewInput = {
objectMetadataId: Scalars['UUID'];
openRecordIn?: InputMaybe<ViewOpenRecordIn>;
position?: InputMaybe<Scalars['Float']>;
shouldHideEmptyGroups?: InputMaybe<Scalars['Boolean']>;
type?: InputMaybe<ViewType>;
visibility?: InputMaybe<ViewVisibility>;
};
@@ -1192,6 +1195,16 @@ export type DuplicateWorkflowVersionStepInput = {
workflowVersionId: Scalars['String'];
};
export type DuplicatedDashboard = {
__typename?: 'DuplicatedDashboard';
createdAt: Scalars['String'];
id: Scalars['UUID'];
pageLayoutId?: Maybe<Scalars['UUID']>;
position: Scalars['Float'];
title?: Maybe<Scalars['String']>;
updatedAt: Scalars['String'];
};
export type EditSsoInput = {
id: Scalars['UUID'];
status: SsoIdentityProviderStatus;
@@ -1278,6 +1291,7 @@ export enum FeatureFlagKey {
IS_PUBLIC_DOMAIN_ENABLED = 'IS_PUBLIC_DOMAIN_ENABLED',
IS_RECORD_PAGE_LAYOUT_ENABLED = 'IS_RECORD_PAGE_LAYOUT_ENABLED',
IS_STRIPE_INTEGRATION_ENABLED = 'IS_STRIPE_INTEGRATION_ENABLED',
IS_TIMELINE_ACTIVITY_MIGRATED = 'IS_TIMELINE_ACTIVITY_MIGRATED',
IS_UNIQUE_INDEXES_ENABLED = 'IS_UNIQUE_INDEXES_ENABLED',
IS_WORKFLOW_RUN_STOPPAGE_ENABLED = 'IS_WORKFLOW_RUN_STOPPAGE_ENABLED'
}
@@ -1823,6 +1837,7 @@ export type Mutation = {
destroyPageLayoutWidget: Scalars['Boolean'];
disablePostgresProxy: PostgresCredentials;
dismissReconnectAccountBanner: Scalars['Boolean'];
duplicateDashboard: DuplicatedDashboard;
duplicateWorkflow: WorkflowVersionDto;
duplicateWorkflowVersionStep: WorkflowVersionStepChanges;
editSSOIdentityProvider: EditSsoOutput;
@@ -2340,6 +2355,11 @@ export type MutationDismissReconnectAccountBannerArgs = {
};
export type MutationDuplicateDashboardArgs = {
id: Scalars['UUID'];
};
export type MutationDuplicateWorkflowArgs = {
input: DuplicateWorkflowInput;
};
@@ -4307,6 +4327,7 @@ export type UpdateViewInput = {
name?: InputMaybe<Scalars['String']>;
openRecordIn?: InputMaybe<ViewOpenRecordIn>;
position?: InputMaybe<Scalars['Float']>;
shouldHideEmptyGroups?: InputMaybe<Scalars['Boolean']>;
type?: InputMaybe<ViewType>;
visibility?: InputMaybe<ViewVisibility>;
};
@@ -4860,7 +4881,7 @@ export type ViewFilterFragmentFragment = { __typename?: 'CoreViewFilter', id: an
export type ViewFilterGroupFragmentFragment = { __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any };
export type ViewFragmentFragment = { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> };
export type ViewFragmentFragment = { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> };
export type ViewGroupFragmentFragment = { __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null };
@@ -4871,7 +4892,7 @@ export type CreateCoreViewMutationVariables = Exact<{
}>;
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type CreateCoreViewMutation = { __typename?: 'Mutation', createCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type CreateCoreViewFieldMutationVariables = Exact<{
input: CreateViewFieldInput;
@@ -5012,7 +5033,7 @@ export type UpdateCoreViewMutationVariables = Exact<{
}>;
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type UpdateCoreViewMutation = { __typename?: 'Mutation', updateCoreView: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } };
export type UpdateCoreViewFieldMutationVariables = Exact<{
input: UpdateViewFieldInput;
@@ -5054,7 +5075,7 @@ export type UpdateCoreViewSortMutation = { __typename?: 'Mutation', updateCoreVi
export type FindAllCoreViewsQueryVariables = Exact<{ [key: string]: never; }>;
export type FindAllCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindAllCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindManyCoreViewFieldsQueryVariables = Exact<{
viewId: Scalars['String'];
@@ -5096,14 +5117,14 @@ export type FindManyCoreViewsQueryVariables = Exact<{
}>;
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindManyCoreViewsQuery = { __typename?: 'Query', getCoreViews: Array<{ __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> }> };
export type FindOneCoreViewQueryVariables = Exact<{
id: Scalars['String'];
}>;
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } | null };
export type FindOneCoreViewQuery = { __typename?: 'Query', getCoreView?: { __typename?: 'CoreView', id: any, name: string, objectMetadataId: any, type: ViewType, key?: ViewKey | null, icon: string, position: number, isCompact: boolean, openRecordIn: ViewOpenRecordIn, kanbanAggregateOperation?: AggregateOperations | null, kanbanAggregateOperationFieldMetadataId?: any | null, mainGroupByFieldMetadataId?: any | null, shouldHideEmptyGroups: boolean, anyFieldFilterValue?: string | null, calendarFieldMetadataId?: any | null, calendarLayout?: ViewCalendarLayout | null, visibility: ViewVisibility, createdByUserWorkspaceId?: any | null, viewFields: Array<{ __typename?: 'CoreViewField', id: any, fieldMetadataId: any, viewId: any, isVisible: boolean, position: number, size: number, aggregateOperation?: AggregateOperations | null, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilters: Array<{ __typename?: 'CoreViewFilter', id: any, fieldMetadataId: any, operand: ViewFilterOperand, value: any, viewFilterGroupId?: any | null, positionInViewFilterGroup?: number | null, subFieldName?: string | null, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }>, viewFilterGroups: Array<{ __typename?: 'CoreViewFilterGroup', id: any, parentViewFilterGroupId?: any | null, logicalOperator: ViewFilterGroupLogicalOperator, positionInViewFilterGroup?: number | null, viewId: any }>, viewSorts: Array<{ __typename?: 'CoreViewSort', id: any, fieldMetadataId: any, direction: ViewSortDirection, viewId: any }>, viewGroups: Array<{ __typename?: 'CoreViewGroup', id: any, isVisible: boolean, fieldValue: string, position: number, viewId: any, createdAt: string, updatedAt: string, deletedAt?: string | null }> } | null };
export type FindOneCoreViewFieldQueryVariables = Exact<{
id: Scalars['String'];
@@ -5339,6 +5360,7 @@ export const ViewFragmentFragmentDoc = gql`
kanbanAggregateOperation
kanbanAggregateOperationFieldMetadataId
mainGroupByFieldMetadataId
shouldHideEmptyGroups
anyFieldFilterValue
calendarFieldMetadataId
calendarLayout
File diff suppressed because it is too large Load Diff
+90 -45
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} lêer(s) het nie opgelaai nie"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} reël} other {{filterRulesCount} reëls}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Na 'n gestelde hoeveelheid tyd"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Laat toe dat gebruikers aanmeld met 'n e-pos en wagwoord."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "'n Fout het voorgekom'}]}```}``` }```{"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "n Interne fout het voorgekom tydens die validering van jou veranderin
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "'n Objek met hierdie naam bestaan reeds"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Goedgekeurde Domeine"
msgid "Arabic"
msgstr "Arabies"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Argieflêers kan nie voorskou word nie. Laai asseblief die lêer af om toegang tot die inhoud daarvan te kry."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Is jy seker jy wil hierdie rekord herstel?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Is jy seker dat jy die rol van hierdie gebruiker van \"{oldRoleLabel}\" na \"{newRoleLabel}\" wil opdateer?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Konfigureer SMTP-instellings om e-posse vanaf u rekening te stuur."
msgid "Configure these DNS records with your domain provider"
msgstr "Stel hierdie DNS-rekords by jou domeinverskaffer op"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigureer hierdie widget om velde te vertoon"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Bevestig verlaagde gradering"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Bevestig rolopdatering"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Bevat"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Konteks"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulatief"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Pas bladsy-uitlegte en UI-struktuur aan"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Pas aan wat hierdie gebruiker kan sien en doen"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Deens"
msgid "Dark"
msgstr "Donker"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Paneelbord suksesvol gedupliseer"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Verwyder"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Verwyder {fieldLabel}-veld?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Verwyder {objectLabel}-objek?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Verwyder API-sleutel"
msgid "Delete dashboard"
msgstr "Verwyder paneelbord"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Verwyder paneelborde"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Laai lêers af"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Laai voorbeeld af"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Los lêer hier..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dupliseer paneelbord"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Voer 'n getal tussen 0 en 59 in"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Voer 'n getal tussen 1 en 60 in"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Evalueer"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Kon nie {translatedMetadataName} skep nie. Verwante {relatedEntityNames}
msgid "Failed to delete jobs. Please try again later."
msgstr "Kon nie werke uitvee nie. Probeer asseblief later weer."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kon nie paneelbord dupliseer nie"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Kon nie prys opdateer nie."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Kon nie rol opdateer nie"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Veld"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Veld verwyder"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "HTTP"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP Versoek"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame Instellings"
msgid "iFrame Widget"
msgstr "iFrame Widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Iframe-konfigurasie word nie ondersteun nie"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indekse"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Inligting"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiaans"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "items"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Lyn grafiek"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Boodskap Sinchronisering is nie beskikbaar nie omdat die diens nie werk
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Boodskappe"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimum reeks"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Minuutwaarde mag nie 60 oorskry nie. Vir intervalle langer as 60 minute, gebruik die \"Ure\"-snellertipe of 'n aangepaste cron-uitdrukking"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Geen land nie"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Geen data"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Geen velde om te vertoon nie"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Geen Resultate"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Geen rol is aan hierdie lid toegewys nie"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objek"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objek verwyder"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Maak oop in"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Maak oop in Rolle"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Bladsy"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "bladsyuitleg"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "bladsyuitleg-oortjie"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "bladsyuitleg-widget"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Permanent verwydering. Voer die aantal dae in."
msgid "Permanently destroy dashboard"
msgstr "Vernietig paneelbord permanent"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Vernietig paneelborde permanent"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7379,7 +7414,7 @@ msgstr "Vooruitvul van jou werksruimte data..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Voorvoegsel"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Voorkom dat dieselfde waarde aan verskillende rekords toegeken word"
msgid "Preview"
msgstr "Voorskou"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Voorskou nie beskikbaar nie"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Verhouding"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Rekord"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Rekord (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Herroep vir hierdie voorwerp"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Soek werksaamhede"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Soekopsies"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Kies die bladsy om te gebruik"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Kies 'n waarde"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Suksesvol saamgevoeg {recordCount} rekords"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Agtervoegsel"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal permanent jou li
msgid "This database value overrides environment settings. "
msgstr "Hierdie databasis waarde oorskry omgewingsinstellings."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Hierdie lêertipe kan nie voorskou word nie. Laai asseblief die lêer af om dit te bekyk."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Dit sal die geskeduleerde planverandering kanselleer en jou huidige plan
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Dit sal die veld en al sy data permanent uit {objectLabel} verwyder. Tik \"yes\" om te bevestig."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Dit sal die objek en al sy rekords permanent verwyder. Tik \"yes\" om te bevestig."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Unieke velde"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "eenheid"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Opdateer"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Opdateer rol"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "فشل تحميل {failedCount} ملف/ملفات"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, zero {{filterRulesCount} قواعد} one {{filterRulesCount} قاعدة} two {{filterRulesCount} قاعدتين} few {{filterRulesCount} قواعد} many {{filterRulesCount} قاعدة} other {{filterRulesCount} قاعدة}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "بعد فترة محددة من الوقت"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "وكيل"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "السماح للمستخدمين بتسجيل الدخول باستخد
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "حدث خطأ"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "حدث خطأ داخلي أثناء التحقق من صحة التغي
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "يوجد بالفعل كائن يحمل هذا الاسم"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "النطاقات المعتمدة"
msgid "Arabic"
msgstr "العربية"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "لا يمكن معاينة ملفات الأرشيف. يرجى تنزيل الملف للوصول إلى محتوياته."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "هل أنت متأكد أنك تريد استعادة هذا السجل
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "هل أنت متأكد من أنك تريد تحديث دور هذا المستخدم من \"{oldRoleLabel}\" إلى \"{newRoleLabel}\"؟"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "قم بتكوين إعدادات SMTP لإرسال رسائل البري
msgid "Configure these DNS records with your domain provider"
msgstr "قم بتكوين سجلات DNS هذه مع موفر النطاقات الخاص بك"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "قم بتهيئة هذه الأداة لعرض الحقول"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "تأكيد الترقية"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "تأكيد تحديث الدور"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "يحتوي"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "السياق"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "تراكمي"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "تخصيص تخطيطات الصفحات وهيكل واجهة المس
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "خصص ما يمكن لهذا المستخدم عرضه وتنفيذه"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "الدانماركية"
msgid "Dark"
msgstr "داكن"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "تم تكرار لوحة القيادة بنجاح"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "حذف"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "حذف حقل {fieldLabel}؟"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "حذف الكائن {objectLabel}؟"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "حذف مفتاح API"
msgid "Delete dashboard"
msgstr "حذف لوحة القيادة"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "حذف لوحات القيادة"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "تنزيل الملفات"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "تنزيل نموذج"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "أسقط الملف هنا..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "تكرار لوحة القيادة"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "أدخل رقمًا بين 0 و 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "أدخل رقمًا بين 1 و 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "جارٍ التقييم"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "فشل في إنشاء {translatedMetadataName}. فشلت عملية ا
msgid "Failed to delete jobs. Please try again later."
msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "فشل في تكرار لوحة القيادة"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "فشل في تحديث السعر."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "فشل في تحديث الدور"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "الحقل"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "تم حذف الحقل"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "وظائف - إعدادات"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "الرسم البياني القياسي"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "طلب HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "إعدادات iFrame"
msgid "iFrame Widget"
msgstr "عنصر واجهة iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "لا يتم دعم تكوين الأداة المضمّنة"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "الفهرسات"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "معلومات"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "الإيطالية"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "العناصر"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "الرسم البياني الخطي"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "مزامنة الرسائل غير متاحة لأن الخدمة متو
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "الرسائل"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "الحد الأدنى للمدى"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "لا يمكن أن تتجاوز قيمة الدقائق 60. بالنسبة للفواصل الزمنية التي تزيد عن 60 دقيقة، استخدم نوع المشغل \"الساعات\" أو تعبير كرون مخصص."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "لا دولة"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "لا توجد بيانات"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "لا توجد حقول لعرضها"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "لا توجد نتائج"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "لم يتم تعيين أي دور لهذا العضو"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "كائن"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "تم حذف الكائن"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "فتح في"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "فتح في الأدوار"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "الصفحة"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "تخطيط الصفحة"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "علامة تبويب تخطيط الصفحة"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "أداة تخطيط الصفحة"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "الحذف الدائم. أدخل عدد الأيام."
msgid "Permanently destroy dashboard"
msgstr "تدمير لوحة القيادة نهائيًا"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "تدمير لوحات القيادة نهائيًا"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "صورة"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "الرسم البياني الدائري"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "تعبئة بيانات بيئة العمل الخاصة بك..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "بادئة"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "منع المستخدمين من تعيين نفس القيمة لسجل
msgid "Preview"
msgstr "معاينة"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "المعاينة غير متاحة"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "النسبة"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "السجل"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "السجل (المعرّف)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "ملغى لهذا الكائن"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "دور"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "ابحث عن العمليات"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "ابحث في الخيارات"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "اختر الورقة لاستخدامها"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "اختر قيمة"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "تم دمج {recordCount} من السجلات بنجاح"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "لاحقة"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذل
msgid "This database value overrides environment settings. "
msgstr "هذه القيمة في قاعدة البيانات تتخطى إعدادات البيئة."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "لا يمكن معاينة هذا النوع من الملفات. يرجى تنزيل الملف لعرضه."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "سيؤدي ذلك إلى إلغاء تغيير الخطة المجدول
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "سيؤدي هذا إلى حذف الحقل وجميع بياناته نهائيًا من {objectLabel}. اكتب \"yes\" للتأكيد."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "سيؤدي هذا إلى حذف الكائن وجميع سجلاته نهائيًا. اكتب \"yes\" للتأكيد."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "الحقول الفريدة"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "وحدة"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "تحديث"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "تحديث الدور"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fitxer(s) no s'ha(n) pogut carregar"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regla} other {{filterRulesCount} regles}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Després d'un temps determinat"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permetre als usuaris iniciar sessió amb un correu electrònic i contras
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "S'ha produït un error"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "S'ha produït un error intern en validar els vostres canvis. Contacteu a
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Ja existeix un objecte amb aquest nom"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Dominis Aprovats"
msgid "Arabic"
msgstr "Àrab"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Els fitxers comprimits no es poden previsualitzar. Si us plau, descarrega el fitxer per accedir al seu contingut."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Esteu segur que voleu restaurar aquest registre?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Segur que voleu actualitzar el rol d'aquest usuari de \"{oldRoleLabel}\" a \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configura la configuració de SMTP per enviar correus electrònics des d
msgid "Configure these DNS records with your domain provider"
msgstr "Configura aquests registres DNS amb el teu proveïdor de domini"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configura aquest giny per mostrar camps"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirmar la reducció"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmeu l'actualització del rol"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Conté"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Context"
@@ -2743,7 +2752,7 @@ msgstr "Personalitza dissenys de pàgina i estructura d'UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalitzeu què pot veure i fer aquest usuari"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danès"
msgid "Dark"
msgstr "Fosc"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Quadre de comandament duplicat correctament"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Elimina"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Eliminar el camp {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Eliminar l'objecte {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Suprimeix la clau d'API"
msgid "Delete dashboard"
msgstr "Suprimir quadre de comandament"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Suprimir quadres de comandament"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Descarregar Arxius"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Descarrega el fitxer de mostra"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Deixa el fitxer aquí..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicar quadre de comandament"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Introdueix un número entre 0 i 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Introdueix un número entre 1 i 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Avaluant"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "No s'ha pogut crear {translatedMetadataName}. La validació relacionada
msgid "Failed to delete jobs. Please try again later."
msgstr "Error al suprimir feines. Torneu-ho a provar més tard."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "No s'ha pogut duplicar el quadre de comandament"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Ha fallat l'actualització del preu."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Ha fallat l'actualització del rol"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Camp"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Camp eliminat"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funcions - Configuració"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Gràfic de mesurador"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Sol·licitud HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Configuració de l'iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "La configuració d'iframe no és compatible"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Índexs"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informació"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italià"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elements"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Gràfic de línies"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "La sincronització de missatges no està disponible perquè el servei es
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Missatges"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Rang mínim"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "El valor del minut no pot superar 60. Per a intervals superiors a 60 minuts, utilitza el tipus de disparador \"Hores\" o una expressió cron personalitzada."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Sense país"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Sense dades"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "No hi ha cap camp per mostrar"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Cap resultat"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "No s'ha assignat cap rol a aquest membre"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objecte"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objecte eliminat"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Obrir en"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Obre en Rols"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Pàgina"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "disseny de pàgina"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "pestanya de disseny de pàgina"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "giny de disseny de pàgina"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Eliminació permanent. Introduïu el nombre de dies."
msgid "Permanently destroy dashboard"
msgstr "Destruir permanentment el quadre de comandament"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Destruir permanentment quadres de comandament"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Fotografia"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Gràfic circular"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Omplint prèviament les dades del teu espai de treball..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefix"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Evitar assignar el mateix valor a diferents registres"
msgid "Preview"
msgstr "Previsualització"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Vista prèvia no disponible"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Ràtio"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Registre"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Registre (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revocat per aquest objecte"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Cerca operacions"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Opcions de cerca"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selecciona el full a utilitzar"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Selecciona un valor"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {s'ha fusionat un registre} other {s'han fusio
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sufix"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Aquesta acció no es pot desfer. Això eliminarà permanentment la teva
msgid "This database value overrides environment settings. "
msgstr "Aquest valor de la base de dades supera la configuració de l'entorn."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Aquest tipus de fitxer no es pot previsualitzar. Si us plau, descarrega el fitxer per veure'l."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Això cancel·larà el canvi de pla programat i mantindrà el teu pla ac
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Això eliminarà permanentment el camp i totes les seves dades de {objectLabel}. Escriu \"yes\" per confirmar."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Això eliminarà permanentment l'objecte i tots els seus registres. Escriu \"yes\" per confirmar."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Camps únics"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unitat"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Actualitza"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Actualitza el rol"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} soubor(y) se nepodařilo nahrát"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} pravidlo} few {{filterRulesCount} pravidla} many {{filterRulesCount} pravidel} other {{filterRulesCount} pravidel}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Po určité době"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Povolit uživatelům přihlášení pomocí e-mailu a hesla."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Došlo k chybě"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Došlo k interní chybě při ověřování vašich změn. Prosím, kont
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Objekt s tímto názvem již existuje"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Schválené domény"
msgid "Arabic"
msgstr "Arabština"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Archivní soubory nelze zobrazit v náhledu. Pro přístup k obsahu si soubor stáhněte."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Opravdu chcete obnovit tento záznam?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Opravdu chcete aktualizovat roli tohoto uživatele z \"{oldRoleLabel}\" na \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Nakonfigurujte nastavení SMTP pro odesílání e-mailů z vašeho účt
msgid "Configure these DNS records with your domain provider"
msgstr "Nakonfigurujte tyto DNS záznamy u svého poskytovatele domény"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Nakonfigurujte tento widget, aby zobrazoval pole."
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Potvrďte zhoršení plánu"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Potvrdit aktualizaci role"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Obsahuje"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Kontext"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulativní"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Přizpůsobte rozložení stránek a strukturu UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Přizpůsobte, co může tento uživatel vidět a provádět"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dánština"
msgid "Dark"
msgstr "Tmavý"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Ovládací panel byl úspěšně duplikován"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Smazat"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Smazat pole {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Smazat objekt {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Smazat API klíč"
msgid "Delete dashboard"
msgstr "Odstranit ovládací panel"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Odstranit ovládací panely"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Stáhnout soubory"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Stáhnout ukázkový soubor"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Přetáhněte soubor sem..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplikovat ovládací panel"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Zadejte číslo mezi 0 a 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Zadejte číslo mezi 1 a 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Vyhodnocování"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Nepodařilo se vytvořit {translatedMetadataName}. Přidružená ověře
msgid "Failed to delete jobs. Please try again later."
msgstr "Nelze smazat úlohy. Prosím, zkuste to znovu později."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nepodařilo se duplikovat ovládací panel"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Nepodařilo se aktualizovat cenu."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Nepodařilo se aktualizovat roli"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Pole"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Pole smazáno"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funkce - Nastavení"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Ukazatelový graf"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP požadavek"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Nastavení iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "IframeConfiguration není podporována"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indexy"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informace"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italština"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "položky"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Liniový graf"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Synchronizace zpráv není dostupná, protože služba nefunguje"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Zprávy"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Žádná země"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Žádná data"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "K zobrazení nejsou žádná pole."
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Žádné výsledky"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Tomuto členovi není přiřazena žádná role."
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekt smazán"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Otevřít v"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Otevřít v sekci Role"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Stránka"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "rozvržení stránky"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "karta Rozložení stránky"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget Rozložení stránky"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Trvalé smazání. Zadejte počet dnů."
msgid "Permanently destroy dashboard"
msgstr "Trvale zničit panel"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Trvale zničit ovládací panely"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Obrázek"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Koláčový graf"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Předvyplňování dat ve vašem pracovním prostoru..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Předpona"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Zabránit uživatelům přiřazovat stejnou hodnotu k různým záznamů
msgid "Preview"
msgstr "Náhled"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Náhled není k dispozici"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Poměr"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Záznam"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Záznam (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Zrušeno pro tento objekt"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "role"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Hledat operace"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Hledat možnosti"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Vyberte list k použití"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Vybrat hodnotu"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Úspěšně sloučeno {recordCount} záznamů"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Přípona"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Tato akce je nevratná. Tímto bude vaše členství v tomto pracovním
msgid "This database value overrides environment settings. "
msgstr "Tato hodnota databáze přepisuje nastavení prostředí."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Tento typ souboru nelze zobrazit v náhledu. Pro zobrazení si soubor stáhněte."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Toto zruší plánovanou změnu plánu a uchová váš současný plán
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Tímto trvale smažete pole a všechna jeho data z {objectLabel}. Pro potvrzení zadejte \"yes\"."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Tímto trvale smažete objekt a všechny jeho záznamy. Pro potvrzení zadejte \"yes\"."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Unikátní pole"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "jednotka"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Aktualizovat"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Aktualizovat roli"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fil(er) mislykkedes at uploade"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regel} other {{filterRulesCount} regler}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Efter en bestemt tidsperiode"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Tillad brugere at logge ind med en e-mail og password."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Der opstod en fejl"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Der opstod en intern fejl under validering af dine ændringer. Kontakt v
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Et objekt med dette navn findes allerede"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Godkendte domæner"
msgid "Arabic"
msgstr "Arabisk"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arkivfiler kan ikke forhåndsvises. Download venligst filen for at få adgang til dens indhold."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Er du sikker på, at du vil gendanne denne post?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Er du sikker på, at du vil ændre denne brugers rolle fra \"{oldRoleLabel}\" til \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Konfigurer SMTP indstillinger for at sende e-mails fra din konto."
msgid "Configure these DNS records with your domain provider"
msgstr "Konfigurer disse DNS-poster med din domæneudbyder"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigurer denne widget til at vise felter"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Bekræft nedgradering"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Bekræft rolleændring"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Indeholder"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Kontekst"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulativ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Tilpas sidelayouts og UI-struktur"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Tilpas, hvad denne bruger kan se og udføre"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dansk"
msgid "Dark"
msgstr "Mørk"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplikeret med succes"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Slet"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Slet feltet {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Slet objektet {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Slet API nøgle"
msgid "Delete dashboard"
msgstr "Slet dashboard"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Slet dashboards"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Download filer"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Download prøvefil"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Slip fil her..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dupliker dashboard"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Indtast et tal mellem 0 og 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Indtast et tal mellem 1 og 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Evaluerer"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Mislykkedes at oprette {translatedMetadataName}. Relateret {relatedEntit
msgid "Failed to delete jobs. Please try again later."
msgstr "Kunne ikke slette jobs. Prøv venligst igen senere."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kunne ikke duplikere dashboard"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Kunne ikke opdatere pris."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Kunne ikke ændre rollen"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Felt"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Felt slettet"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funktioner - Indstillinger"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Målediagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP Anmodning"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-indstillinger"
msgid "iFrame Widget"
msgstr "iFrame-widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "IframeConfiguration understøttes ikke"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indekser"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Info"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiensk"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elementer"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Linje Diagram"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Beskedsynkronisering er ikke tilgængelig, fordi tjenesten er nede"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Beskeder"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimumsgrænse"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Minutværdien må ikke overstige 60. For intervaller på mere end 60 minutter skal du bruge udløsertypen \"Timer\" eller et brugerdefineret cron-udtryk."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Intet land"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Ingen data"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Ingen felter at vise"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Ingen resultater"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Der er ikke tildelt nogen rolle til dette medlem"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekt slettet"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Åbn i"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Åbn i Roller"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,12 +7123,12 @@ msgstr "Side"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "sidelayout"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "Sidelayout-fanen"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -7206,6 +7236,11 @@ msgstr "Permanent sletning. Indtast antal dage."
msgid "Permanently destroy dashboard"
msgstr "Permanent slet dashboard"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Slet dashboards permanent"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Billede"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Cirkeldiagram"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Forudfylder dine arbejdspladsdata..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Præfiks"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Forhindre brugere i at tildele den samme værdi til forskellige poster"
msgid "Preview"
msgstr "Forhåndsvisning"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Forhåndsvisning er ikke tilgængelig"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Forhold"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Registrering"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Post (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Tilbagekaldt for dette objekt"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rolle"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Søg operationer"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Søg i valgmuligheder"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Vælg arket til brug"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Vælg værdi"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {En post blev succesfuldt flettet} other {# po
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffiks"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Denne handling kan ikke fortrydes. Dette vil permanent fjerne dit medlem
msgid "This database value overrides environment settings. "
msgstr "Denne databaseværdi overskriver miljøindstillingerne."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Denne filtype kan ikke forhåndsvises. Download venligst filen for at se den."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Dette vil annullere den planlagte planændring og beholde din nuværende
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Dette vil permanent slette feltet og alle dets data fra {objectLabel}. Skriv \"yes\" for at bekræfte."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Dette vil permanent slette objektet og alle dets poster. Skriv \"yes\" for at bekræfte."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Unikke felter"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "enhed"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Opdater"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Opdater rolle"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+90 -45
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} Datei(en) konnte(n) nicht hochgeladen werden"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} Regel} other {{filterRulesCount} Regeln}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Nach einer festgelegten Zeitspanne"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "Agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Benutzern erlauben, sich mit E-Mail und Passwort anzumelden."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Ein Fehler ist aufgetreten"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Ein interner Fehler ist aufgetreten, während Ihre Änderungen validiert
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Ein Objekt mit diesem Namen existiert bereits"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Genehmigte Domänen"
msgid "Arabic"
msgstr "Arabisch"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Archivdateien können nicht in der Vorschau angezeigt werden. Bitte laden Sie die Datei herunter, um auf ihren Inhalt zuzugreifen."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Sind Sie sicher, dass Sie diesen Datensatz wiederherstellen möchten?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Sind Sie sicher, dass Sie die Rolle dieses Benutzers von \"{oldRoleLabel}\" auf \"{newRoleLabel}\" aktualisieren möchten?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Konfigurieren Sie SMTP-Einstellungen, um E-Mails von Ihrem Konto zu send
msgid "Configure these DNS records with your domain provider"
msgstr "Konfigurieren Sie diese DNS-Einträge bei Ihrem Domainanbieter"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigurieren Sie dieses Widget, um Felder anzuzeigen."
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Herabstufung bestätigen"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Rollenaktualisierung bestätigen"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Enthält"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Kontext"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulativ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Seitenlayouts und UI-Struktur anpassen"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Passen Sie an, was dieser Benutzer einsehen und ausführen darf"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "D\\u00e4nisch"
msgid "Dark"
msgstr "Dunkel"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard erfolgreich dupliziert"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Löschen"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Das Feld {fieldLabel} löschen?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Das Objekt {objectLabel} löschen?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "API-Schlüssel löschen"
msgid "Delete dashboard"
msgstr "Dashboard löschen"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Dashboards löschen"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Dateien herunterladen"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Beispieldatei herunterladen"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Datei hier ablegen..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dashboard duplizieren"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Geben Sie eine Zahl zwischen 0 und 59 ein"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Geben Sie eine Zahl zwischen 1 und 60 ein"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Wird ausgewertet"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Das Erstellen von {translatedMetadataName} ist fehlgeschlagen. Die Valid
msgid "Failed to delete jobs. Please try again later."
msgstr "Aufgaben konnten nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Duplizieren des Dashboards fehlgeschlagen"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Fehler beim Aktualisieren des Preises."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Fehler beim Aktualisieren der Rolle"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Feld"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Feld gelöscht"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "HTTP"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP-Anfrage"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-Einstellungen"
msgid "iFrame Widget"
msgstr "iFrame-Widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Iframe-Konfiguration wird nicht unterstützt"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indizes"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informationen"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italienisch"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "items"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Liniendiagramm"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Nachrichtensynchronisation ist nicht verfügbar, da der Dienst nicht err
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Nachrichten"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Kein Land"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Keine Daten"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Keine Felder zum Anzeigen"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Keine Ergebnisse"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Diesem Mitglied ist keine Rolle zugewiesen"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekt gelöscht"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Öffnen in"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "In Rollen öffnen"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Seite"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "Seitenlayout"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "Seitenlayout-Registerkarte"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "Seitenlayout-Widget"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Dauerhafte Löschung. Geben Sie die Anzahl der Tage ein."
msgid "Permanently destroy dashboard"
msgstr "Dashboard dauerhaft löschen"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Dashboards dauerhaft löschen"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Bild"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Tortendiagramm"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Vorbefüllen Ihrer Arbeitsbereichsdaten..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Präfix"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Verhindern Sie, dass Benutzer denselben Wert verschiedenen Datensätzen
msgid "Preview"
msgstr "Vorschau"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Vorschau nicht verfügbar"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Verhältnis"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Datensatz"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Datensatz (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Zurückgezogen für dieses Objekt"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rolle"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Operationen suchen"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Optionen suchen"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Tabelle zur Verwendung auswählen"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Wert auswählen"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Erfolgreich {recordCount, plural, one {einen Datensatz} other {# Datens
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffix"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihre M
msgid "This database value overrides environment settings. "
msgstr "Dieser Datenbankwert überschreibt die Umgebungsanstellungen."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Dieser Dateityp kann nicht in der Vorschau angezeigt werden. Bitte laden Sie die Datei herunter, um sie anzusehen."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Dies wird die geplante Tarifänderung abbrechen und Ihren aktuellen Tari
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Dadurch werden das Feld und alle zugehörigen Daten aus {objectLabel} dauerhaft gelöscht. Geben Sie zur Bestätigung \"yes\" ein."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Dadurch werden das Objekt und alle seine Datensätze dauerhaft gelöscht. Geben Sie zur Bestätigung \"yes\" ein."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Eindeutige Felder"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "Einheit"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Aktualisieren"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Rolle aktualisieren"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} αρχείο(-α) απέτυχε να μεταφορτωθ
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} κανόνας} other {{filterRulesCount} κανόνες}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Μετά από καθορισμένο χρονικό διάστημα"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "πράκτορας"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Επιτρέψτε στους χρήστες να συνδέονται
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Παρουσιάστηκε ένα σφάλμα"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Παρουσιάστηκε εσωτερικό σφάλμα κατά τη
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Υπάρχει ήδη αντικείμενο με αυτό το όνομα"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Εγκεκριμένοι Τομείς"
msgid "Arabic"
msgstr "Αραβικά"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Τα συμπιεσμένα αρχεία δεν μπορούν να προεπισκοπηθούν. Παρακαλούμε κάντε λήψη του αρχείου για να αποκτήσετε πρόσβαση στα περιεχόμενά του."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρε
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Είστε βέβαιοι ότι θέλετε να ενημερώσετε τον ρόλο αυτού του χρήστη από \"{oldRoleLabel}\" σε \"{newRoleLabel}\";"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Ρυθμίστε τις παραμέτρους SMTP για να στέλ
msgid "Configure these DNS records with your domain provider"
msgstr "Διαμόρφωση αυτών των DNS εγγραφών στον πάροχο του τομέα σας"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Ρυθμίστε αυτό το γραφικό στοιχείο ώστε να εμφανίζει πεδία"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Επιβεβαίωση υποβάθμισης"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Επιβεβαίωση ενημέρωσης ρόλου"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Περιλαμβάνει"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Περιβάλλον"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Σωρευτικό"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Προσαρμογή διατάξεων σελίδας και δομής
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Προσαρμόστε τι μπορεί να βλέπει και να εκτελεί αυτός ο χρήστης"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Δανέζικα"
msgid "Dark"
msgstr "Σκοτεινό"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυχία"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Διαγραφή"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Διαγραφή πεδίου {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Διαγραφή αντικειμένου {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Διαγραφή κλειδιού API"
msgid "Delete dashboard"
msgstr "Διαγραφή πίνακα ελέγχου"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Διαγραφή πινάκων ελέγχου"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Λήψη αρχείων"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Λήψη δείγματος"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Σύρετε το αρχείο εδώ..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Δημιουργία αντιγράφου πίνακα ελέγχου"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Εισάγετε αριθμό μεταξύ 0 και 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Εισάγετε αριθμό μεταξύ 1 και 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Αξιολογείται"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Αποτυχία δημιουργίας του {translatedMetadataName}.
msgid "Failed to delete jobs. Please try again later."
msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Αποτυχία αντιγραφής του πίνακα ελέγχου"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Αποτυχία ενημέρωσης τιμής."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Αποτυχία ενημέρωσης ρόλου"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Πεδίο"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Το πεδίο διαγράφηκε"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Λειτουργίες - Ρυθμίσεις"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Διάγραμμα δείκτη"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Αίτηση HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Ρυθμίσεις iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Η διαμόρφωση iFrame δεν υποστηρίζεται"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Ευρετήρια"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Πληροφορίες"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Ιταλικά"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "items"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Διάγραμμα γραμμής"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Ο συγχρονισμός μηνυμάτων δεν είναι δια
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Μηνύματα"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Χωρίς χώρα"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Δεν υπάρχουν δεδομένα"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Δεν υπάρχουν πεδία προς εμφάνιση"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Χωρίς αποτελέσματα"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Δεν έχει ανατεθεί ρόλος σε αυτό το μέλος"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Αντικείμενο"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Το αντικείμενο διαγράφηκε"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Άνοιγμα με"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Άνοιγμα στους ρόλους"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Σελίδα"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "διάταξη σελίδας"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "καρτέλα διάταξης σελίδας"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "γραφικό στοιχείο διάταξης σελίδας"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Μόνιμη διαγραφή. Εισάγετε τον αριθμό ημ
msgid "Permanently destroy dashboard"
msgstr "Καταστροφή του πίνακα ελέγχου οριστικά"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Οριστική καταστροφή πινάκων ελέγχου"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Εικόνα"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Διάγραμμα πίτας"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Προ-συμπλήρωση των δεδομένων του χώρου
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Πρόθεμα"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Αποτροπή ανάθεσης της ίδιας τιμής σε δι
msgid "Preview"
msgstr "Προεπισκόπηση"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Η προεπισκόπηση δεν είναι διαθέσιμη"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Αναλογία"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Εγγραφή"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Εγγραφή (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Ανακλήθηκε για αυτό το αντικείμενο"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "ρόλος"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Αναζήτηση ενεργειών"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Επιλογές αναζήτησης"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Επιλέξτε το φύλλο που θα χρησιμοποιηθε
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Επιλογή τιμής"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8942,7 +8982,7 @@ msgstr "Επιτυχής συγχώνευση {recordCount} εγγραφών"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Κατάληξη"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9336,6 +9376,11 @@ msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί
msgid "This database value overrides environment settings. "
msgstr "Αυτή η τιμή βάσης δεδομένων υπερισχύει των ρυθμίσεων περιβάλλοντος."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Αυτός ο τύπος αρχείου δεν μπορεί να προεπισκοπηθεί. Παρακαλούμε κάντε λήψη του αρχείου για να το προβάλετε."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9389,12 +9434,12 @@ msgstr "Αυτό θα ακυρώσει την προγραμματισμένη
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Αυτό θα διαγράψει οριστικά το πεδίο και όλα τα δεδομένα του από {objectLabel}. Πληκτρολογήστε \"yes\" για επιβεβαίωση."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Αυτό θα διαγράψει οριστικά το αντικείμενο και όλες τις εγγραφές του. Πληκτρολογήστε \"yes\" για επιβεβαίωση."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9708,7 +9753,7 @@ msgstr "Μοναδικά πεδία"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "μονάδα"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9781,7 +9826,7 @@ msgstr "Ενημέρωση"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Ενημέρωση ρόλου"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+51 -6
View File
@@ -1289,6 +1289,11 @@ msgstr "Approved Domains"
msgid "Arabic"
msgstr "Arabic"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Archive files cannot be previewed. Please download the file to access its contents."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -2194,6 +2199,11 @@ msgstr "Configure SMTP settings to send emails from your account."
msgid "Configure these DNS records with your domain provider"
msgstr "Configure these DNS records with your domain provider"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configure this widget to display fields"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2302,7 +2312,6 @@ msgstr "Contains"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Context"
@@ -2774,6 +2783,11 @@ msgstr "Danish"
msgid "Dark"
msgstr "Dark"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard duplicated successfully"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3121,6 +3135,11 @@ msgstr "Delete API key"
msgid "Delete dashboard"
msgstr "Delete dashboard"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Delete dashboards"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3416,9 +3435,15 @@ msgstr "Drop file here..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr "Duplicate"
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicate Dashboard"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -4306,6 +4331,11 @@ msgstr "Failed to create {translatedMetadataName}. Related {relatedEntityNames}
msgid "Failed to delete jobs. Please try again later."
msgstr "Failed to delete jobs. Please try again later."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Failed to duplicate dashboard"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4993,11 +5023,6 @@ msgstr "iFrame Settings"
msgid "iFrame Widget"
msgstr "iFrame Widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "IframeConfiguration is not supported"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -6512,6 +6537,11 @@ msgstr "No fields available"
msgid "No fields selected"
msgstr "No fields selected"
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "No fields to display"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -7201,6 +7231,11 @@ msgstr "Permanent deletion. Enter the number of days."
msgid "Permanently destroy dashboard"
msgstr "Permanently destroy dashboard"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Permanently destroy dashboards"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7387,6 +7422,11 @@ msgstr "Prevent from assigning the same value to different records"
msgid "Preview"
msgstr "Preview"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Preview Not Available"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -9329,6 +9369,11 @@ msgstr "This action cannot be undone. This will permanently remove your membersh
msgid "This database value overrides environment settings. "
msgstr "This database value overrides environment settings. "
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "This file type cannot be previewed. Please download the file to view it."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "Archivo(s) {failedCount} no se pudo/pudieron subir"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regla} other {{filterRulesCount} reglas}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Después de un tiempo determinado"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agente"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permitir que los usuarios inicien sesión con un correo electrónico y u
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Ocurrió un error"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Ocurrió un error interno al validar sus cambios. Por favor, contacte so
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Ya existe un objeto con este nombre"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Dominios Aprobados"
msgid "Arabic"
msgstr "Árabe"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Los archivos comprimidos no se pueden previsualizar. Descarga el archivo para acceder a su contenido."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "¿Está seguro de que desea restaurar este registro?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "¿Está seguro de que desea actualizar el rol de este usuario de \"{oldRoleLabel}\" a \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configura los ajustes SMTP para enviar correos desde tu cuenta."
msgid "Configure these DNS records with your domain provider"
msgstr "Configure estos registros DNS con su proveedor de dominio"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configura este widget para visualizar campos"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirmar degradación"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmar la actualización del rol"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Contiene"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Contexto"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Acumulado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personalizar diseños de página y estructura de UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalizar lo que este usuario puede ver y realizar"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danés"
msgid "Dark"
msgstr "Oscuro"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Se duplicó el tablero con éxito"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Eliminar"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "¿Eliminar el campo {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "¿Eliminar el objeto {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Eliminar clave API"
msgid "Delete dashboard"
msgstr "Eliminar tablero"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Eliminar tableros"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Descargar archivos"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Descargar archivo de ejemplo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Suelta el archivo aquí..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr "Duplicar"
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicar tablero"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Introduce un número entre 0 y 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Introduce un número entre 1 y 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Evaluando"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Fallo al crear {translatedMetadataName}. La validación de {relatedEntit
msgid "Failed to delete jobs. Please try again later."
msgstr "Error al eliminar trabajos. Por favor, inténtelo de nuevo más tarde."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Error al duplicar el tablero"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Error al actualizar el precio."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Error al actualizar el rol"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Campo"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Campo eliminado"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funciones - Ajustes"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Gráfico de Medidor"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Solicitud HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Configuración de iFrame"
msgid "iFrame Widget"
msgstr "Widget de iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Configuración de iFrame no es compatible"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Índices"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Información"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiano"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elementos"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr "El límite debe ser mayor que 0."
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Gráfico de líneas"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "La sincronización de mensajes no está disponible porque el servicio es
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Mensajes"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Rango mínimo"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "El valor de los minutos no puede exceder 60. Para intervalos superiores a 60 minutos, usa el tipo de activación \"Horas\" o una expresión cron personalizada"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Sin país"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Sin datos"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr "No hay campos seleccionados"
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "No hay campos para visualizar"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Sin resultados"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "No se ha asignado ningún rol a este miembro"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objeto"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objeto eliminado"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Abrir en"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Abrir en Roles"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Página"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "diseño de página"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "pestaña Diseño de página"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget de Diseño de página"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Eliminación permanente. Introduzca el número de días."
msgid "Permanently destroy dashboard"
msgstr "Destruir tablero permanentemente"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Destruir tableros permanentemente"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Foto"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Gráfico de pastel"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Rellenando los datos de su espacio de trabajo..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefijo"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Evitar que los usuarios asignen el mismo valor a diferentes registros"
msgid "Preview"
msgstr "Vista previa"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Vista previa no disponible"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Proporción"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Registro"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Registro (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revocado para este objeto"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Buscar operaciones"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Opciones de búsqueda"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selecciona la hoja a utilizar"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Seleccionar un valor"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Se ha fusionado con éxito {recordCount} regi
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sufijo"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente su me
msgid "This database value overrides environment settings. "
msgstr "Este valor de base de datos anula la configuración del entorno."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Este tipo de archivo no se puede previsualizar. Descarga el archivo para verlo."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Esto cancelará el cambio de plan programado y mantendrá su plan actual
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Esto eliminará permanentemente el campo y todos sus datos de {objectLabel}. Escribe \"yes\" para confirmar."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Esto eliminará permanentemente el objeto y todos sus registros. Escribe \"yes\" para confirmar."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Campos únicos"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unidad"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Actualizar"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Actualizar rol"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} tiedosto(a) ei voitu ladata"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} sääntö} other {{filterRulesCount} sääntöä}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Tietyn ajan kuluttua"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agentti"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Salli käyttäjien kirjautua sisään sähköpostilla ja salasanalla."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Tapahtui virhe"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Sisäinen virhe tapahtui, kun muutoksiasi validoitiin. Ota yhteyttä tuk
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Tämän niminen objekti on jo olemassa"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Hyväksytyt verkkotunnukset"
msgid "Arabic"
msgstr "Arabia"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arkistotiedostoja ei voi esikatsella. Lataa tiedosto, jotta voit tarkastella sen sisältöä."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Oletko varma, että haluat palauttaa tämän tietueen?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Haluatko varmasti päivittää tämän käyttäjän roolin \"{oldRoleLabel}\"-roolista \"{newRoleLabel}\"-rooliin?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Määritä SMTP-asetukset lähettääksesi sähköposteja tililtäsi."
msgid "Configure these DNS records with your domain provider"
msgstr "Määritä nämä DNS-tietueet verkkotunnuksen tarjoajallasi"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Määritä tämä pienoisohjelma näyttämään kenttiä"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Vahvista alentaminen"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Vahvista roolin päivitys"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Sisältää"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Yhteys"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulatiivinen"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Mukauta sivun asetteluja ja käyttöliittymän rakennetta"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Mukauta, mitä tämä käyttäjä voi nähdä ja tehdä"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Tanska"
msgid "Dark"
msgstr "Tumma"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Hallintapaneeli monistettiin onnistuneesti"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Poista"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Poistetaanko {fieldLabel}-kenttä?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Poistetaanko {objectLabel}-objekti?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Poista API-avain"
msgid "Delete dashboard"
msgstr "Poista hallintapaneeli"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Poista hallintapaneelit"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Lataa tiedostoja"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Lataa esimerkkitiedosto"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Pudota tiedosto tähän..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Monista hallintapaneeli"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Syötä luku 0:n ja 59:n väliltä"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Syötä luku 1:n ja 60:n väliltä"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Arvioidaan"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Luonti epäonnistui {translatedMetadataName}. Liittyvä {relatedEntityNa
msgid "Failed to delete jobs. Please try again later."
msgstr "Epäonnistui töiden poistamisessa. Yritä myöhemmin uudelleen."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Hallintapaneelin monistaminen epäonnistui"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Hinnan päivittäminen epäonnistui."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Roolin päivitys epäonnistui"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Kenttä"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Kenttä poistettu"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Toiminnot - Asetukset"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Mittarikaavio"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP Pyyntö"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-asetukset"
msgid "iFrame Widget"
msgstr "iFrame-pienoisohjelma"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "iFrame-asetusta ei tueta"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indeksit"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Tiedot"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italia"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "kohteet"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Viivakaavio"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Viestisynkronointi ei ole käytettävissä, koska palvelu on poissa käy
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Viestit"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimirajoitus"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Minuuttiarvo ei voi ylittää 60:tä. Yli 60 minuutin väleillä käytä \"Tunnit\"-laukaisintyyppiä tai mukautettua cron-lauseketta"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Ei maata"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Ei tietoa"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Ei näytettäviä kenttiä"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Ei tuloksia"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Tälle jäsenelle ei ole määritetty roolia"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objekti"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekti poistettu"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Avaa kohteessa"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Avaa Roolit-näkymässä"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Sivu"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "sivun asettelu"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "sivun asettelun välilehti"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "sivun asettelun widget"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Pysyvä poistaminen. Anna päivien määrä."
msgid "Permanently destroy dashboard"
msgstr "Poista hallintapaneeli pysyvästi"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Poista hallintapaneelit pysyvästi"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Kuva"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Ympyräkaavio"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Esitäytetään työtilasi tietoja..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Etuliite"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Estä käyttäjiä antamasta samaa arvoa eri tietueille"
msgid "Preview"
msgstr "Esikatselu"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Esikatselu ei ole käytettävissä"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Suhde"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Tietue"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Tietue (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Peruutettu tälle kohteelle"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rooli"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Etsi toimintoja"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Hakuvaihtoehdot"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Valitse käytettävä arkki"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Valitse arvo"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Onnistuneesti yhdistetty {recordCount} tietue
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Jälkiliite"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Tätä toimintoa ei voi peruuttaa. Tämä poistaa jäsenyytesi pysyväst
msgid "This database value overrides environment settings. "
msgstr "Tämä tietokanta-arvo ohittaa ympäristöasetukset."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Tätä tiedostotyyppiä ei voi esikatsella. Lataa tiedosto, jotta voit tarkastella sitä."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Tämä peruuttaa aikataulutetun suunnitelman muutoksen ja pitää nykyis
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Tämä poistaa pysyvästi kentän ja kaikki sen tiedot objektista {objectLabel}. Kirjoita \"yes\" vahvistaaksesi."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Tämä poistaa pysyvästi objektin ja kaikki sen tietueet. Kirjoita \"yes\" vahvistaaksesi."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Yksilölliset kentät"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "yksikkö"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Päivitä"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Päivitä rooli"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+88 -43
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fichier a échoué lors du téléchargement"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} règle} other {{filterRulesCount} règles}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Après un temps défini"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permettre aux utilisateurs de se connecter avec un courriel et un mot de
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Une erreur s'est produite"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Une erreur interne s\\u0027est produite lors de la validation de vos mod
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Un objet avec ce nom existe déjà"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Domaines approuvés"
msgid "Arabic"
msgstr "Arabe"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Les fichiers d'archive ne peuvent pas être prévisualisés. Veuillez télécharger le fichier pour accéder à son contenu."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Êtes-vous sûr de vouloir restaurer cet enregistrement ?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Êtes-vous sûr de vouloir mettre à jour le rôle de cet utilisateur de \"{oldRoleLabel}\" à \"{newRoleLabel}\" ?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configurez les paramètres SMTP pour envoyer des emails depuis votre com
msgid "Configure these DNS records with your domain provider"
msgstr "Configurer ces enregistrements DNS avec votre fournisseur de domaine"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configurez ce widget pour afficher des champs"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirmer une rétrogradation"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmer la mise à jour du rôle"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Contient"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Contexte"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Cumulé"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personnaliser la disposition des pages et la structure de l'interface ut
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personnalisez ce que cet utilisateur peut voir et effectuer"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danois"
msgid "Dark"
msgstr "Sombre"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Tableau de bord dupliqué avec succès"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Supprimer"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Supprimer le champ {fieldLabel} ?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Supprimer l'objet {objectLabel} ?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Supprimer la clé API"
msgid "Delete dashboard"
msgstr "Supprimer le tableau de bord"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Supprimer les tableaux de bord"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Télécharger les fichiers"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Télécharger l'exemple"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Déposez le fichier ici..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dupliquer le tableau de bord"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Entrez un nombre entre 0 et 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Entrez un nombre entre 1 et 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Évaluation en cours"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Échec de la création de {translatedMetadataName}. La validation de l'e
msgid "Failed to delete jobs. Please try again later."
msgstr "Échec de la suppression des tâches. Veuillez réessayer plus tard."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Échec de la duplication du tableau de bord"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Échec de la mise à jour du prix."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Échec de la mise à jour du rôle"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Champ"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Champ supprimé"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Requête HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Paramètres iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Configuration iFrame non prise en charge"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Index"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informations"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italien"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "éléments"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5980,7 +6005,7 @@ msgstr "La synchronisation des messages n'est pas disponible car le service est
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Messages"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Aucun pays"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Pas de données"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Aucun champ à afficher"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Aucun résultat"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Aucun rôle na été attribué à ce membre"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objet"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objet supprimé"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Ouvrir dans"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Ouvrir dans Rôles"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Page"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "mise en page"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "onglet Mise en page"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget de mise en page"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Suppression permanente. Entrez le nombre de jours."
msgid "Permanently destroy dashboard"
msgstr "Détruire définitivement le tableau de bord"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Détruire définitivement les tableaux de bord"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7379,7 +7414,7 @@ msgstr "Préremplissage des données de votre espace de travail..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Préfixe"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Empêcher d'assigner la même valeur à différents enregistrements"
msgid "Preview"
msgstr "Aperçu"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Aperçu non disponible"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Ratio"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Enregistrer"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Enregistrement (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Révoqué pour cet objet"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rôle"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Rechercher des opérations"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Options de recherche"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Sélectionnez la feuille à utiliser"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Sélectionner une valeur"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Fusion réussie de {recordCount} enregistreme
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffixe"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Cette action est irréversible. Cela supprimera définitivement votre ap
msgid "This database value overrides environment settings. "
msgstr "Cette valeur de base de données remplace les paramètres d'environnement."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Ce type de fichier ne peut pas être prévisualisé. Veuillez télécharger le fichier pour l'afficher."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Cela annulera le changement de plan prévu et conservera votre plan actu
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Cela supprimera définitivement le champ et toutes ses données de {objectLabel}. Saisissez \"yes\" pour confirmer."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Cela supprimera définitivement l'objet et tous ses enregistrements. Saisissez \"yes\" pour confirmer."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Champs uniques"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unité"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Mettre à jour"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Mettre à jour le rôle"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
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
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} קובץ(ים) לא הצליחו להיטען"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} כלל} two {{filterRulesCount} כללים} many {{filterRulesCount} כללים} other {{filterRulesCount} כללים}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "לאחר פרק זמן קבוע"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "סוכן"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "אפשר למשתמשים להיכנס עם דוא\"ל וסיסמה."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "אירעה שגיאה"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "אירעה שגיאה פנימית בעת אימות השינויים ש
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "אובייקט בשם זה כבר קיים"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "דומיינים מאושרים"
msgid "Arabic"
msgstr "ערבית"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "לא ניתן להציג תצוגה מקדימה של קובצי ארכיון. יש להוריד את הקובץ כדי לגשת לתוכנו."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "האם אתה בטוח שברצונך לשחזר את הרשומה הז
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "האם אתה בטוח/ה שברצונך לעדכן את תפקיד המשתמש הזה מ-\"{oldRoleLabel}\" ל-\"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "הגדר הגדרות SMTP לשליחת אימיילים מהחשבון
msgid "Configure these DNS records with your domain provider"
msgstr "הגדר את רשומות ה-DNS הללו אצל ספק הדומיין שלך"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "הגדירו את הווידג'ט הזה כדי להציג שדות"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "יש לאשר שדרוג לאחור"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "אישור עדכון התפקיד"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "כולל"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "הקשר"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "מצטבר"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "התאם אישית את פריסות הדף ומבנה ה-UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "התאם אישית מה המשתמש הזה יכול לראות ולבצע"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "דנית"
msgid "Dark"
msgstr "כהה"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "לוח הבקרה שוכפל בהצלחה"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "מחק"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "למחוק את השדה {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "למחוק את האובייקט {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "מחק מפתח API"
msgid "Delete dashboard"
msgstr "מחק לוח מחוונים"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "מחק לוחות בקרה"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "הורדת קבצים"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "הורד קובץ לדוגמה"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "שחרר קובץ כאן..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "שכפל לוח בקרה"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "הזן מספר בין 0 ל-59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "הזן מספר בין 1 ל-60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "מתבצעת הערכה"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "נכשל ביצירת {translatedMetadataName}. אימות {relatedEntit
msgid "Failed to delete jobs. Please try again later."
msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוחר יותר."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "שכפול לוח הבקרה נכשל"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "העדכון של המחיר נכשל."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "העדכון של התפקיד נכשל"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "שדה"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "השדה נמחק"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "פונקציות - הגדרות"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "תרשים מד"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "בקשת HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "הגדרות iFrame"
msgid "iFrame Widget"
msgstr "ווידג'ט iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "תצורת iFrame אינה נתמכת"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "אינדקסים"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "מידע"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "איטלקית"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "פריטים"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "תרשים קו"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "סנכרון הודעות אינו זמין מאחר שהשירות אי
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "הודעות"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "טווח מינימלי"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "ערך הדקה לא יכול לעלות על 60. עבור מרווחים העולים על 60 דקות, השתמשו בסוג הטריגר \"שעות\" או בביטוי cron מותאם אישית"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "אין מדינה"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "אין נתונים"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "אין שדות להצגה"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "אין תוצאות"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "לא הוקצה תפקיד לחבר זה"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "אובייקט"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "האובייקט נמחק"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "פתח ב"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "פתח בתפקידים"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "דף"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "פריסת עמוד"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "לשונית פריסת עמוד"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "יישומון פריסת עמוד"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "מחיקה קבועה. הזן את מספר הימים."
msgid "Permanently destroy dashboard"
msgstr "להשמיד לצמיתות את לוח הבקרה"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "להשמיד לצמיתות לוחות בקרה"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "תמונה"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "תרשים עוגה"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "ממלא את נתוני סביבת העבודה שלך מראש..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "קידומת"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "למנוע ממשתמשים להקצות את אותו הערך לרשו
msgid "Preview"
msgstr "תצוגה מקדימה"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "תצוגה מקדימה אינה זמינה"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "יחס"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "רשומה"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "רשומה (מזהה)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "בוטל עבור אובייקט זה"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "תפקיד"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "חפש פעולות"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "אפשרויות חיפוש"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "בחר את הגיליון לשימוש"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "בחר ערך"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "נמזגו בהצלחה {recordCount} רשומות"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "סיומת"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "לא ניתן לבטל פעולה זו. זה יסיר לצמיתות א
msgid "This database value overrides environment settings. "
msgstr "ערך בסיס הנתונים הזה גובר על הגדרות הסביבה."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "לא ניתן להציג תצוגה מקדימה עבור סוג קובץ זה. יש להוריד את הקובץ כדי לצפות בו."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "זה יבטל את החלפת התכנית המתוכננת וישאיר
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "פעולה זו תמחק לצמיתות את השדה ואת כל הנתונים שלו מתוך {objectLabel}. הקלד \"yes\" כדי לאשר."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "פעולה זו תמחק לצמיתות את האובייקט ואת כל הרשומות שלו. הקלד \"yes\" כדי לאשר."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "שדות מיוחדים"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "יחידה"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "עדכן"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "עדכון תפקיד"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fájl feltöltése nem sikerült"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} szabály} other {{filterRulesCount} szabály}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Egy meghatározott idő elteltével"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "ügynök"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Engedélyezze a felhasználóknak a bejelentkezést e-mail és jelszó s
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Hiba történt"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Belső hiba történt a változtatások ellenőrzése során. Kérjük,
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Már létezik ilyen nevű objektum"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Jóváhagyott tartományok"
msgid "Arabic"
msgstr "Arab"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Az archívumok nem tekinthetők meg előnézetben. Töltse le a fájlt, hogy hozzáférjen a tartalmához."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Biztos, hogy vissza akarja állítani ezt a rekordot?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Biztosan frissíteni szeretné ennek a felhasználónak a szerepkörét a(z) \"{oldRoleLabel}\" szerepkörről a(z) \"{newRoleLabel}\" szerepkörre?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Állítsa be az SMTP beállításokat, hogy e-maileket küldhessen a fi
msgid "Configure these DNS records with your domain provider"
msgstr "Konfigurálja ezeket a DNS-rekordokat a domain szolgáltatójával"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigurálja ezt a widgetet a mezők megjelenítéséhez"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Csomagcsökkentés megerősítése"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Szerepkör frissítésének megerősítése"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Tartalmazza"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Összefüggés"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Halmozott"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Oldal elrendezések és felhasználói felület struktúra testreszabás
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Szabja testre, hogy ez a felhasználó mit láthat és mit tehet."
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dán"
msgid "Dark"
msgstr "Sötét"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Irányítópult sikeresen duplikálva"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Törlés"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Törli a(z) {fieldLabel} mezőt?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Törli a(z) {objectLabel} objektumot?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "API kulcs törlése"
msgid "Delete dashboard"
msgstr "Irányítópult törlése"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Irányítópultok törlése"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Fájlok letöltése"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Minta letöltése"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Fájl áthúzása ide..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Irányítópult duplikálása"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Adjon meg egy számot 0 és 59 között"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Adjon meg egy számot 1 és 60 között"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Értékelés folyamatban"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Nem sikerült létrehozni {translatedMetadataName}. A kapcsolódó {rela
msgid "Failed to delete jobs. Please try again later."
msgstr "Nem sikerült törölni az állásokat. Kérjük, próbálja meg újra később."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nem sikerült duplikálni az irányítópultot"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Az ár frissítése sikertelen."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "A szerepkör frissítése sikertelen"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Mező"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Mező törölve"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funkciók - Beállítások"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Mérőműszer diagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP kérés"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame beállítások"
msgid "iFrame Widget"
msgstr "iFrame widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Az IframeConfiguration nem támogatott"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indexek"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Információk"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Olasz"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elemek"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Vonaldiagram"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Az üzenetszinkronizáció nem érhető el, mert a szolgáltatás le van
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Üzenetek"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimális tartomány"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "A perc értéke nem haladhatja meg a 60-at. 60 percnél hosszabb intervallumokhoz használja az \"Órák\" triggertípust vagy egy egyéni cron-kifejezést"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Nincs ország"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Nincs adat"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Nincs megjeleníthető mező"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Nincs találat"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Ehhez a taghoz nincs szerepkör hozzárendelve"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objektum"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objektum törölve"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Megnyitás itt"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Megnyitás a Szerepkörökben"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Oldal"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "oldalelrendezés"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "Oldalelrendezés lap"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "Oldalelrendezés widget"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Végleges törlés. Írja be a napok számát."
msgid "Permanently destroy dashboard"
msgstr "Irányítópult végleges megsemmisítése"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Irányítópultok végleges megsemmisítése"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7379,7 +7414,7 @@ msgstr "Az Ön munkaterületének adatainak előkészítése..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Előtag"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Megakadályozza ugyanazon érték hozzárendelését különböző rekor
msgid "Preview"
msgstr "Előnézet"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Az előnézet nem érhető el"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Arány"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Rekord"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Rekord (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Visszavonva ehhez az objektumhoz"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "szerepkör"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Műveletek keresése"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Keresési beállítások"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Válassza ki a használni kívánt lapot"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Érték kiválasztása"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Sikeresen összevont {recordCount} rekordot"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Utótag"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Ez a művelet nem visszavonható. Ez véglegesen eltávolítja a tagság
msgid "This database value overrides environment settings. "
msgstr "Ez az adatbázis-érték felülírja a környezeti beállításokat. "
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Ez a fájltípus nem tekinthető meg előnézetben. Töltse le a fájlt a megtekintéséhez."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Ez törli az ütemezett csomagváltoztatást, és megtartja a jelenlegi
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Ez véglegesen törli a mezőt és az összes adatát a(z) {objectLabel} objektumból. A megerősítéshez írja be, hogy \"igen\"."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Ez véglegesen törli az objektumot és annak összes rekordját. A megerősítéshez írja be, hogy \"igen\"."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Egyedi mezők"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "mértékegység"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Frissítés"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Szerepkör frissítése"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+90 -45
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} file(s) non sono stati caricati"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regola} other {{filterRulesCount} regole}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Dopo un determinato periodo di tempo"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agente"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Consenti agli utenti di accedere con e-mail e password."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Si è verificato un errore"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Si è verificato un errore interno durante la convalida delle modifiche.
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Esiste già un oggetto con questo nome"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Domini approvati"
msgid "Arabic"
msgstr "Arabo"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "I file archivio non possono essere visualizzati in anteprima. Scarica il file per accedere al contenuto."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Sei sicuro di voler ripristinare questo record?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Sei sicuro di voler aggiornare il ruolo di questo utente da \"{oldRoleLabel}\" a \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configura le impostazioni SMTP per inviare email dal tuo account."
msgid "Configure these DNS records with your domain provider"
msgstr "Configura questi record DNS con il tuo fornitore di dominio"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configura questo widget per visualizzare i campi"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Conferma il downgrade"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Conferma aggiornamento del ruolo"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Contiene"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Contesto"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Cumulativo"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personalizza layout di pagina e struttura UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalizza ciò che questo utente può visualizzare ed eseguire"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danese"
msgid "Dark"
msgstr "Scuro"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Cruscotto duplicato con successo"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Elimina"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Elimina il campo {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Elimina l'oggetto {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Elimina chiave API"
msgid "Delete dashboard"
msgstr "Elimina cruscotto"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Elimina cruscotti"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Scarica file"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Scarica file di esempio"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Trascina il file qui..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplica cruscotto"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Immettere un numero tra 0 e 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Immettere un numero tra 1 e 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Valutazione in corso"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Mancato tentativo di creare {translatedMetadataName}. Validazione di {re
msgid "Failed to delete jobs. Please try again later."
msgstr "Impossibile eliminare i lavori. Per favore riprova più tardi."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Impossibile duplicare il cruscotto"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Impossibile aggiornare il prezzo."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Impossibile aggiornare il ruolo"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Campo"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Campo eliminato"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funzioni - Impostazioni"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Grafico a Indicatore"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Richiesta HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Impostazioni iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "La configurazione di iFrame non è supportata"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indici"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informazioni"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiano"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elementi"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Grafico a Linea"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "La sincronizzazione dei messaggi non è disponibile perché il servizio
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Messaggi"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Nessun paese"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Nessun dato"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Nessun campo da visualizzare"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Nessun risultato"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Nessun ruolo assegnato a questo membro"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Oggetto"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Oggetto eliminato"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Aprire in"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Apri in Ruoli"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7098,12 +7128,12 @@ msgstr ""
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "scheda layout di pagina"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget layout di pagina"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Cancellazione permanente. Inserisci il numero di giorni."
msgid "Permanently destroy dashboard"
msgstr "Distruggi definitivamente il cruscotto"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Distruggi definitivamente i cruscotti"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Immagine"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Grafico a Torta"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Precompilazione dei dati del tuo spazio di lavoro..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefisso"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Impedisci di assegnare lo stesso valore a record diversi"
msgid "Preview"
msgstr "Anteprima"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Anteprima non disponibile"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Rapporto"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Registro"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Record (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revocato per questo oggetto"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "ruolo"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Cerca operazioni"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Cerca opzioni"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Seleziona il foglio da utilizzare"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Seleziona un valore"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Unione completata di {recordCount} record"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffisso"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Questa azione non può essere annullata. Questo rimuoverà definitivamen
msgid "This database value overrides environment settings. "
msgstr "Questo valore del database sovrascrive le impostazioni dell'ambiente."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Questo tipo di file non può essere visualizzato in anteprima. Scarica il file per visualizzarlo."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Questo annullerà il cambio di piano programmato e manterrà il tuo pian
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Questo eliminerà definitivamente il campo e tutti i suoi dati dall'oggetto {objectLabel}. Digita \"yes\" per confermare."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Questo eliminerà definitivamente l'oggetto e tutti i suoi record. Digita \"yes\" per confermare."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Campi unici"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unità"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Aggiorna"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Aggiorna ruolo"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} ファイルのアップロードに失敗しました"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} 件のルール} other {{filterRulesCount} 件のルール}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "一定時間経過後"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "エージェント"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "ユーザーがメールとパスワードでサインインできるよ
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "エラーが発生しました"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "変更を検証中に内部エラーが発生しました。サポート
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "この名前のオブジェクトはすでに存在します。"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "承認されたドメイン"
msgid "Arabic"
msgstr "アラビア語"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "アーカイブファイルはプレビューできません。内容にアクセスするにはファイルをダウンロードしてください。"
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "このレコードを復元しますか?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "このユーザーのロールを「{oldRoleLabel}」から「{newRoleLabel}」に更新してもよろしいですか?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "アカウントからメールを送信するには、SMTP設定を構
msgid "Configure these DNS records with your domain provider"
msgstr "ドメインプロバイダーでこれらのDNSレコードを設定する"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "フィールドを表示するには、このウィジェットを設定してください"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "ダウングレードを確認"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "ロールの更新を確認"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "含む"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "コンテキスト"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "累積"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "ページレイアウトとUI構造のカスタマイズ"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "このユーザーが閲覧・操作できる内容をカスタマイズ"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "デンマーク語"
msgid "Dark"
msgstr "\\\\u30c0\\\\u30fc\\\\u30af"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "ダッシュボードが正常に複製されました"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "削除"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "{fieldLabel} フィールドを削除しますか?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "{objectLabel} オブジェクトを削除しますか?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "APIキーを削除"
msgid "Delete dashboard"
msgstr "ダッシュボードを削除"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "ダッシュボードを削除"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "ファイルをダウンロード"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "サンプルファイルをダウンロード"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "ここにファイルをドロップしてください…"
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "ダッシュボードを複製"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "0 から 59 の間の数字を入力してください"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "1 から 60 の間の数字を入力してください"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "評価中"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "{translatedMetadataName}の作成に失敗しました。関連する{re
msgid "Failed to delete jobs. Please try again later."
msgstr "ジョブの削除に失敗しました。後でもう一度お試しください。"
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "ダッシュボードの複製に失敗しました"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "価格の更新に失敗しました。"
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "ロールの更新に失敗しました。"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "フィールド"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "フィールドを削除しました"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "機能 - 設定"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "ゲージチャート"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTPリクエスト"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame 設定"
msgid "iFrame Widget"
msgstr "iFrame ウィジェット"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Iframe設定はサポートされていません"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "インデックス"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "情報"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "イタリア語"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "アイテム"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "ラインチャート"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "メッセージ同期は、サービスがダウンしているため利
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "メッセージ"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "最小範囲"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "分の値は60を超えることはできません。60分を超える間隔の場合は、\"Hours\"トリガータイプまたはカスタムのcron式を使用してください。"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "国なし"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "データなし"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "表示するフィールドがありません"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "結果なし"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "このメンバーには役割が割り当てられていません"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "オブジェクト"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "オブジェクトを削除しました"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "で開く"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "役割で開く"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "ページ"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "ページレイアウト"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "ページレイアウトタブ"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "ページレイアウトウィジェット"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "永続的な削除。日数を入力してください。"
msgid "Permanently destroy dashboard"
msgstr "ダッシュボードを永久に削除"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "ダッシュボードを永久に削除"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "写真"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "パイチャート"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "ワークスペースデータの事前入力..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "接頭辞"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "異なるレコードに同じ値を割り当てるのを防ぐ"
msgid "Preview"
msgstr "プレビュー"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "プレビューは利用できません"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "比率"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "記録"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "レコード(ID"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "このオブジェクトの取り消し"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "役割"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "操作を検索"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "検索オプション"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "使用するシートを選択"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "値を選択"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount} 件のレコードが正常にマージされました"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "接尾辞"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "この操作は取り消せません。これにより、ワークスペ
msgid "This database value overrides environment settings. "
msgstr "このデータベース値は環境設定を上書きします。"
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "このファイル形式はプレビューできません。表示するにはファイルをダウンロードしてください。"
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "これによりスケジュールされたプランの変更がキャン
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "これにより、{objectLabel} からフィールドとそのすべてのデータが完全に削除されます。確認するには「yes」と入力してください。"
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "これにより、オブジェクトとそのすべてのレコードが完全に削除されます。確認するには「yes」と入力してください。"
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "一意のフィールド"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "単位"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "更新"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "役割を更新"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount}개의 파일 업로드 실패"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount}개 규칙} other {{filterRulesCount}개 규칙}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "설정된 시간 이후"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "에이전트"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "이메일과 비밀번호로 로그인 허용."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "오류가 발생했습니다"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "내부 오류가 발생하여 변경 사항을 검증할 수 없습니
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "이 이름을 가진 객체가 이미 존재합니다"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "승인된 도메인"
msgid "Arabic"
msgstr "아랍어"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "압축 파일은 미리 볼 수 없습니다. 파일을 다운로드하여 내용을 확인하세요."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "이 기록을 복원하시겠습니까?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "이 사용자의 역할을 \"{oldRoleLabel}\"에서 \"{newRoleLabel}\"(으)로 업데이트하시겠습니까?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "이메일을 보내기 위해 SMTP 설정을 구성하십시오."
msgid "Configure these DNS records with your domain provider"
msgstr "도메인 제공업체와 함께 이 DNS 기록 구성하기"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "필드를 표시하도록 이 위젯을 구성하세요"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "다운그레이드 확인"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "역할 업데이트 확인"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "포함"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "컨텍스트"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "누적"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "페이지 레이아웃 및 UI 구조 맞춤화"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "이 사용자가 열람하고 수행할 수 있는 항목을 사용자 지정하세요"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "덴마크어"
msgid "Dark"
msgstr "다크"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "대시보드가 성공적으로 복제되었습니다"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "삭제"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "{fieldLabel} 필드를 삭제하시겠습니까?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "{objectLabel} 객체를 삭제하시겠습니까?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "API 키 삭제"
msgid "Delete dashboard"
msgstr "대시보드 삭제"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "대시보드 삭제"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "파일 다운로드"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "샘플 파일 다운로드"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "파일을 여기에 드롭하세요..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "대시보드 복제"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "0에서 59 사이의 숫자를 입력하세요"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "1에서 60 사이의 숫자를 입력하세요"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "평가 중"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "{translatedMetadataName} 생성에 실패하였습니다. 관련 {relate
msgid "Failed to delete jobs. Please try again later."
msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "대시보드 복제에 실패했습니다"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "가격 업데이트 실패."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "역할 업데이트 실패"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "필드"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "필드 삭제됨"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "기능 - 설정"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "게이지 차트"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP 요청"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame 설정"
msgid "iFrame Widget"
msgstr "iFrame 위젯"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "iFrameConfiguration은 지원되지 않습니다"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "색인"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "정보"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "이탈리아어"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "항목"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "선형 차트"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "메시지 동기화가 불가능합니다, 서비스가 중단되었습
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "메시지"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "최소 범위"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "분 값은 60을 초과할 수 없습니다. 60분보다 긴 간격에는 \"시간\" 트리거 유형 또는 사용자 지정 cron 식을 사용하세요."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "국가 없음"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "데이터 없음"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "표시할 필드가 없습니다"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "결과 없음"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "이 멤버에게 역할이 할당되지 않았습니다."
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "개체"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "객체 삭제됨"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "열기"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "역할에서 열기"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "페이지"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "페이지 레이아웃"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "페이지 레이아웃 탭"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "페이지 레이아웃 위젯"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "영구 삭제. 날짜를 입력하세요."
msgid "Permanently destroy dashboard"
msgstr "대시보드 영구 삭제"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "대시보드 영구 삭제"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "사진"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "파이 차트"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "작업 영역 데이터 미리 채우기..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "접두사"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "기록에 동일한 값을 할당하지 못하도록 방지"
msgid "Preview"
msgstr "미리보기"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "미리 보기를 사용할 수 없음"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "비율"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "기록"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "레코드(ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "이 객체에서 취소됨"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "역할"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "작업 검색"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "검색 옵션"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "사용할 시트 선택"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "값 선택"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount}개의 레코드가 성공적으로 병합되었습니다"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "접미사"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 이 워크스
msgid "This database value overrides environment settings. "
msgstr "이 데이터베이스 값은 환경 설정을 덮어씁니다."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "이 파일 형식은 미리 볼 수 없습니다. 보려면 파일을 다운로드하세요."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "이것은 예정된 플랜 변경을 취소하고 현재 플랜을 유
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "이 작업을 수행하면 {objectLabel}에서 해당 필드와 모든 데이터가 영구적으로 삭제됩니다. 확인하려면 \"yes\"를 입력하세요."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "이 작업을 수행하면 해당 객체와 모든 레코드가 영구적으로 삭제됩니다. 확인하려면 \"yes\"를 입력하세요."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "고유 필드"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "단위"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "업데이트"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "역할 업데이트"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} bestand(en) kon(den) niet worden geüpload"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regel} other {{filterRulesCount} regels}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Na een bepaalde tijdsperiode"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Sta gebruikers toe om in te loggen met een e-mailadres en wachtwoord."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Er is een fout opgetreden"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Er is een interne fout opgetreden bij het valideren van uw wijzigingen.
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Er bestaat al een object met deze naam"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Goedgekeurde Domeinen"
msgid "Arabic"
msgstr "Arabisch"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Voor archiefbestanden is geen voorbeeldweergave mogelijk. Download het bestand om toegang tot de inhoud te krijgen."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Weet je zeker dat je dit record wilt herstellen?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Weet u zeker dat u de rol van deze gebruiker wilt wijzigen van \"{oldRoleLabel}\" naar \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configureer SMTP-instellingen om e-mails vanuit uw account te verzenden.
msgid "Configure these DNS records with your domain provider"
msgstr "Configureer deze DNS-records bij je domeinprovider"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configureer deze widget om velden weer te geven"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Bevestig downgrade"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Rolwijziging bevestigen"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Bevat"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Context"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Cumulatief"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Pas paginalay-outs en UI-structuur aan"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Pas aan wat deze gebruiker mag bekijken en uitvoeren"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Deens"
msgid "Dark"
msgstr "Donker"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashboard succesvol gedupliceerd"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Verwijderen"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Veld {fieldLabel} verwijderen?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Object {objectLabel} verwijderen?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "API-sleutel verwijderen"
msgid "Delete dashboard"
msgstr "Verwijder dashboard"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Verwijder dashboards"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Bestanden Downloaden"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Voorbeeldbestand downloaden"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Bestand hier neerzetten..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dupliceer dashboard"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Voer een getal in tussen 0 en 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Voer een getal in tussen 1 en 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Bezig met evalueren"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Maken van {translatedMetadataName} mislukt. Validatie van gerelateerde {
msgid "Failed to delete jobs. Please try again later."
msgstr "Fout bij het verwijderen van taken. Probeer het later opnieuw."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Het dupliceren van het dashboard is mislukt"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Fout bij het bijwerken van de prijs."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Fout bij het bijwerken van de rol"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Veld"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Veld verwijderd"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP-aanvraag"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-instellingen"
msgid "iFrame Widget"
msgstr "iFrame-widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "IframeConfiguratie wordt niet ondersteund"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indexen"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informatie"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiaans"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "items"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Lijngrafiek"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Berichtensynchronisatie is niet beschikbaar omdat de dienst niet actief
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Berichten"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Min bereik"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "De minuutwaarde mag niet groter zijn dan 60. Voor intervallen langer dan 60 minuten gebruikt u het triggertype \"Uren\" of een aangepaste cronexpressie"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Geen land"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Geen gegevens"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Geen velden om weer te geven"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Geen resultaten"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Er is geen rol aan dit lid toegewezen."
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Object"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Object verwijderd"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Openen met"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Open in Rollen"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Pagina"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "pagina-indeling"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "tabblad pagina-indeling"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget pagina-indeling"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Definitieve verwijdering. Voer het aantal dagen in."
msgid "Permanently destroy dashboard"
msgstr "Dashboard definitief vernietigen"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Dashboards definitief vernietigen"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Afbeelding"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Cirkeldiagram"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Uw werkruimtegegevens vooraf invullen..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Voorvoegsel"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Voorkom dat dezelfde waarde aan verschillende records wordt toegewezen"
msgid "Preview"
msgstr "Voorbeeld"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Voorbeeldweergave niet beschikbaar"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Verhouding"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Record"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Record (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Ingetrokken voor dit object"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Zoek bewerkingen"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Opties zoeken"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selecteer het te gebruiken blad"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Selecteer een waarde"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Succesvol {recordCount} records samengevoegd"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Achtervoegsel"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Deze actie kan niet ongedaan worden gemaakt. Dit zal permanent uw lidmaa
msgid "This database value overrides environment settings. "
msgstr "Deze databasewaarde overschrijft omgevingsinstellingen."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Voor dit bestandstype is geen voorbeeldweergave mogelijk. Download het bestand om het te bekijken."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Dit zal de geplande planverandering annuleren en je huidige plan ({planK
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Hiermee wordt het veld met alle bijbehorende gegevens definitief uit {objectLabel} verwijderd. Typ \"yes\" om te bevestigen."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Hiermee worden het object en alle bijbehorende records definitief verwijderd. Typ \"yes\" om te bevestigen."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Unieke velden"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "eenheid"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Bijwerken"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Rol bijwerken"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fil(er) kunne ikke lastes opp"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regel} other {{filterRulesCount} regler}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Etter et spesifisert tidsrom"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Tillat brukere å logge inn med en e-post og passord."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "En feil oppstod"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "En intern feil oppsto mens endringene dine ble validert. Vennligst konta
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Et objekt med dette navnet finnes allerede"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Godkjente domener"
msgid "Arabic"
msgstr "Arabisk"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arkivfiler kan ikke forhåndsvises. Last ned filen for å få tilgang til innholdet."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Er du sikker på at du vil gjenopprette denne posten?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Er du sikker på at du vil oppdatere rollen til denne brukeren fra \"{oldRoleLabel}\" til \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Konfigurer SMTP-innstillinger for å sende e-poster fra kontoen din."
msgid "Configure these DNS records with your domain provider"
msgstr "Konfigurer disse DNS-postene med domenetilbyderen din"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigurer denne widgeten for å vise felt"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Bekreft nedgradering"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Bekreft rolleoppdatering"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Inneholder"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Kontekst"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulativ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Tilpass sideoppsett og UI-struktur"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Tilpass hva denne brukeren kan se og utføre"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dansk"
msgid "Dark"
msgstr "Mørk"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Dashbordet ble duplisert"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Slett"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Slett feltet {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Slett objektet {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Slett API-n\\fkkel"
msgid "Delete dashboard"
msgstr "Slett dashbord"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Slett dashbord"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Last ned filer"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Last ned eksempelfil"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Slipp fil her..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Dupliser dashbord"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Skriv inn et tall mellom 0 og 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Skriv inn et tall mellom 1 og 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Evaluerer"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Mislyktes i å opprette {translatedMetadataName}. Validering av relatert
msgid "Failed to delete jobs. Please try again later."
msgstr "Mislyktes å slette jobber. Vennligst prøv igjen senere."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Kunne ikke duplisere dashbordet"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Kunne ikke oppdatere pris."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Kunne ikke oppdatere rolle"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Felt"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Felt slettet"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funksjoner - Innstillinger"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Målediagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP-forespørsel"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-innstillinger"
msgid "iFrame Widget"
msgstr "iFrame-widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "iFrame-konfigurasjon støttes ikke"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indekser"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Info"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiensk"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elementer"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Linjediagram"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Meldingssynk er ikke tilgjengelig fordi tjenesten er nede"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Meldinger"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Min rekkevidde"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Minuttverdien kan ikke overskride 60. For intervaller på mer enn 60 minutter, bruk utløsertypen \"Timer\" eller et egendefinert cron-uttrykk."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Intet land"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Ingen data"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Ingen felt å vise"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Ingen resultater"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Ingen rolle er tildelt dette medlemmet"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekt slettet"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Åpne i"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Åpne i roller"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Side"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "sideoppsett"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "fanen Sideoppsett"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "Sideoppsett-widget"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Permanent sletting. Skriv inn antall dager."
msgid "Permanently destroy dashboard"
msgstr "Permanent ødelegg dashbord"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Slett dashbord permanent"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Bilde"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Sirkeldiagram"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Forh\\u00e5ndsfyller arbeidsomr\\u00e5dedataene dine..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefiks"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Hindre brukere fra å tildele samme verdi til forskjellige oppføringer"
msgid "Preview"
msgstr "Forhåndsvisning"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Forhåndsvisning er ikke tilgjengelig"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Forhold"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Oppføring"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Oppføring (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Tilbakekalt for dette objektet"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rolle"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Søk operasjoner"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Søkealternativer"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Velg arket som skal brukes"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Velg verdi"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Vellykket sammenslått {recordCount} oppføringer"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffiks"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Denne handlingen kan ikke angres. Dette vil permanent fjerne medlemskape
msgid "This database value overrides environment settings. "
msgstr "Denne databaseverdien overstyrer miljøinnstillinger."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Denne filtypen kan ikke forhåndsvises. Last ned filen for å se den."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Dette vil avbryte den planlagte planendringen og beholde din nåværende
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Dette vil permanent slette feltet og alle tilhørende data fra {objectLabel}. Skriv «ja» for å bekrefte."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Dette vil permanent slette objektet og alle tilhørende oppføringer. Skriv «ja» for å bekrefte."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Unike felt"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "enhet"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Oppdater"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Oppdater rolle"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+86 -41
View File
@@ -851,7 +851,7 @@ msgstr "Po upływie określonego czasu"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Zezwalaj użytkownikom na logowanie się za pomocą adresu e-mail i has
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Wystąpił błąd"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Wystąpił błąd wewnętrzny podczas walidacji zmian. Skontaktuj się z
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Obiekt o tej nazwie już istnieje"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Zatwierdzone domeny"
msgid "Arabic"
msgstr "arabski"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Nie można wyświetlić podglądu archiwów. Pobierz plik, aby uzyskać dostęp do jego zawartości."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Czy na pewno chcesz przywrócić ten rekord?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Czy na pewno chcesz zaktualizować rolę tego użytkownika z \"{oldRoleLabel}\" na \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Skonfiguruj ustawienia SMTP, aby wysyłać e-maile z Twojego konta."
msgid "Configure these DNS records with your domain provider"
msgstr "Skonfiguruj te rekody DNS u swojego dostawcy domeny"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Skonfiguruj ten widżet, aby wyświetlał pola"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Potwierdź obniżenie"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Potwierdź aktualizację roli"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Zawiera"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Kontekst"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Narastająco"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Dostosuj układy stron i strukturę interfejsu użytkownika"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Dostosuj to, co ten użytkownik może widzieć i robić"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "duński"
msgid "Dark"
msgstr "Ciemne"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Panel został zduplikowany pomyślnie"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Usuń"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Usuń pole {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Usuń obiekt {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Usuń klucz API"
msgid "Delete dashboard"
msgstr "Usuń dashboard"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Usuń panele"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Pobierz pliki"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Pobierz przykładowy plik"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Upuść plik tutaj..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplikuj panel"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Wprowadź liczbę między 0 a 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Wprowadź liczbę między 1 a 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Ocenianie"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Nie udało się utworzyć {translatedMetadataName}. Powiązana walidacja
msgid "Failed to delete jobs. Please try again later."
msgstr "Nie udało się usunąć zadań. Proszę spróbować ponownie później."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Nie udało się zduplikować panelu"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Nie udało się zaktualizować ceny."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Nie udało się zaktualizować roli"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Pole"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Pole usunięte"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Żądanie HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Ustawienia iFrame"
msgid "iFrame Widget"
msgstr "Widżet iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Konfiguracja iFrame nie jest obsługiwana"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indeksy"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informacje"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Włoski"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elementy"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Wykres liniowy"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Synchronizacja wiadomości jest niedostępna, ponieważ usługa jest wy
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Wiadomości"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Brak kraju"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Brak danych"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Brak pól do wyświetlenia"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Brak wyników"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Nie przypisano temu członkowi żadnej roli"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Obiekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Obiekt usunięty"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Otwórz w"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Otwórz w sekcji Role"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Strona"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "rozmieszczenie strony"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "karta układu strony"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widżet układu strony"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Stałe usunięcie. Wprowadź liczbę dni."
msgid "Permanently destroy dashboard"
msgstr "Trwale zniszcz panel"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Trwale zniszcz panele"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Zdjęcie"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Wykres kołowy"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7392,6 +7427,11 @@ msgstr "Zapobiegaj przypisywaniu tej samej wartości do różnych rekordów"
msgid "Preview"
msgstr "Podgląd"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Podgląd niedostępny"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Proporcja"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Rekord"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Rekord (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Cofnięto dla tego obiektu"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rola"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Szukaj operacji"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Szukaj opcji"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Wybierz arkusz do użycia"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Wybierz wartość"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -9332,6 +9372,11 @@ msgstr "Ta czynność nie może zostać cofnięta. Spowoduje to trwałe usunięc
msgid "This database value overrides environment settings. "
msgstr "Ta wartość z bazy danych zastępuje ustawienia środowiska."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Tego typu pliku nie można wyświetlić w podglądzie. Pobierz plik, aby go wyświetlić."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Anulacja planowanej zmiany planu i zachowanie obecnego planu ({planKeyWo
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Spowoduje to trwałe usunięcie pola i wszystkich jego danych z obiektu {objectLabel}. Wpisz \"yes\", aby potwierdzić."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Spowoduje to trwałe usunięcie obiektu i wszystkich jego rekordów. Wpisz \"yes\", aby potwierdzić."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9777,7 +9822,7 @@ msgstr "Zaktualizuj"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Zaktualizuj rolę"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+51 -6
View File
@@ -1289,6 +1289,11 @@ msgstr ""
msgid "Arabic"
msgstr ""
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr ""
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -2194,6 +2199,11 @@ msgstr ""
msgid "Configure these DNS records with your domain provider"
msgstr ""
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr ""
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2302,7 +2312,6 @@ msgstr ""
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr ""
@@ -2774,6 +2783,11 @@ msgstr ""
msgid "Dark"
msgstr ""
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr ""
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3121,6 +3135,11 @@ msgstr ""
msgid "Delete dashboard"
msgstr ""
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr ""
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3416,9 +3435,15 @@ msgstr ""
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr ""
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -4306,6 +4331,11 @@ msgstr ""
msgid "Failed to delete jobs. Please try again later."
msgstr ""
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr ""
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4993,11 +5023,6 @@ msgstr ""
msgid "iFrame Widget"
msgstr ""
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr ""
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -6512,6 +6537,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr ""
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -7201,6 +7231,11 @@ msgstr ""
msgid "Permanently destroy dashboard"
msgstr ""
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr ""
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7387,6 +7422,11 @@ msgstr ""
msgid "Preview"
msgstr ""
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr ""
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -9327,6 +9367,11 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr ""
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr ""
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} arquivo(s) não conseguiu(aram) ser carregado(s)"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regra} other {{filterRulesCount} regras}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Após um determinado período de tempo"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agente"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permitir que os usuários façam login com e-mail e senha."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Ocorreu um erro"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Ocorreu um erro interno ao validar suas mudanças. Por favor, entre em c
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Um objeto com o mesmo nome já existe"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Domínios Aprovados"
msgid "Arabic"
msgstr "\\u00c1rabe"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arquivos compactados não podem ser visualizados. Faça o download do arquivo para acessar seu conteúdo."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Tem certeza de que deseja restaurar este registro?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Tem certeza de que deseja atualizar a função deste usuário de \"{oldRoleLabel}\" para \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configure as configurações de SMTP para enviar e-mails da sua conta."
msgid "Configure these DNS records with your domain provider"
msgstr "Configure estes registros DNS com o provedor de domínio"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configure este widget para exibir campos"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirmar downgrade"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmar atualização da função"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Contém"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Contexto"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Acumulado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personalizar layouts de página e estrutura de interface"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalize o que este usuário pode visualizar e executar"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dinamarqu\\u00eas"
msgid "Dark"
msgstr "Escuro"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Excluir"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Excluir o campo {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Excluir o objeto {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Excluir Chave API"
msgid "Delete dashboard"
msgstr "Excluir painel"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Excluir painéis"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Baixar Arquivos"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Baixar arquivo de exemplo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Solte o arquivo aqui..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicar painel"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Insira um número entre 0 e 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Insira um número entre 1 e 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Avaliando"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Falha ao criar {translatedMetadataName}. A validação de {relatedEntity
msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao excluir trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Falha ao duplicar o painel"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Falha ao atualizar preço."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Falha ao atualizar a função"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Campo"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Campo excluído"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funções - Configurações"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Gráfico de Medidor"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Requisição HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Configurações de iFrame"
msgid "iFrame Widget"
msgstr "Widget de iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Configuração de Iframe não é suportada"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Índices"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informações"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiano"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "itens"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Gráfico de Linhas"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Sincronização de mensagens não está disponível porque o serviço es
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Mensagens"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Intervalo mínimo"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "O valor de minutos não pode exceder 60. Para intervalos maiores que 60 minutos, use o tipo de acionador \"Horas\" ou uma expressão cron personalizada"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Sem país"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Sem dados"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Nenhum campo para exibir"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Nenhum resultado"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Nenhuma função atribuída a este membro"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objeto"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objeto excluído"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Abrir em"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Abrir em Funções"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Página"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "layout da página"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "aba de layout da página"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget de layout da página"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Exclusão permanente. Insira o número de dias."
msgid "Permanently destroy dashboard"
msgstr "Destruir permanentemente o painel"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Destruir permanentemente os painéis"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Imagem"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Gráfico de Pizza"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Preenchendo seus dados de espaço de trabalho..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefixo"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Impedir que atribuam o mesmo valor a registros diferentes"
msgid "Preview"
msgstr "Prévia"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Visualização indisponível"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Proporção"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Gravação"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Registro (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revogado para este objeto"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "função"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Pesquisar operações"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Pesquisar opções"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selecione a planilha a ser usada"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Selecione um valor"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Mesclou com sucesso {recordCount} registro} o
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sufixo"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Essa ação não pode ser desfeita. Isso removerá permanentemente sua p
msgid "This database value overrides environment settings. "
msgstr "Este valor do banco de dados substitui as configurações do ambiente."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Este tipo de arquivo não pode ser visualizado. Faça o download do arquivo para visualizá-lo."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Isso cancelará a alteração de plano programada e manterá seu plano a
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Isso excluirá permanentemente o campo e todos os seus dados de {objectLabel}. Digite \"yes\" para confirmar."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Isso excluirá permanentemente o objeto e todos os seus registros. Digite \"yes\" para confirmar."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Campos únicos"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unidade"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Atualizar"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Atualizar função"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+90 -45
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} arquivo(s) falhou(aram) ao carregar"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regra} other {{filterRulesCount} regras}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Após um determinado período de tempo"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agente"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permitir que os utilizadores iniciem sessão com um e-mail e uma palavra
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Ocorreu um erro"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Ocorreu um erro interno ao validar suas alterações. Por favor, entre e
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Um objeto com este nome já existe"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Domínios Aprovados"
msgid "Arabic"
msgstr "\\u00c1rabe"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arquivos compactados não podem ser pré-visualizados. Baixe o arquivo para acessar seu conteúdo."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Tem certeza de que deseja restaurar este registro?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Tem certeza de que deseja atualizar a função deste usuário de \"{oldRoleLabel}\" para \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configure as definições de SMTP para enviar e-mails da sua conta."
msgid "Configure these DNS records with your domain provider"
msgstr "Configure esses registros DNS com seu provedor de domínio"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configure este widget para exibir campos"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirme o downgrade"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmar atualização da função"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Contém"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Contexto"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Acumulado"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personalizar layouts de páginas e estrutura de interface"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalize o que este usuário pode visualizar e executar"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Dinamarqu\\u00eas"
msgid "Dark"
msgstr "Escuro"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Painel duplicado com sucesso"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Eliminar"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Eliminar o campo {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Eliminar o objeto {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Eliminar chave API"
msgid "Delete dashboard"
msgstr "Apagar painel"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Apagar painéis"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Baixar arquivos"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Transferir exemplo"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Solte o arquivo aqui..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicar painel"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Insira um número entre 0 e 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Insira um número entre 1 e 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Avaliando"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Falha ao criar {translatedMetadataName}. A validação relacionada a {re
msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao deletar trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Falha ao duplicar o painel"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Falha ao atualizar o preço."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Falha ao atualizar a função"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Campo"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Campo eliminado"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Requisição HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Configurações do iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Configuração de iFrame não é suportada"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Índices"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informações"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiano"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "itens"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Gráfico de linha"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Sincronização de mensagens não está disponível porque o serviço es
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Mensagens"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6445,7 +6470,7 @@ msgstr "Sem país"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Sem dados"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Não há campos para exibir"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Sem Resultados"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Nenhuma função atribuída a este membro"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Objeto"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objeto eliminado"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Abrir em"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Abrir em Funções"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Página"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "layout da página"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "aba Layout da Página"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget de Layout da Página"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Exclusão permanente. Insira o número de dias."
msgid "Permanently destroy dashboard"
msgstr "Destruir permanentemente o painel"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Destruir permanentemente os painéis"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Imagem"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Gráfico de Pizza"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Preenchendo os dados do seu espaço de trabalho..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefixo"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Evite atribuir o mesmo valor a diferentes registros"
msgid "Preview"
msgstr "Pré-visualização"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Visualização indisponível"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Razão"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Registro"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Registo (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revogado para este objeto"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "função"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Pesquisar operações"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Opções de pesquisa"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selecione a planilha a ser usada"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Selecionar valor"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Registo mesclado com sucesso} other {Registos
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sufixo"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Esta ação não pode ser desfeita. Isto removerá permanentemente sua a
msgid "This database value overrides environment settings. "
msgstr "Este valor de banco de dados substitui as configurações de ambiente."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Este tipo de arquivo não pode ser pré-visualizado. Baixe o arquivo para visualizá-lo."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Isso cancelará a alteração de plano agendada e manterá seu plano atu
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Isto eliminará permanentemente o campo e todos os seus dados de {objectLabel}. Introduza \"yes\" para confirmar."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Isto eliminará permanentemente o objeto e todos os seus registos. Introduza \"yes\" para confirmar."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Campos exclusivos"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unidade"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Atualizar"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Atualizar função"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fișier(e) nu a(u) reușit să se încarce"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regulă} few {{filterRulesCount} reguli} other {{filterRulesCount} reguli}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "După un anumit timp"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Permite utilizatorilor să se autentifice cu email și parolă."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "A apărut o eroare"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "A apărut o eroare internă în timpul validării modificărilor. Vă ru
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Un obiect cu acest nume deja există"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Domenii Aprobate"
msgid "Arabic"
msgstr "Arabă"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Fișierele de tip arhivă nu pot fi previzualizate. Vă rugăm să descărcați fișierul pentru a-i accesa conținutul."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Sunteți sigur că doriți să restaurați această înregistrare?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Sigur doriți să actualizați rolul acestui utilizator de la \"{oldRoleLabel}\" la \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Configurează setările SMTP pentru a trimite e-mailuri de pe contul tă
msgid "Configure these DNS records with your domain provider"
msgstr "Configurați aceste înregistrări DNS cu furnizorul dvs. de domeniu"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Configurați acest widget pentru a afișa câmpuri"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Confirmați retrogradarea"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Confirmați actualizarea rolului"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Conține"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Context"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Cumulativ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Personalizează dispunerea paginilor și structura UI"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Personalizați ce poate vedea și ce poate face acest utilizator"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Daneză"
msgid "Dark"
msgstr "Întunecat"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Tabloul de bord a fost duplicat cu succes"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Șterge"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Șterge câmpul {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Șterge obiectul {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Șterge cheia API"
msgid "Delete dashboard"
msgstr "Ștergeți tabloul de bord"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Ștergeți tablourile de bord"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Descărcați fișiere"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Descarcă fișierul de mostră"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Trageți fișierul aici..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicați tabloul de bord"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Introduceți un număr între 0 și 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Introduceți un număr între 1 și 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Se evaluează"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "A eșuat crearea {translatedMetadataName}. Validarea {relatedEntityNames
msgid "Failed to delete jobs. Please try again later."
msgstr "Eșuat la ștergerea locurilor de muncă. Încercați din nou mai târziu."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Duplicarea tabloului de bord a eșuat"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Eroare la actualizarea prețului."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Eroare la actualizarea rolului"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Câmp"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Câmp șters"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funcții - Setări"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Grafic tip ceas"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Solicitare HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Setări iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Configurarea iFrame nu este acceptată"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indici"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Informații"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italiană"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "elemente"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Grafic liniar"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Sincronizarea mesajului nu este disponibilă pentru că serviciul este n
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Mesaje"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Interval minim"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Valoarea pentru minute nu poate depăși 60. Pentru intervale mai mari de 60 de minute, utilizați tipul de declanșator \"Ore\" sau o expresie cron personalizată"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Fără țară"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Fără date"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Nu există câmpuri de afișat"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Niciun rezultat"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Niciun rol atribuit acestui membru"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Obiect"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Obiect șters"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Deschide în"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Deschide în Roluri"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,12 +7123,12 @@ msgstr "Pagină"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "layout pagină"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "fila \"Aspect pagină\""
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
@@ -7206,6 +7236,11 @@ msgstr "Ștergere permanentă. Introduceți numărul de zile."
msgid "Permanently destroy dashboard"
msgstr "Distrugere definitivă a tabloului de bord"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Distrugere definitivă a tablourilor de bord"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Imagine"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Grafic circular"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Precompletarea datelor workspace-ului tău..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefix"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Impedică atribuirea aceleiași valori la înregistrări diferite"
msgid "Preview"
msgstr "Previzualizare"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Previzualizare indisponibilă"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Raport"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Înregistrare"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Înregistrare (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Revocat pentru acest obiect"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Caută operațiuni"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Opțiuni de căutare"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Selectează foaia de utilizat"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Selectați o valoare"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount, plural, one {Îmbinată cu succes {recordCount} înregistr
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sufix"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Această acțiune nu poate fi anulată. Acest lucru va elimina permanent
msgid "This database value overrides environment settings. "
msgstr "Această valoare a bazei de date suprascrie setările de mediu."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Acest tip de fișier nu poate fi previzualizat. Vă rugăm să descărcați fișierul pentru a-l vizualiza."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Acest lucru va anula schimbarea programată a planului și va păstra pl
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Aceasta va șterge definitiv câmpul și toate datele sale din {objectLabel}. Tastați \"yes\" pentru confirmare."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Aceasta va șterge definitiv obiectul și toate înregistrările sale. Tastați \"yes\" pentru confirmare."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Câmpuri unice"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "unitate"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Actualizează"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Actualizați rolul"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
Binary file not shown.
+89 -44
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} датотека(е) нису успеле да се от
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} правило} few {{filterRulesCount} правила} other {{filterRulesCount} правила}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "После одређеног временског периода"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "агент"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Омогућите корисницима да се пријаве са
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Дошло је до грешке"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Дошло је до унутрашње грешке приликом в
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Објекат са овим називом већ постоји"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Одобрени домени"
msgid "Arabic"
msgstr "Арапски"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr ""
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Да ли сте сигурни да желите вратити ова
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Да ли сте сигурни да желите да ажурирате улогу овог корисника са \"{oldRoleLabel}\" на \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Подесите SMTP подешавања да шаљете имејл
msgid "Configure these DNS records with your domain provider"
msgstr "Конфигуришите ове DNS записе код вашег провајдера домена"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Подесите овај виџет за приказ поља"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Потврди смањење услуге"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Потврди ажурирање улоге"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Садржи"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Контекст"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Кумулативно"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Прилагодите изглед страница и структур
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Прилагодите шта овај корисник може да види и обавља"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Дански"
msgid "Dark"
msgstr "Тамни"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Контролна табла је успешно дуплирана"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Обриши"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Обриши поље {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Обриши објекат {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Обриши API кључ"
msgid "Delete dashboard"
msgstr "Обриши контролну таблу"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Обриши контролне табле"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Преузми датотеке"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Преузми пример"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Одбаците датотеку овде..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Дуплирај контролну таблу"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Унесите број између 0 и 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Унесите број између 1 и 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Процењивање"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Неуспешно креирање {translatedMetadataName}. Валид
msgid "Failed to delete jobs. Please try again later."
msgstr "Није успело брисање послова. Покушајте поново касније."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Није успело дуплирање контролне табле"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Није успело ажурирање цене."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Није успело ажурирање улоге"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Поље"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Поље је обрисано"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Хттп"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP Захтев"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Подешавања iFrame-а"
msgid "iFrame Widget"
msgstr "iFrame виџет"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Конфигурација иФрејма није подржана"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Индекси"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Информације"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Дијаграм линија"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Синхронизација порука није доступна је
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Поруке"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Минимални опсег"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Вредност минута не може бити већа од 60. За интервале веће од 60 минута, користите тип окидача „Сати“ или прилагођени cron израз."
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Нема земље"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Нема података"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Нема поља за приказ"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Нема резултата"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Овом члану није додељена улога"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Објекат"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Објекат је обрисан"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Отвори у"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Отворите у Улогама"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Страница"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "распоред странице"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "картица Распоред странице"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "виџет Распоред странице"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Трајно брисање. Унесите број дана."
msgid "Permanently destroy dashboard"
msgstr "Трајно уништите контролну таблу"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Трајно уништите контролне табле"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7379,7 +7414,7 @@ msgstr "Унапред попуњавање података вашег радн
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Префикс"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Спречите доделу исте вредности различи
msgid "Preview"
msgstr "Преглед"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr ""
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Однос"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Запис"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Запис (ИД)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Опозвано за овај објекат"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "улога"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Претражите операције"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Претражите опције"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Изаберите лист да га користите"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Изаберите вредност"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Успешно спојено {recordCount} записа"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Суфикс"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Ова акција се не може опозвати. Ово ће т
msgid "This database value overrides environment settings. "
msgstr "Ова вредност из базе података замењује подешавања окружења."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr ""
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Ово ће отказати заказану промену плана
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Ово ће трајно обрисати поље и све његове податке из {objectLabel}. Унесите \"yes\" да потврдите."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Ово ће трајно обрисати објекат и све његове записе. Унесите \"yes\" да потврдите."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Јединствена поља"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "јединица"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Ажурирати"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Ажурирајте улогу"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} fil(er) kunde inte laddas upp"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} regel} other {{filterRulesCount} regler}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Efter en viss tid"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "agent"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Till\\u00e5t anv\\u00e4ndare att logga in med e-postadress och l\\u00f6s
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Ett fel inträffade"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Ett internt fel inträffade vid validering av dina ändringar. Vänligen
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Ett objekt med detta namn finns redan"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Godkända domäner"
msgid "Arabic"
msgstr "Arabic"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arkivfiler kan inte förhandsgranskas. Ladda ner filen för att komma åt innehållet."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Är du säker på att du vill återställa denna post?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Är du säker på att du vill uppdatera den här användarens roll från \"{oldRoleLabel}\" till \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Konfigurera SMTP-inställningar för att skicka e-post från ditt konto.
msgid "Configure these DNS records with your domain provider"
msgstr "Konfigurera dessa DNS-poster med din domänleverantör"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Konfigurera den här widgeten för att visa fält"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Bekräfta nedgradering"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Bekräfta uppdatering av roll"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Innehåller"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Sammanhang"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kumulativ"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Anpassa sidlayouter och användargränssnittets struktur"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Anpassa vad den här användaren kan se och utföra"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danish"
msgid "Dark"
msgstr "Mörkt"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Instrumentpanelen duplicerades framgångsrikt"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Ta bort"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Radera fältet {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Radera objektet {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Ta bort API-nyckel"
msgid "Delete dashboard"
msgstr "Ta bort instrumentpanel"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Ta bort instrumentpaneler"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Ladda ner filer"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Ladda ner exempel"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Släpp filen här..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Duplicera instrumentpanel"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Ange ett nummer mellan 0 och 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Ange ett nummer mellan 1 och 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Utvärderar"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Det gick inte att skapa {translatedMetadataName}. Relaterad {relatedEnti
msgid "Failed to delete jobs. Please try again later."
msgstr "Det gick inte att radera jobben. Försök igen senare."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Det gick inte att duplicera instrumentpanelen"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Misslyckades med att uppdatera pris."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Misslyckades med att uppdatera rollen"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Fält"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Fält raderat"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Funktioner - Inställningar"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Mätardiagram"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP-förfrågan"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame-inställningar"
msgid "iFrame Widget"
msgstr "iFrame-widget"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "iFrame-konfiguration stöds inte"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Indexer"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Information"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Italienska"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "objekt"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Linjediagram"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Meddelandesynkronisering är inte tillgänglig eftersom tjänsten är ne
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Meddelanden"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimalområde"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Minutvärdet får inte överstiga 60. För intervall som är längre än 60 minuter, använd triggertypen \"Timmar\" eller ett anpassat cron-uttryck"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6447,7 +6472,7 @@ msgstr "Inget land"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Ingen data"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6519,6 +6544,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Inga fält att visa"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6648,7 +6678,7 @@ msgstr "Inga resultat"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Ingen roll har tilldelats denna medlem"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6811,7 +6841,7 @@ msgstr "Objekt"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Objekt raderat"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6988,7 +7018,7 @@ msgstr "Öppna i"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Öppna i Roller"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7095,17 +7125,17 @@ msgstr "Sida"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "sidlayout"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "fliken Sidlayout"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget för sidlayout"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7208,6 +7238,11 @@ msgstr "Permanent radering. Ange antalet dagar."
msgid "Permanently destroy dashboard"
msgstr "Förstöra instrumentpanel permanent"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Förstör instrumentpaneler permanent"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7274,7 +7309,7 @@ msgstr "Bild"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Cirkeldiagram"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7381,7 +7416,7 @@ msgstr "Förfyller dina arbetsytedata..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Prefix"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7394,6 +7429,11 @@ msgstr "Förhindra användare från att tilldela samma värde till olika poster"
msgid "Preview"
msgstr "Förhandsgranskning"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Förhandsgranskning är inte tillgänglig"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7549,7 +7589,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Kvot"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7579,7 +7619,7 @@ msgstr "Post"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Post (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7872,7 +7912,7 @@ msgstr "Upphävd för det här objektet"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "roll"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8142,7 +8182,7 @@ msgstr "Sök operationer"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Sök alternativ"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8376,7 +8416,7 @@ msgstr "Välj arket du vill använda"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Välj värde"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8944,7 +8984,7 @@ msgstr "{recordCount, plural, one {Framgångsrikt sammanfogad {recordCount} post
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Suffix"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9346,6 +9386,11 @@ msgstr "Denna åtgärd kan inte ångras. Detta kommer att permanent ta bort ditt
msgid "This database value overrides environment settings. "
msgstr "Detta databasvärde åsidosätter miljöinställningar."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Den här filtypen kan inte förhandsgranskas. Ladda ner filen för att visa den."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9399,12 +9444,12 @@ msgstr "Detta kommer att avbryta den planerade planändringen och behålla din n
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Detta kommer att radera fältet och all dess data från {objectLabel} permanent. Skriv \"yes\" för att bekräfta."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Detta kommer att radera objektet och alla dess poster permanent. Skriv \"yes\" för att bekräfta."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9718,7 +9763,7 @@ msgstr "Unika fält"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "enhet"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9791,7 +9836,7 @@ msgstr "Uppdatera"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Uppdatera roll"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} dosya yükleme başarısız oldu"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} kural} other {{filterRulesCount} kural}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Belirli bir süre sonra"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "temsilci"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Kullanıcıların e-posta ve şifre ile oturum açmasına izin ver."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Hata oluştu"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Değişikliklerinizi doğrularken bir dahili hata oluştu. Lütfen deste
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Bu isimle bir nesne zaten mevcut"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Onaylanmış Alan Adları"
msgid "Arabic"
msgstr "Arapça"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Arşiv dosyaları önizlenemez. İçeriğine erişmek için lütfen dosyayı indirin."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Bu kaydı geri yüklemek istediğinizden emin misiniz?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Bu kullanıcının rolünü \"{oldRoleLabel}\" rolünden \"{newRoleLabel}\" rolüne güncellemek istediğinizden emin misiniz?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Hesabınızdan e-posta göndermek için SMTP ayarlarını yapılandırı
msgid "Configure these DNS records with your domain provider"
msgstr "Bu DNS kayıtlarını alan sağlayıcınızla yapılandırın"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Alanları görüntülemek için bu widget'ı yapılandırın."
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Düşürmeyi onayla"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Rol güncellemesini onayla"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "İçerir"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Bağlam"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Kümülatif"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Sayfa düzenlerini ve kullanıcı arayüzü yapısını özelleştir"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Bu kullanıcının görüntüleyebileceklerini ve gerçekleştirebileceklerini özelleştirin"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Danca"
msgid "Dark"
msgstr "Karanlık"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Gösterge paneli başarıyla çoğaltıldı"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Sil"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "{fieldLabel} alanı silinsin mi?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "{objectLabel} nesnesi silinsin mi?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "API anahtarını sil"
msgid "Delete dashboard"
msgstr "Gösterge panelini sil"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Gösterge panellerini sil"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Dosyaları İndir"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Örnek dosyayı indir"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Dosyayı buraya bırakın..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Gösterge panelini çoğalt"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "0 ile 59 arasında bir sayı giriniz"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "1 ile 60 arasında bir sayı giriniz"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Değerlendiriliyor"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "{translatedMetadataName} oluşturulamadı. İlgili {relatedEntityNames}
msgid "Failed to delete jobs. Please try again later."
msgstr "İş silme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Gösterge paneli çoğaltılamadı"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Fiyat güncellenemedi."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Rol güncellenemedi"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Alan"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Alan silindi"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Fonksiyonlar - Ayarlar"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Gösterge Grafiği"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP İsteği"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iÇerik Ayarları"
msgid "iFrame Widget"
msgstr "iÇerik Widget’ı"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "IframeConfiguration desteklenmiyor"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Dizinler"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Bilgiler"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "İtalyanca"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "öğeler"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Çizgi Grafiği"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Mesaj Senkronizasyonu hizmet kapalı olduğu için kullanılamıyor"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Mesajlar"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Minimum aralık"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Dakika değeri 60'ı aşamaz. 60 dakikadan uzun aralıklar için \"Saat\" tetikleyici türünü veya özel bir cron ifadesi kullanın"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Ülke yok"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Veri Yok"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Görüntülenecek alan yok"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Sonuç Yok"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Bu üyeye bir rol atanmadı"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Nesne"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Nesne silindi"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Açık"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Roller bölümünde aç"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Sayfa"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "sayfa düzeni"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "sayfa düzeni sekmesi"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "sayfa düzeni bileşeni"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Kalıcı silme. Gün sayısını girin."
msgid "Permanently destroy dashboard"
msgstr "Gösterge Panelini Kalıcı Olarak Yok Et"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Gösterge panellerini kalıcı olarak yok et"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Resim"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Pasta Grafiği"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Çalışma alanı verilerinizi önceden doldurma..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Önek"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Kullanıcıların farklı kayıtlara aynı değeri atamasını engelleyi
msgid "Preview"
msgstr "Önizleme"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Önizleme Kullanılamıyor"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Oran"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Kayıt"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Kayıt (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Bu nesne için iptal edildi"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "rol"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "İşlemleri ara"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Seçenekleri ara"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Kullanılacak sayfayı seçin"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Bir değer seç"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "{recordCount} kayıt başarıyla birleştirildi"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Sonek"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Bu işlem geri alınamaz. Bu, üyeliğinizi bu çalışma alanından kal
msgid "This database value overrides environment settings. "
msgstr "Bu veritabanı değeri çevre ayarlarının üzerine yazar."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Bu dosya türü önizlenemez. Görüntülemek için lütfen dosyayı indirin."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Bu, planlanan plan değişikliğini iptal edecek ve mevcut planınızı
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Bu işlem, {objectLabel} nesnesindeki bu alanı ve ona ait tüm verileri kalıcı olarak silecek. Onaylamak için \"evet\" yazın."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Bu işlem, nesneyi ve tüm kayıtlarını kalıcı olarak silecek. Onaylamak için \"evet\" yazın."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Benzersiz alanlar"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "birim"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Güncelle"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Rolü güncelle"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} файл(и) не вдалося завантажити"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, one {{filterRulesCount} правило} few {{filterRulesCount} правила} many {{filterRulesCount} правил} other {{filterRulesCount} правил}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Після заданого часу"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "агент"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Дозволити користувачам входити за допо
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Сталася помилка"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Виникла внутрішня помилка під час пере
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Об'єкт з цією назвою уже існує"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Затверджені домени"
msgid "Arabic"
msgstr "Арабська"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Архівні файли не можна попередньо переглянути. Завантажте файл, щоб отримати доступ до його вмісту."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Ви впевнені, що хочете відновити цей за
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Ви впевнені, що хочете оновити роль цього користувача з \"{oldRoleLabel}\" на \"{newRoleLabel}\"?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Налаштуйте параметри SMTP, щоб надсилати
msgid "Configure these DNS records with your domain provider"
msgstr "Налаштуйте ці DNS записи у вашого постачальника доменів"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Налаштуйте цей віджет для відображення полів"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Підтвердити пониження"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Підтвердити оновлення ролі"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Містить"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Контекст"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Накопичувальний"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Налаштовуйте макети сторінок та структ
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Налаштуйте, що цей користувач може переглядати та виконувати"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Данська"
msgid "Dark"
msgstr "Темна"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Інформаційну панель успішно продубльовано"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Видалити"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Видалити поле {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Видалити об’єкт {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Видалити ключ API"
msgid "Delete dashboard"
msgstr "Видалити інформаційну панель"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Видалити інформаційні панелі"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Завантажити файл"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Завантажити зразок"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Перетягніть файл сюди..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Дублювати інформаційну панель"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Введіть число між 0 та 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Введіть число між 1 та 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Оцінювання"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Не вдалося створити {translatedMetadataName}. Пере
msgid "Failed to delete jobs. Please try again later."
msgstr "Не вдалося видалити завдання. Будь ласка, спробуйте пізніше."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Не вдалося продублювати інформаційну панель"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Не вдалося оновити ціну."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Не вдалося оновити роль"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Поле"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Поле видалено"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP-запит"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Налаштування iFrame"
msgid "iFrame Widget"
msgstr "Віджет iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Налаштування Iframe не підтримується"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Індекси"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Інформація"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Італійська"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "items"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Лінійна діаграма"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Синхронізація повідомлень недоступна,
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Повідомлення"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Мінімальний діапазон"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Значення хвилини не може перевищувати 60. Для інтервалів понад 60 хвилин використовуйте тип тригера \"Години\" або користувацький вираз cron"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Немає країни"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Немає даних"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Немає полів для відображення"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Немає результатів"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Цьому учаснику не призначено жодної ролі"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Об'єкт"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Об’єкт видалено"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Відкрити в"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Відкрити в розділі «Ролі»"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Сторінка"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "макет сторінки"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "вкладка «Макет сторінки»"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "віджет «Макет сторінки»"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Безповоротне видалення. Введіть кількі
msgid "Permanently destroy dashboard"
msgstr "Назавжди знищити інформаційну панель"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Назавжди знищити інформаційні панелі"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Зображення"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Кругова діаграма"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Попереднє заповнення даних вашого робо
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Префікс"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Запобігти призначенню одного й того ж з
msgid "Preview"
msgstr "Перегляд"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Попередній перегляд недоступний"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Співвідношення"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Запис"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Запис (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Скасовано для цього об'єкта"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "роль"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Пошук операцій"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Параметри пошуку"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Виберіть аркуш для використання"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Вибрати значення"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Успішно об'єднано {recordCount, plural, one {# запис
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Суфікс"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9334,6 +9374,11 @@ msgstr "Цю дію не можна відмінити. Це назавжди в
msgid "This database value overrides environment settings. "
msgstr "Це значення з бази даних перевизначає параметри середовища."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Цей тип файлу не можна попередньо переглянути. Завантажте файл, щоб переглянути його."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9387,12 +9432,12 @@ msgstr "Це скасує заплановані зміни плану та за
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Це остаточно видалить поле та всі його дані з {objectLabel}. Введіть \"yes\", щоб підтвердити."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Це остаточно видалить об’єкт і всі його записи. Введіть \"yes\", щоб підтвердити."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9706,7 +9751,7 @@ msgstr "Унікальні поля"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "одиниця"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9779,7 +9824,7 @@ msgstr "Оновити"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Оновити роль"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} tệp không tải lên được"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, other {{filterRulesCount} quy tắc}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "Sau một khoảng thời gian đã đặt"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "tác nhân"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "Cho phép người dùng đăng nhập với email và mật khẩu."
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "Đã xảy ra lỗi"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "Đã xảy ra lỗi nội bộ khi xác nhận các thay đổi của b
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "Đối tượng có tên này đã tồn tại"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "Miền Đã Được Phê Duyệt"
msgid "Arabic"
msgstr "Tiếng Ả Rập"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "Tệp lưu trữ không thể xem trước. Vui lòng tải tệp xuống để truy cập nội dung của nó."
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "Bạn có chắc chắn muốn khôi phục bản ghi này không?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "Bạn có chắc chắn muốn cập nhật vai trò của người dùng này từ \"{oldRoleLabel}\" sang \"{newRoleLabel}\" không?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "Cấu hình cài đặt SMTP để gửi email từ tài khoản của b
msgid "Configure these DNS records with your domain provider"
msgstr "Cấu hình các bản ghi DNS này với nhà cung cấp miền của bạn"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "Cấu hình tiện ích này để hiển thị các trường"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "Xác nhận hạ cấp"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "Xác nhận cập nhật vai trò"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "Chứa"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "Ngữ cảnh"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "Lũy kế"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "Tùy chỉnh bố cục trang và cấu trúc giao diện người dùng
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "Tùy chỉnh những gì người dùng này có thể xem và thực hiện"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "Tiếng Đan Mạch"
msgid "Dark"
msgstr "Giao diện tối"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "Nhân bản thành công bảng điều khiển"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "Xóa"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "Xóa trường {fieldLabel}?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "Xóa đối tượng {objectLabel}?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "Xóa khóa API"
msgid "Delete dashboard"
msgstr "Xóa bảng điều khiển"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "Xóa các bảng điều khiển"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "Tải về tệp"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "Tải tệp mẫu"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "Thả tệp vào đây..."
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "Nhân bản bảng điều khiển"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "Nhập số từ 0 đến 59"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "Nhập số từ 1 đến 60"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "Đang đánh giá"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "Đã tạo thất bại {translatedMetadataName}. Kiểm tra liên quan
msgid "Failed to delete jobs. Please try again later."
msgstr "Không thể xóa các công việc. Vui lòng thử lại sau."
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "Không thể nhân bản bảng điều khiển"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "Cập nhật giá thất bại."
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "Cập nhật vai trò thất bại"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "Trường"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "Đã xóa trường"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "Cài đặt - Chức năng"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "Biểu đồ đo lường"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "Yêu cầu HTTP"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "Cài đặt iFrame"
msgid "iFrame Widget"
msgstr "Widget iFrame"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Cấu hình iFrame không được hỗ trợ"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "Chỉ mục"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "Thông tin"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "Tiếng Ý"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "Mục"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "Biểu đồ đường"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "Đồng bộ tin nhắn không khả dụng vì dịch vụ bị gián
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "Tin nhắn"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "Phạm vi tối thiểu"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "Giá trị phút không được vượt quá 60. Đối với khoảng thời gian lớn hơn 60 phút, hãy sử dụng loại kích hoạt \"Giờ\" hoặc một biểu thức cron tùy chỉnh"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "Không có quốc gia"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "Không có dữ liệu"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "Không có trường nào để hiển thị"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "Không có kết quả"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "Chưa gán vai trò cho thành viên này"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "Đối tượng"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "Đã xóa đối tượng"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "Mở trong"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "Mở trong mục Vai trò"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "Trang"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "bố cục trang"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "tab bố cục trang"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "widget bố cục trang"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "Xóa vĩnh viễn. Nhập số ngày."
msgid "Permanently destroy dashboard"
msgstr "Hủy bỏ vĩnh viễn bảng điều khiển"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "Hủy bỏ vĩnh viễn các bảng điều khiển"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "Hình ảnh"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "Biểu đồ hình tròn"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "Điền trước dữ liệu không gian làm việc của bạn..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "Tiền tố"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "Ngăn không gán cùng một giá trị cho các bản ghi khác nhau"
msgid "Preview"
msgstr "Xem trước"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "Không có bản xem trước"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "Tỷ lệ"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "Ghi lại"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "Bản ghi (ID)"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "Đã thu hồi cho đối tượng này"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "vai trò"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "Tìm kiếm hoạt động"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "Tùy chọn tìm kiếm"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "Chọn bảng để sử dụng"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "Chọn một giá trị"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "Đã ghép thành công {recordCount} hồ sơ"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "Hậu tố"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "Hành động này không thể được hoàn tác. Điều này sẽ x
msgid "This database value overrides environment settings. "
msgstr "Giá trị cơ sở dữ liệu này ghi đè các thiết lập môi trường."
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "Loại tệp này không thể xem trước. Vui lòng tải tệp xuống để xem."
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "Thao tác này sẽ hủy thay đổi kế hoạch đã đặt lịch v
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "Thao tác này sẽ xóa vĩnh viễn trường và toàn bộ dữ liệu của nó khỏi {objectLabel}. Nhập \"yes\" để xác nhận."
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "Thao tác này sẽ xóa vĩnh viễn đối tượng và tất cả bản ghi của nó. Nhập \"yes\" để xác nhận."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "Trường duy nhất"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "đơn vị"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "Cập nhật"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "Cập nhật vai trò"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+91 -46
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} 个文件上传失败"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, other {{filterRulesCount} 条规则}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "在特定时间后"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "代理"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "允许用户使用电子邮件和密码登录。"
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "发生错误"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "验证更改时发生内部错误。请联系支持。"
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "带有此名称的对象已存在"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "批准的域名"
msgid "Arabic"
msgstr "阿拉伯语"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "归档文件无法预览。请下载该文件以访问其内容。"
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "您确定要恢复此记录吗?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "您确定要将此用户的角色从“{oldRoleLabel}”更新为“{newRoleLabel}”吗?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "配置 SMTP 设置以从您的账户发送电子邮件。"
msgid "Configure these DNS records with your domain provider"
msgstr "在您的域提供商处配置这些 DNS 记录"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "配置此小部件以显示字段"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "确认降级"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "确认角色更新"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "包含"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "上下文"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "累计"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "自定义页面布局和 UI 结构"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "自定义此用户可以查看和执行的内容"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "丹麦语"
msgid "Dark"
msgstr "深色"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "仪表板复制成功"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "删除"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "删除 {fieldLabel} 字段?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "删除 {objectLabel} 对象?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "删除 API 密钥"
msgid "Delete dashboard"
msgstr "删除仪表板"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "删除仪表板"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "下载文件"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "下载示例文件"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "将文件拖放到此处……"
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "复制仪表板"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "输入一个 0 到 59 之间的数字"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "输入一个 1 到 60 之间的数字"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -4311,6 +4336,11 @@ msgstr "创建{translatedMetadataName}失败。相关{relatedEntityNames}验证
msgid "Failed to delete jobs. Please try again later."
msgstr "删除任务失败。请稍后再试。"
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "复制仪表板失败"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "更新价格失败。"
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "更新角色失败。"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "字段"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "字段已删除"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "功能 - 设置"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "仪表图"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP请求"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame 设置"
msgid "iFrame Widget"
msgstr "iFrame 小部件"
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Iframe 配置不支持"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "索引"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "信息"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "意大利语"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "项目"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "折线图"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "消息同步不可用,因为服务已关闭"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "消息"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "最小范围"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "分钟值不能超过 60。对于超过 60 分钟的间隔,请使用“Hours”触发器类型或自定义 cron 表达式。"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "无国家"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "无数据"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "没有可显示的字段"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "无结果"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "未为该成员分配角色"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "对象"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "对象已删除"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "在以下中打开"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "在角色中打开"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "页面"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "页面布局"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "页面布局选项卡"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "页面布局小部件"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "永久删除。 输入天数。"
msgid "Permanently destroy dashboard"
msgstr "永久销毁仪表板"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "永久销毁仪表板"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "图片"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "饼图"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "正在预填您的工作区数据..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "前缀"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "防止用户为不同记录分配相同的值"
msgid "Preview"
msgstr "预览"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "无法预览"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "比例"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "记录"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "记录(ID"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "撤销该对象"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "角色"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "搜索操作"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "搜索选项"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "选择要使用的工作表"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "选择值"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "成功合并 {recordCount} 条记录"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "后缀"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "此操作无法撤销。这将永久从此工作区中删除您的成员
msgid "This database value overrides environment settings. "
msgstr "此数据库值会覆盖环境设置。"
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "此文件类型无法预览。请下载该文件进行查看。"
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "这将取消计划的变更,并保持当前计划 ({planKeyWord})。"
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "这将从 {objectLabel} 中永久删除该字段及其所有数据。输入 \"yes\" 以确认。"
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "这将永久删除该对象及其所有记录。输入 \"yes\" 以确认。"
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "唯一字段"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "单位"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "更新"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "更新角色"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
+92 -47
View File
@@ -181,7 +181,7 @@ msgstr "{failedCount} 個檔案上傳失敗"
#. js-lingui-id: bv2QCV
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "{filterRulesCount, plural, one {{filterRulesCount} rule} other {{filterRulesCount} rules}}"
msgstr ""
msgstr "{filterRulesCount, plural, other {{filterRulesCount} 規則}}"
#. js-lingui-id: WS/avX
#: src/modules/spreadsheet-import/steps/components/ImportDataStep.tsx
@@ -851,7 +851,7 @@ msgstr "在設定的時間後"
#. js-lingui-id: fcYF58
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "agent"
msgstr ""
msgstr "代理"
#. js-lingui-id: iEQQyu
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -1066,7 +1066,7 @@ msgstr "允許用戶使用電子郵件和密碼登錄。"
#. js-lingui-id: Vw8l6h
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/HttpRequestExecutionResult.tsx
msgid "An error occurred"
msgstr ""
msgstr "發生錯誤"
#. js-lingui-id: VD5bNu
#: src/modules/auth/sign-in-up/hooks/useSignInUp.ts
@@ -1118,7 +1118,7 @@ msgstr "驗證更改時發生了內部錯誤。請聯繫支持。"
#. js-lingui-id: U+NKyj
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "An object with this name already exists"
msgstr ""
msgstr "此名稱的物件已存在"
#. js-lingui-id: lxentK
#: src/modules/settings/playground/components/PlaygroundSetupForm.tsx
@@ -1294,6 +1294,11 @@ msgstr "已批准的網域"
msgid "Arabic"
msgstr "阿拉伯語"
#. js-lingui-id: i19Zro
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Archive files cannot be previewed. Please download the file to access its contents."
msgstr "壓縮檔無法預覽。請下載該檔案以存取其內容。"
#. js-lingui-id: 4CHeVx
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Are you sure you want to delete this evaluation input?"
@@ -1322,7 +1327,7 @@ msgstr "您確定要恢復此記錄嗎?"
#. js-lingui-id: 9JFf0y
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Are you sure you want to update the role of this user from \"{oldRoleLabel}\" to \"{newRoleLabel}\"?"
msgstr ""
msgstr "您確定要將此使用者的角色從「{oldRoleLabel}」更新為「{newRoleLabel}」嗎?"
#. js-lingui-id: rnCqBK
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
@@ -2199,6 +2204,11 @@ msgstr "配置 SMTP 設定以從您的帳戶發送電子郵件。"
msgid "Configure these DNS records with your domain provider"
msgstr "在您的域名提供商處配置這些 DNS 記錄"
#. js-lingui-id: BgaUQT
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "Configure this widget to display fields"
msgstr "設定此小工具以顯示欄位"
#. js-lingui-id: Bh4GBD
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
msgid "Configure your emails and calendar settings."
@@ -2237,7 +2247,7 @@ msgstr "確認降級"
#. js-lingui-id: 28b8wO
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Confirm role update"
msgstr ""
msgstr "確認角色更新"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
@@ -2307,7 +2317,6 @@ msgstr "包含"
#. js-lingui-id: M73whl
#: src/modules/command-menu/components/CommandMenu.tsx
#: src/modules/ai/components/internal/AgentChatContextRecordPreview.tsx
msgid "Context"
msgstr "上下文"
@@ -2660,7 +2669,7 @@ msgstr ""
#. js-lingui-id: J1QT+3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Cumulative"
msgstr ""
msgstr "累計"
#. js-lingui-id: R3PLzn
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownCurrencySelect.tsx
@@ -2743,7 +2752,7 @@ msgstr "自定義頁面佈局和 UI 結構"
#. js-lingui-id: ZBgSzH
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Customize what this user can view and perform"
msgstr ""
msgstr "自訂此使用者可檢視與執行的操作"
#. js-lingui-id: bCJa9l
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -2779,6 +2788,11 @@ msgstr "丹麥語"
msgid "Dark"
msgstr "深色模式"
#. js-lingui-id: ogQzcZ
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Dashboard duplicated successfully"
msgstr "儀表板複製成功"
#. js-lingui-id: w6iIMm
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Dashboards"
@@ -3079,12 +3093,12 @@ msgstr "刪除"
#. js-lingui-id: EsGY/k
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Delete {fieldLabel} field?"
msgstr ""
msgstr "刪除 {fieldLabel} 欄位?"
#. js-lingui-id: j/OgnL
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Delete {objectLabel} object?"
msgstr ""
msgstr "刪除 {objectLabel} 物件?"
#. js-lingui-id: 65N6Yr
#: src/modules/settings/roles/role-permissions/object-level-permissions/object-form/components/SettingsRolePermissionsObjectLevelObjectFormObjectLevel.tsx
@@ -3126,6 +3140,11 @@ msgstr "刪除 API 密鑰"
msgid "Delete dashboard"
msgstr "刪除儀表板"
#. js-lingui-id: qnWLDf
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Delete dashboards"
msgstr "刪除儀表板"
#. js-lingui-id: gf2eXy
#: src/pages/settings/ai/components/SettingsAgentEvalsTab.tsx
msgid "Delete Evaluation Input"
@@ -3411,7 +3430,7 @@ msgstr "下載文件"
#. js-lingui-id: BU+6gf
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Download sample"
msgstr ""
msgstr "下載範例檔案"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
@@ -3421,9 +3440,15 @@ msgstr "將文件拖到這裡……"
#. js-lingui-id: euc6Ns
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutTabSettings.tsx
#: src/modules/action-menu/actions/record-actions/constants/WorkflowActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate"
msgstr ""
#. js-lingui-id: MR2sZ1
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Duplicate Dashboard"
msgstr "複製儀表板"
#. js-lingui-id: qaE1sk
#: src/modules/workflow/workflow-steps/components/WorkflowStepFooter.tsx
msgid "Duplicate node"
@@ -3816,7 +3841,7 @@ msgstr "輸入位於 0 和 59 之間的數字"
#. js-lingui-id: uhDeRP
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Enter number between 1 and 60"
msgstr ""
msgstr "輸入 1 至 60 之間的數字"
#. js-lingui-id: ahwn7G
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
@@ -3995,7 +4020,7 @@ msgstr ""
#. js-lingui-id: FDRUdE
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
msgid "Evaluating"
msgstr ""
msgstr "評估中"
#. js-lingui-id: Y3MReI
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -4311,6 +4336,11 @@ msgstr "無法創建{translatedMetadataName}。相關{relatedEntityNames}驗證
msgid "Failed to delete jobs. Please try again later."
msgstr "無法刪除工作。請稍後重試。"
#. js-lingui-id: NUmmdc
#: src/modules/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction.tsx
msgid "Failed to duplicate dashboard"
msgstr "複製儀表板失敗"
#. js-lingui-id: WYXxQF
#: src/modules/action-menu/actions/record-actions/single-record/workflow-actions/components/DuplicateWorkflowSingleRecordAction.tsx
msgid "Failed to duplicate workflow"
@@ -4365,7 +4395,7 @@ msgstr "更新價格失敗。"
#. js-lingui-id: QGaQRo
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Failed to update role"
msgstr ""
msgstr "更新角色失敗。"
#. js-lingui-id: h/0aT5
#: src/pages/settings/ai/components/SettingsAIRouterSettings.tsx
@@ -4433,7 +4463,7 @@ msgstr "字段"
#. js-lingui-id: LX8Pu1
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "Field deleted"
msgstr ""
msgstr "欄位已刪除"
#. js-lingui-id: nrXDdR
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -4635,7 +4665,7 @@ msgstr "功能 - 設定"
#. js-lingui-id: vYj1cC
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Gauge Chart"
msgstr ""
msgstr "儀表圖"
#. js-lingui-id: Weq9zb
#: src/pages/settings/SettingsWorkspace.tsx
@@ -4923,7 +4953,7 @@ msgstr "Http"
#. js-lingui-id: DvpBQM
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "HTTP Request"
msgstr ""
msgstr "HTTP請求"
#. js-lingui-id: 0yRnXS
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
@@ -4998,11 +5028,6 @@ msgstr "iFrame 設定"
msgid "iFrame Widget"
msgstr ""
#. js-lingui-id: YdCuhS
#: src/modules/command-menu/pages/page-layout/components/ChartSettings.tsx
msgid "IframeConfiguration is not supported"
msgstr "Iframe配置不支持"
#. js-lingui-id: ijW9MW
#: src/modules/settings/accounts/components/SettingsAccountsConnectionForm.tsx
msgid "IMAP Configuration"
@@ -5126,7 +5151,7 @@ msgstr "索引"
#. js-lingui-id: 623chP
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Infos"
msgstr ""
msgstr "資訊"
#. js-lingui-id: XU5AOg
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
@@ -5431,7 +5456,7 @@ msgstr "意大利語"
#. js-lingui-id: hgr8eo
#: src/modules/command-menu/pages/page-layout/utils/getDateGranularityPluralLabel.ts
msgid "items"
msgstr ""
msgstr "項目"
#. js-lingui-id: +qz/bj
#: src/modules/workflow/workflow-steps/workflow-actions/iterator-action/components/WorkflowEditActionIterator.tsx
@@ -5671,7 +5696,7 @@ msgstr ""
#. js-lingui-id: pFkLY3
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Line Chart"
msgstr ""
msgstr "折線圖"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
@@ -5980,7 +6005,7 @@ msgstr "消息同步不可用,因為服務已關閉"
#. js-lingui-id: t7TeQU
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "Messages"
msgstr ""
msgstr "訊息"
#. js-lingui-id: 6GBt0m
#: src/modules/settings/playground/constants/SettingsPlaygroundFormSchemaSelectOptions.ts
@@ -6026,7 +6051,7 @@ msgstr "最小範圍"
#. js-lingui-id: G6wJK8
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerCronForm.tsx
msgid "Minute value cannot exceed 60. For intervals greater than 60 minutes, use the \"Hours\" trigger type or a custom cron expression"
msgstr ""
msgstr "分鐘的值不能超過 60。若間隔大於 60 分鐘,請使用 \"Hours\" 觸發器類型或自訂 cron 表達式"
#. js-lingui-id: agRWc1
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
@@ -6445,7 +6470,7 @@ msgstr "無國家"
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
msgid "No data"
msgstr ""
msgstr "無數據"
#. js-lingui-id: B6C0XJ
#: src/modules/page-layout/widgets/components/PageLayoutWidgetNoDataDisplay.tsx
@@ -6517,6 +6542,11 @@ msgstr ""
msgid "No fields selected"
msgstr ""
#. js-lingui-id: eiEb25
#: src/modules/page-layout/widgets/fields/components/FieldsWidget.tsx
msgid "No fields to display"
msgstr "沒有可顯示的欄位"
#. js-lingui-id: 23Rceg
#: src/modules/activities/files/components/FilesCard.tsx
msgid "No Files"
@@ -6646,7 +6676,7 @@ msgstr "沒有結果"
#. js-lingui-id: FVzmGK
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "No role assigned to this member"
msgstr ""
msgstr "未為此成員指派任何角色"
#. js-lingui-id: 9mcJ/7
#: src/modules/settings/roles/components/SettingsRolesList.tsx
@@ -6809,7 +6839,7 @@ msgstr "對象"
#. js-lingui-id: 5Dll32
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "Object deleted"
msgstr ""
msgstr "物件已刪除"
#. js-lingui-id: Zrauom
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationForm.tsx
@@ -6986,7 +7016,7 @@ msgstr "打開"
#. js-lingui-id: DP5C7w
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Open in Roles"
msgstr ""
msgstr "在角色中開啟"
#. js-lingui-id: xGd6Ih
#: src/modules/auth/sign-in-up/components/EmailVerificationSent.tsx
@@ -7093,17 +7123,17 @@ msgstr "頁"
#. js-lingui-id: SZgFyi
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout"
msgstr ""
msgstr "頁面佈局"
#. js-lingui-id: HFlGEK
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout tab"
msgstr ""
msgstr "頁面佈局索引標籤"
#. js-lingui-id: sVcqjZ
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "page layout widget"
msgstr ""
msgstr "頁面佈局小工具"
#. js-lingui-id: boJlGf
#: src/pages/not-found/NotFound.tsx
@@ -7206,6 +7236,11 @@ msgstr "永久刪除。輸入天數。"
msgid "Permanently destroy dashboard"
msgstr "永久銷毀儀表板"
#. js-lingui-id: n7S2Oo
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
msgid "Permanently destroy dashboards"
msgstr "永久銷毀儀表板"
#. js-lingui-id: Bv3y5w
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
msgid "Permanently destroy record"
@@ -7272,7 +7307,7 @@ msgstr "圖片"
#. js-lingui-id: 3ubdv5
#: src/modules/command-menu/pages/page-layout/constants/GraphTypeInformation.ts
msgid "Pie Chart"
msgstr ""
msgstr "餅圖"
#. js-lingui-id: fQtTho
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
@@ -7379,7 +7414,7 @@ msgstr "正在填寫您的工作區數據..."
#. js-lingui-id: rNqTKZ
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Prefix"
msgstr ""
msgstr "前綴"
#. js-lingui-id: ut1ZY+
#: src/modules/settings/data-model/fields/forms/components/SettingsDataModelFieldIsUniqueForm.tsx
@@ -7392,6 +7427,11 @@ msgstr "防止用戶將相同的數值指定給不同的記錄"
msgid "Preview"
msgstr "預覽"
#. js-lingui-id: Fe5cbB
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "Preview Not Available"
msgstr "無法預覽"
#. js-lingui-id: DHhJ7s
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Previous"
@@ -7547,7 +7587,7 @@ msgstr ""
#: src/modules/page-layout/widgets/graph/graphWidgetAggregateChart/utils/getAggregateChartOperationLabel.ts
#: src/modules/command-menu/pages/page-layout/hooks/useChartSettingsValues.ts
msgid "Ratio"
msgstr ""
msgstr "比率"
#. js-lingui-id: BT7pY+
#: src/modules/settings/profile/components/SetOrChangePassword.tsx
@@ -7577,7 +7617,7 @@ msgstr "紀錄"
#. js-lingui-id: aGGOPJ
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpsertRecord.tsx
msgid "Record (ID)"
msgstr ""
msgstr "記錄(ID"
#. js-lingui-id: 2CUci6
#: src/modules/object-record/hooks/useBatchCreateManyRecords.ts
@@ -7870,7 +7910,7 @@ msgstr "針對此物件已撤銷"
#. js-lingui-id: E1BXUR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "role"
msgstr ""
msgstr "角色"
#. js-lingui-id: GDvlUT
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
@@ -8138,7 +8178,7 @@ msgstr "搜索操作"
#. js-lingui-id: 996xRf
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Search options"
msgstr ""
msgstr "搜尋選項"
#. js-lingui-id: IMeaSJ
#: src/modules/action-menu/actions/record-agnostic-actions/constants/RecordAgnosticActionsConfig.tsx
@@ -8372,7 +8412,7 @@ msgstr "選擇要使用的工作表"
#. js-lingui-id: iWf0Zj
#: src/modules/command-menu/pages/page-layout/components/dropdown-content/ChartRatioOptionValueSelectionDropdownContent.tsx
msgid "Select value"
msgstr ""
msgstr "選擇一個值"
#. js-lingui-id: AXTJAW
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
@@ -8940,7 +8980,7 @@ msgstr "成功合併了 {recordCount} 條記錄"
#. js-lingui-id: QJz8/3
#: src/modules/command-menu/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
msgid "Suffix"
msgstr ""
msgstr "後綴"
#. js-lingui-id: nyQWMb
#: src/modules/spreadsheet-import/components/MatchColumnSelectFieldSelectDropdownContent.tsx
@@ -9332,6 +9372,11 @@ msgstr "此操作無法撤銷。這將永久將您從此工作區中移除。"
msgid "This database value overrides environment settings. "
msgstr "此資料庫值覆蓋環境設置。"
#. js-lingui-id: hMvPrD
#: src/modules/activities/files/components/DocumentViewer.tsx
msgid "This file type cannot be previewed. Please download the file to view it."
msgstr "此檔案類型無法預覽。請下載該檔案以檢視。"
#. js-lingui-id: E4JJ5C
#: src/modules/object-record/record-index/components/RecordIndexRemoveSortingModal.tsx
msgid "This is required to enable manual row reordering."
@@ -9385,12 +9430,12 @@ msgstr "這將取消預定的計劃變更並保持您目前的計劃 ({planKeyWo
#. js-lingui-id: XGDxrH
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
msgid "This will permanently delete the field and all its data from {objectLabel}. Type \"yes\" to confirm."
msgstr ""
msgstr "這將從 {objectLabel} 中永久刪除該欄位及其所有資料。輸入 \"yes\" 以確認。"
#. js-lingui-id: L85ZX9
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
msgid "This will permanently delete the object and all its records. Type \"yes\" to confirm."
msgstr ""
msgstr "這將永久刪除該物件及其所有記錄。輸入 \"yes\" 以確認。"
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
@@ -9704,7 +9749,7 @@ msgstr "唯一欄位"
#: src/modules/command-menu/pages/page-layout/constants/settings/SuffixSetting.ts
#: src/modules/command-menu/pages/page-layout/constants/settings/PrefixSetting.ts
msgid "unit"
msgstr ""
msgstr "單位"
#. js-lingui-id: Ef7StM
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
@@ -9777,7 +9822,7 @@ msgstr "更新"
#. js-lingui-id: 5bRMKt
#: src/modules/settings/members/components/MemberPermissionsTab.tsx
msgid "Update role"
msgstr ""
msgstr "更新角色"
#. js-lingui-id: DUqztb
#: src/modules/views/components/UpdateViewButtonGroup.tsx
@@ -1,7 +1,10 @@
import { MultipleRecordsActionKeys } from '@/action-menu/actions/record-actions/multiple-records/types/MultipleRecordsActionKeys';
import { NoSelectionRecordActionKeys } from '@/action-menu/actions/record-actions/no-selection/types/NoSelectionRecordActionsKeys';
import { CancelDashboardSingleRecordAction } from '@/action-menu/actions/record-actions/single-record/dashboard-actions/components/CancelDashboardSingleRecordAction';
import { DuplicateDashboardSingleRecordAction } from '@/action-menu/actions/record-actions/single-record/dashboard-actions/components/DuplicateDashboardSingleRecordAction';
import { EditDashboardSingleRecordAction } from '@/action-menu/actions/record-actions/single-record/dashboard-actions/components/EditDashboardSingleRecordAction';
import { SaveDashboardSingleRecordAction } from '@/action-menu/actions/record-actions/single-record/dashboard-actions/components/SaveDashboardSingleRecordAction';
import { DashboardSingleRecordActionKeys } from '@/action-menu/actions/record-actions/single-record/dashboard-actions/types/DashboardSingleRecordActionKeys';
import { SingleRecordActionKeys } from '@/action-menu/actions/record-actions/single-record/types/SingleRecordActionsKey';
import { inheritActionsFromDefaultConfig } from '@/action-menu/actions/record-actions/utils/inheritActionsFromDefaultConfig';
import { ActionScope } from '@/action-menu/actions/types/ActionScope';
@@ -10,7 +13,12 @@ import { ActionViewType } from '@/action-menu/actions/types/ActionViewType';
import { PageLayoutSingleRecordActionKeys } from '@/page-layout/actions/PageLayoutSingleRecordActionKeys';
import { msg } from '@lingui/core/macro';
import { isDefined } from 'twenty-shared/utils';
import { IconDeviceFloppy, IconPencil, IconX } from 'twenty-ui/display';
import {
IconCopyPlus,
IconDeviceFloppy,
IconPencil,
IconX,
} from 'twenty-ui/display';
export const DASHBOARD_ACTIONS_CONFIG = inheritActionsFromDefaultConfig({
config: {
@@ -66,6 +74,26 @@ export const DASHBOARD_ACTIONS_CONFIG = inheritActionsFromDefaultConfig({
availableOn: [ActionViewType.PAGE_EDIT_MODE],
component: <CancelDashboardSingleRecordAction />,
},
[DashboardSingleRecordActionKeys.DUPLICATE_DASHBOARD]: {
key: DashboardSingleRecordActionKeys.DUPLICATE_DASHBOARD,
label: msg`Duplicate Dashboard`,
shortLabel: msg`Duplicate`,
isPinned: false,
position: 6,
Icon: IconCopyPlus,
type: ActionType.Standard,
scope: ActionScope.RecordSelection,
shouldBeRegistered: ({ selectedRecord }) =>
isDefined(selectedRecord) &&
!selectedRecord?.isRemote &&
!isDefined(selectedRecord?.deletedAt) &&
isDefined(selectedRecord?.pageLayoutId),
availableOn: [
ActionViewType.INDEX_PAGE_SINGLE_RECORD_SELECTION,
ActionViewType.SHOW_PAGE,
],
component: <DuplicateDashboardSingleRecordAction />,
},
},
actionKeys: [
NoSelectionRecordActionKeys.CREATE_NEW_RECORD,
@@ -74,6 +102,8 @@ export const DASHBOARD_ACTIONS_CONFIG = inheritActionsFromDefaultConfig({
SingleRecordActionKeys.DELETE,
SingleRecordActionKeys.DESTROY,
SingleRecordActionKeys.RESTORE,
MultipleRecordsActionKeys.DELETE,
MultipleRecordsActionKeys.DESTROY,
SingleRecordActionKeys.EXPORT_FROM_RECORD_SHOW,
SingleRecordActionKeys.NAVIGATE_TO_PREVIOUS_RECORD,
SingleRecordActionKeys.NAVIGATE_TO_NEXT_RECORD,
@@ -99,49 +129,57 @@ export const DASHBOARD_ACTIONS_CONFIG = inheritActionsFromDefaultConfig({
label: msg`Create new dashboard`,
},
[SingleRecordActionKeys.DELETE]: {
position: 6,
position: 7,
label: msg`Delete dashboard`,
},
[SingleRecordActionKeys.ADD_TO_FAVORITES]: {
position: 7,
isPinned: true,
[MultipleRecordsActionKeys.DELETE]: {
position: 12,
label: msg`Delete dashboards`,
},
[SingleRecordActionKeys.REMOVE_FROM_FAVORITES]: {
[SingleRecordActionKeys.ADD_TO_FAVORITES]: {
position: 8,
isPinned: true,
},
[SingleRecordActionKeys.EXPORT_FROM_RECORD_SHOW]: {
[SingleRecordActionKeys.REMOVE_FROM_FAVORITES]: {
position: 9,
isPinned: true,
},
[SingleRecordActionKeys.EXPORT_FROM_RECORD_SHOW]: {
position: 10,
label: msg`Export dashboard`,
},
[SingleRecordActionKeys.DESTROY]: {
position: 10,
position: 11,
label: msg`Permanently destroy dashboard`,
},
[MultipleRecordsActionKeys.DESTROY]: {
position: 13,
label: msg`Permanently destroy dashboards`,
},
[SingleRecordActionKeys.RESTORE]: {
position: 11,
position: 14,
label: msg`Restore dashboard`,
},
[NoSelectionRecordActionKeys.GO_TO_WORKFLOWS]: {
position: 12,
},
[NoSelectionRecordActionKeys.GO_TO_PEOPLE]: {
position: 13,
},
[NoSelectionRecordActionKeys.GO_TO_COMPANIES]: {
position: 14,
},
[NoSelectionRecordActionKeys.GO_TO_OPPORTUNITIES]: {
position: 15,
},
[NoSelectionRecordActionKeys.GO_TO_SETTINGS]: {
[NoSelectionRecordActionKeys.GO_TO_PEOPLE]: {
position: 16,
},
[NoSelectionRecordActionKeys.GO_TO_TASKS]: {
[NoSelectionRecordActionKeys.GO_TO_COMPANIES]: {
position: 17,
},
[NoSelectionRecordActionKeys.GO_TO_NOTES]: {
[NoSelectionRecordActionKeys.GO_TO_OPPORTUNITIES]: {
position: 18,
},
[NoSelectionRecordActionKeys.GO_TO_SETTINGS]: {
position: 19,
},
[NoSelectionRecordActionKeys.GO_TO_TASKS]: {
position: 20,
},
[NoSelectionRecordActionKeys.GO_TO_NOTES]: {
position: 21,
},
},
});
@@ -0,0 +1,38 @@
import { Action } from '@/action-menu/actions/components/Action';
import { useSelectedRecordIdOrThrow } from '@/action-menu/actions/record-actions/single-record/hooks/useSelectedRecordIdOrThrow';
import { useDuplicateDashboard } from '@/dashboards/hooks/useDuplicateDashboard';
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { useLingui } from '@lingui/react/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { AppPath } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { useNavigateApp } from '~/hooks/useNavigateApp';
export const DuplicateDashboardSingleRecordAction = () => {
const recordId = useSelectedRecordIdOrThrow();
const { duplicateDashboard } = useDuplicateDashboard();
const navigate = useNavigateApp();
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
const { t } = useLingui();
const handleClick = async () => {
const result = await duplicateDashboard(recordId);
if (isDefined(result) && isNonEmptyString(result.id)) {
enqueueSuccessSnackBar({
message: t`Dashboard duplicated successfully`,
});
navigate(AppPath.RecordShowPage, {
objectNameSingular: CoreObjectNameSingular.Dashboard,
objectRecordId: result.id,
});
} else {
enqueueErrorSnackBar({
message: t`Failed to duplicate dashboard`,
});
}
};
return <Action onClick={handleClick} />;
};
@@ -0,0 +1,3 @@
export enum DashboardSingleRecordActionKeys {
DUPLICATE_DASHBOARD = 'duplicate-dashboard-single-record',
}
@@ -5,8 +5,11 @@ import { EmailThreadMessageBody } from '@/activities/emails/components/EmailThre
import { EmailThreadMessageBodyPreview } from '@/activities/emails/components/EmailThreadMessageBodyPreview';
import { EmailThreadMessageReceivers } from '@/activities/emails/components/EmailThreadMessageReceivers';
import { EmailThreadMessageSender } from '@/activities/emails/components/EmailThreadMessageSender';
import { EmailThreadNotShared } from '@/activities/emails/components/EmailThreadNotShared';
import { type EmailThreadMessageParticipant } from '@/activities/emails/types/EmailThreadMessageParticipant';
import { FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED } from 'twenty-shared/constants';
import { MessageParticipantRole } from 'twenty-shared/types';
import { MessageChannelVisibility } from '~/generated/graphql';
const StyledThreadMessage = styled.div`
border-bottom: 1px solid ${({ theme }) => theme.border.color.light};
@@ -53,17 +56,24 @@ export const EmailThreadMessage = ({
return null;
}
const isRestricted =
body === FIELD_RESTRICTED_ADDITIONAL_PERMISSIONS_REQUIRED;
return (
<StyledThreadMessage
onClick={() => !isOpen && setIsOpen(true)}
style={{ cursor: isOpen ? 'auto' : 'pointer' }}
style={{ cursor: isOpen || isRestricted ? 'auto' : 'pointer' }}
>
<StyledThreadMessageHeader onClick={() => isOpen && setIsOpen(false)}>
<EmailThreadMessageSender sender={sender} sentAt={sentAt} />
{isOpen && <EmailThreadMessageReceivers receivers={receivers} />}
</StyledThreadMessageHeader>
<StyledThreadMessageBody>
{isOpen ? (
{isRestricted ? (
<EmailThreadNotShared
visibility={MessageChannelVisibility.METADATA}
/>
) : isOpen ? (
<EmailThreadMessageBody body={body} isDisplayed />
) : (
<EmailThreadMessageBodyPreview body={body} />
@@ -211,6 +211,7 @@ export const AttachmentList = ({
size="large"
isClosable
onClose={handleClosePreview}
ignoreContainer
>
<StyledModalHeader>
<StyledHeader>
@@ -15,7 +15,6 @@ import styled from '@emotion/styled';
import { useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { PREVIEWABLE_EXTENSIONS } from '@/activities/files/const/previewable-extensions.const';
import { FileIcon } from '@/file/components/FileIcon';
import { useHasPermissionFlag } from '@/settings/roles/hooks/useHasPermissionFlag';
import { IconCalendar, OverflowingTextWithTooltip } from 'twenty-ui/display';
@@ -90,10 +89,6 @@ export const AttachmentRow = ({
const { name: originalFileName, extension: attachmentFileExtension } =
getFileNameAndExtension(attachment.name);
const fileExtension =
attachmentFileExtension?.toLowerCase().replace('.', '') ?? '';
const isPreviewable = PREVIEWABLE_EXTENSIONS.includes(fileExtension);
const [attachmentFileName, setAttachmentFileName] =
useState(originalFileName);
@@ -180,22 +175,14 @@ export const AttachmentRow = ({
/>
) : (
<StyledLinkContainer>
{isPreviewable ? (
<StyledLink
onClick={handleOpenDocument}
href={attachment.fullPath}
>
<OverflowingTextWithTooltip text={attachment.name} />
</StyledLink>
) : (
<StyledLink
href={attachment.fullPath}
target="_blank"
rel="noopener noreferrer"
>
<OverflowingTextWithTooltip text={attachment.name} />
</StyledLink>
)}
<StyledLink
onClick={handleOpenDocument}
href={attachment.fullPath}
target="_blank"
rel="noopener noreferrer"
>
<OverflowingTextWithTooltip text={attachment.name} />
</StyledLink>
</StyledLinkContainer>
)}
</StyledLeftContent>
@@ -1,5 +1,7 @@
import { PREVIEWABLE_EXTENSIONS } from '@/activities/files/const/previewable-extensions.const';
import { downloadFile } from '@/activities/files/utils/downloadFile';
import { fetchCsvPreview } from '@/activities/files/utils/fetchCsvPreview';
import { getFileType } from '@/activities/files/utils/getFileType';
import DocViewer, { DocViewerRenderers } from '@cyntler/react-doc-viewer';
import '@cyntler/react-doc-viewer/dist/index.css';
import { useTheme } from '@emotion/react';
@@ -7,6 +9,8 @@ import styled from '@emotion/styled';
import { Trans } from '@lingui/react/macro';
import { useEffect, useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { IconDownload } from 'twenty-ui/display';
import { Button } from 'twenty-ui/input';
import { getFileNameAndExtension } from '~/utils/file/getFileNameAndExtension';
const StyledDocumentViewerContainer = styled.div`
@@ -37,6 +41,29 @@ const StyledDocumentViewerContainer = styled.div`
}
`;
const StyledUnavailablePreviewContainer = styled.div`
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
gap: ${({ theme }) => theme.spacing(4)};
padding: ${({ theme }) => theme.spacing(8)};
text-align: center;
`;
const StyledMessage = styled.div`
color: ${({ theme }) => theme.font.color.secondary};
font-size: ${({ theme }) => theme.font.size.lg};
max-width: 400px;
`;
const StyledTitle = styled.div`
color: ${({ theme }) => theme.font.color.primary};
font-size: ${({ theme }) => theme.font.size.xl};
font-weight: ${({ theme }) => theme.font.weight.semiBold};
`;
type DocumentViewerProps = {
documentName: string;
documentUrl: string;
@@ -77,6 +104,9 @@ export const DocumentViewer = ({
const { extension } = getFileNameAndExtension(documentName);
const fileExtension = extension?.toLowerCase().replace('.', '') ?? '';
const fileCategory = getFileType(documentName);
const isPreviewable = PREVIEWABLE_EXTENSIONS.includes(fileExtension);
const mimeType = PREVIEWABLE_EXTENSIONS.includes(fileExtension)
? MIME_TYPE_MAPPING[fileExtension]
: undefined;
@@ -89,6 +119,37 @@ export const DocumentViewer = ({
}
}, [documentUrl, fileExtension]);
if (!isPreviewable) {
return (
<StyledDocumentViewerContainer>
<StyledUnavailablePreviewContainer>
<StyledTitle>
<Trans>Preview Not Available</Trans>
</StyledTitle>
<StyledMessage>
{fileCategory === 'ARCHIVE' ? (
<Trans>
Archive files cannot be previewed. Please download the file to
access its contents.
</Trans>
) : (
<Trans>
This file type cannot be previewed. Please download the file to
view it.
</Trans>
)}
</StyledMessage>
<Button
Icon={IconDownload}
title="Download File"
onClick={() => downloadFile(documentUrl, documentName)}
variant="secondary"
/>
</StyledUnavailablePreviewContainer>
</StyledDocumentViewerContainer>
);
}
if (fileExtension === 'csv' && !isDefined(csvPreview))
return (
<StyledDocumentViewerContainer>
@@ -5,15 +5,23 @@ import { getActivityTargetObjectFieldIdName } from '@/activities/utils/getActivi
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { useGenerateDepthRecordGqlFieldsFromObject } from '@/object-record/graphql/record-gql-fields/hooks/useGenerateDepthRecordGqlFieldsFromObject';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { isDefined } from 'twenty-shared/utils';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { capitalize, isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated/graphql';
// do we need to test this?
export const useTimelineActivities = (
targetableObject: ActivityTargetableObject,
) => {
const targetableObjectFieldIdName = getActivityTargetObjectFieldIdName({
nameSingular: targetableObject.targetObjectNameSingular,
});
const isTimelineActivityMigrated = useIsFeatureEnabled(
FeatureFlagKey.IS_TIMELINE_ACTIVITY_MIGRATED,
);
const targetableObjectFieldIdName = isTimelineActivityMigrated
? `target${capitalize(targetableObject.targetObjectNameSingular)}Id`
: getActivityTargetObjectFieldIdName({
nameSingular: targetableObject.targetObjectNameSingular,
});
const { recordGqlFields: depthOneRecordGqlFields } =
useGenerateDepthRecordGqlFieldsFromObject({
@@ -1,5 +1,4 @@
import { useAgentChatContextOrThrow } from '@/ai/hooks/useAgentChatContextOrThrow';
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
import { useTheme } from '@emotion/react';
import styled from '@emotion/styled';
import { t } from '@lingui/core/macro';
@@ -43,8 +42,6 @@ const StyledErrorMessage = styled.div`
type AIChatErrorMessageProps = {
error: Error;
records?: ObjectRecord[];
isRetrying?: boolean;
};
export const AIChatErrorMessage = ({ error }: AIChatErrorMessageProps) => {
@@ -8,10 +8,7 @@ import { AgentMessageRole } from '@/ai/constants/AgentMessageRole';
import { AIChatAssistantMessageRenderer } from '@/ai/components/AIChatAssistantMessageRenderer';
import { AIChatErrorMessage } from '@/ai/components/AIChatErrorMessage';
import { AIChatErrorMessageWithRecordsContext } from '@/ai/components/internal/AIChatErrorMessageWithRecordsContext';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { LightCopyIconButton } from '@/object-record/record-field/ui/components/LightCopyIconButton';
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
import { type ExtendedUIMessage } from 'twenty-shared/ai';
import { isDefined } from 'twenty-shared/utils';
import { dateLocaleState } from '~/localization/states/dateLocaleState';
@@ -156,10 +153,6 @@ export const AIChatMessage = ({
const theme = useTheme();
const { localeCatalog } = useRecoilValue(dateLocaleState);
const contextStoreCurrentObjectMetadataItemId = useRecoilComponentValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
const showError =
isDefined(error) && message.role === AgentMessageRole.ASSISTANT;
@@ -201,12 +194,7 @@ export const AIChatMessage = ({
))}
</StyledFilesContainer>
)}
{showError &&
(contextStoreCurrentObjectMetadataItemId ? (
<AIChatErrorMessageWithRecordsContext error={error} />
) : (
<AIChatErrorMessage error={error} />
))}
{showError && <AIChatErrorMessage error={error} />}
{message.parts.length > 0 && message.metadata?.createdAt && (
<StyledMessageFooter className="message-footer">
<span>
@@ -14,14 +14,11 @@ import { AIChatMessage } from '@/ai/components/AIChatMessage';
import { AIChatSkeletonLoader } from '@/ai/components/internal/AIChatSkeletonLoader';
import { AgentChatContextPreview } from '@/ai/components/internal/AgentChatContextPreview';
import { SendMessageButton } from '@/ai/components/internal/SendMessageButton';
import { SendMessageWithRecordsContextButton } from '@/ai/components/internal/SendMessageWithRecordsContextButton';
import { AI_CHAT_INPUT_ID } from '@/ai/constants/AiChatInputId';
import { AI_CHAT_SCROLL_WRAPPER_ID } from '@/ai/constants/AiChatScrollWrapperId';
import { useAIChatFileUpload } from '@/ai/hooks/useAIChatFileUpload';
import { useAgentChatContextOrThrow } from '@/ai/hooks/useAgentChatContextOrThrow';
import { agentChatInputState } from '@/ai/states/agentChatInputState';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
import { t } from '@lingui/core/macro';
import { useState } from 'react';
import { useRecoilState } from 'recoil';
@@ -71,10 +68,6 @@ export const AIChatTab = () => {
const [agentChatInput, setAgentChatInput] =
useRecoilState(agentChatInputState);
const contextStoreCurrentObjectMetadataItemId = useRecoilComponentValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
const { uploadFiles } = useAIChatFileUpload();
const { createChatThread } = useCreateNewAIChatThread();
const { navigateCommandMenu } = useCommandMenu();
@@ -145,11 +138,7 @@ export const AIChatTab = () => {
onClick={() => createChatThread()}
/>
<AgentChatFileUploadButton />
{contextStoreCurrentObjectMetadataItemId ? (
<SendMessageWithRecordsContextButton />
) : (
<SendMessageButton />
)}
<SendMessageButton />
</StyledButtonsContainer>
</StyledInputArea>
</>
@@ -1,8 +1,66 @@
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
import {
parseRecordReference,
RECORD_REFERENCE_REGEX,
RecordLink,
} from '@/ai/components/RecordLink';
import { useTheme } from '@emotion/react';
import styled from '@emotion/styled';
import { lazy, Suspense } from 'react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { isDefined } from 'twenty-shared/utils';
const TextWithRecordLinks = ({ text }: { text: string }) => {
const parts: React.ReactNode[] = [];
let lastIndex = 0;
RECORD_REFERENCE_REGEX.lastIndex = 0;
let match;
while ((match = RECORD_REFERENCE_REGEX.exec(text)) !== null) {
if (match.index > lastIndex) {
parts.push(text.slice(lastIndex, match.index));
}
const parsed = parseRecordReference(match[0]);
if (isDefined(parsed)) {
parts.push(
<RecordLink
key={match.index}
objectNameSingular={parsed.objectNameSingular}
recordId={parsed.recordId}
displayName={parsed.displayName}
/>,
);
}
lastIndex = match.index + match[0].length;
}
if (lastIndex < text.length) {
parts.push(text.slice(lastIndex));
}
return <>{parts}</>;
};
const processChildrenForRecordLinks = (
children: React.ReactNode,
): React.ReactNode => {
if (typeof children === 'string') {
return <TextWithRecordLinks text={children} />;
}
if (Array.isArray(children)) {
return children.map((child, index) => (
<span key={index}>{processChildrenForRecordLinks(child)}</span>
));
}
return children;
};
const MarkdownRenderer = lazy(async () => {
const [{ default: Markdown }, { default: remarkGfm }] = await Promise.all([
@@ -26,6 +84,10 @@ const MarkdownRenderer = lazy(async () => {
<table>{children}</table>
</TableScrollContainer>
),
p: ({ children }) => <p>{processChildrenForRecordLinks(children)}</p>,
li: ({ children }) => (
<li>{processChildrenForRecordLinks(children)}</li>
),
}}
>
{children}
@@ -0,0 +1,62 @@
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
import { getLinkToShowPage } from '@/object-metadata/utils/getLinkToShowPage';
import { isNonEmptyString } from '@sniptt/guards';
import { AvatarChip, ChipVariant, LinkChip } from 'twenty-ui/components';
type RecordLinkProps = {
objectNameSingular: string;
recordId: string;
displayName: string;
};
export const RecordLink = ({
objectNameSingular,
recordId,
displayName,
}: RecordLinkProps) => {
const { objectMetadataItem } = useObjectMetadataItem({
objectNameSingular,
});
if (!objectMetadataItem || !isNonEmptyString(recordId)) {
return <span>{displayName}</span>;
}
const linkToShowPage = getLinkToShowPage(objectNameSingular, {
id: recordId,
});
return (
<LinkChip
label={displayName}
to={linkToShowPage}
variant={ChipVariant.Highlighted}
leftComponent={
<AvatarChip
placeholder={displayName}
placeholderColorSeed={recordId}
avatarType="rounded"
avatarUrl=""
/>
}
/>
);
};
export const RECORD_REFERENCE_REGEX =
/\[\[record:([a-zA-Z]+):([a-f0-9-]+):([^\]]+)\]\]/g;
export const parseRecordReference = (match: string) => {
const regex = /\[\[record:([a-zA-Z]+):([a-f0-9-]+):([^\]]+)\]\]/;
const result = regex.exec(match);
if (!result) {
return null;
}
return {
objectNameSingular: result[1],
recordId: result[2],
displayName: result[3],
};
};
@@ -53,12 +53,36 @@ const StyledToggleButton = styled.div<{ isExpandable: boolean }>`
gap: ${({ theme }) => theme.spacing(1)};
padding: ${({ theme }) => theme.spacing(1)} 0;
transition: color ${({ theme }) => theme.animation.duration.normal}s;
justify-content: space-between;
width: 100%;
&:hover {
color: ${({ theme }) => theme.font.color.secondary};
}
`;
const StyledToolName = styled.span`
background: ${({ theme }) => theme.background.transparent.light};
border-radius: ${({ theme }) => theme.border.radius.xs};
color: ${({ theme }) => theme.font.color.light};
font-family: ${({ theme }) => theme.font.family};
font-size: ${({ theme }) => theme.font.size.xs};
padding: ${({ theme }) => theme.spacing(0.5)}
${({ theme }) => theme.spacing(1)};
`;
const StyledLeftContent = styled.div`
display: flex;
align-items: center;
gap: ${({ theme }) => theme.spacing(1)};
`;
const StyledRightContent = styled.div`
display: flex;
align-items: center;
gap: ${({ theme }) => theme.spacing(2)};
`;
const StyledDisplayMessage = styled.span`
color: ${({ theme }) => theme.font.color.tertiary};
font-size: ${({ theme }) => theme.font.size.md};
@@ -120,13 +144,20 @@ export const ToolStepRenderer = ({ toolPart }: { toolPart: ToolUIPart }) => {
if (!output && !hasError) {
return (
<StyledContainer>
<StyledLoadingContainer>
<ShimmeringText>
<StyledDisplayMessage>
{getToolDisplayMessage(input, toolName, false)}
</StyledDisplayMessage>
</ShimmeringText>
</StyledLoadingContainer>
<StyledToggleButton isExpandable={false}>
<StyledLeftContent>
<StyledLoadingContainer>
<ShimmeringText>
<StyledDisplayMessage>
{getToolDisplayMessage(input, toolName, false)}
</StyledDisplayMessage>
</ShimmeringText>
</StyledLoadingContainer>
</StyledLeftContent>
<StyledRightContent>
<StyledToolName>{toolName}</StyledToolName>
</StyledRightContent>
</StyledToggleButton>
</StyledContainer>
);
}
@@ -153,16 +184,21 @@ export const ToolStepRenderer = ({ toolPart }: { toolPart: ToolUIPart }) => {
onClick={() => setIsExpanded(!isExpanded)}
isExpandable={isExpandable}
>
<StyledIconTextContainer>
<ToolIcon size={theme.icon.size.sm} />
<StyledDisplayMessage>{displayMessage}</StyledDisplayMessage>
</StyledIconTextContainer>
{isExpandable &&
(isExpanded ? (
<IconChevronUp size={theme.icon.size.sm} />
) : (
<IconChevronDown size={theme.icon.size.sm} />
))}
<StyledLeftContent>
<StyledIconTextContainer>
<ToolIcon size={theme.icon.size.sm} />
<StyledDisplayMessage>{displayMessage}</StyledDisplayMessage>
</StyledIconTextContainer>
</StyledLeftContent>
<StyledRightContent>
<StyledToolName>{toolName}</StyledToolName>
{isExpandable &&
(isExpanded ? (
<IconChevronUp size={theme.icon.size.sm} />
) : (
<IconChevronDown size={theme.icon.size.sm} />
))}
</StyledRightContent>
</StyledToggleButton>
{isExpandable && (
@@ -1,14 +0,0 @@
import { AIChatErrorMessage } from '@/ai/components/AIChatErrorMessage';
import { useFindManyRecordsSelectedInContextStore } from '@/context-store/hooks/useFindManyRecordsSelectedInContextStore';
export const AIChatErrorMessageWithRecordsContext = ({
error,
}: {
error: Error;
}) => {
const { records } = useFindManyRecordsSelectedInContextStore({
limit: 10,
});
return <AIChatErrorMessage error={error} records={records} />;
};
@@ -1,8 +1,5 @@
import { AgentChatContextRecordPreview } from '@/ai/components/internal/AgentChatContextRecordPreview';
import { agentChatSelectedFilesState } from '@/ai/states/agentChatSelectedFilesState';
import { agentChatUploadedFilesState } from '@/ai/states/agentChatUploadedFilesState';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
import styled from '@emotion/styled';
import { useRecoilState } from 'recoil';
import { AgentChatFilePreview } from './AgentChatFilePreview';
@@ -29,15 +26,18 @@ export const AgentChatContextPreview = () => {
agentChatUploadedFilesState,
);
const handleRemoveUploadedFile = async (fileIndex: number) => {
const handleRemoveUploadedFile = (fileIndex: number) => {
setAgentChatUploadedFiles(
agentChatUploadedFiles.filter((f, index) => fileIndex !== index),
agentChatUploadedFiles.filter((_, index) => fileIndex !== index),
);
};
const contextStoreCurrentObjectMetadataItemId = useRecoilComponentValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
const hasFiles =
agentChatSelectedFiles.length > 0 || agentChatUploadedFiles.length > 0;
if (!hasFiles) {
return null;
}
return (
<StyledContainer>
@@ -62,13 +62,6 @@ export const AgentChatContextPreview = () => {
isUploading={false}
/>
))}
{contextStoreCurrentObjectMetadataItemId && (
<AgentChatContextRecordPreview
contextStoreCurrentObjectMetadataItemId={
contextStoreCurrentObjectMetadataItemId
}
/>
)}
</StyledPreviewsContainer>
</StyledContainer>
);
@@ -1,102 +0,0 @@
import { isAgentChatCurrentContextActiveState } from '@/ai/states/isAgentChatCurrentContextActiveState';
import { CommandMenuContextRecordChipAvatars } from '@/command-menu/components/CommandMenuContextRecordChipAvatars';
import { getSelectedRecordsContextText } from '@/command-menu/utils/getRecordContextText';
import { useFindManyRecordsSelectedInContextStore } from '@/context-store/hooks/useFindManyRecordsSelectedInContextStore';
import { useObjectMetadataItemById } from '@/object-metadata/hooks/useObjectMetadataItemById';
import { useTheme } from '@emotion/react';
import styled from '@emotion/styled';
import { t } from '@lingui/core/macro';
import { useRecoilState } from 'recoil';
import { MultipleAvatarChip } from 'twenty-ui/components';
import { IconReload, IconX } from 'twenty-ui/display';
const StyledRightIconContainer = styled.div`
display: flex;
border-left: 1px solid ${({ theme }) => theme.border.color.light};
svg {
cursor: pointer;
}
`;
const StyledChipWrapper = styled.div<{ isActive: boolean }>`
opacity: ${({ isActive }) => (isActive ? 1 : 0.7)};
`;
export const AgentChatContextRecordPreview = ({
contextStoreCurrentObjectMetadataItemId,
}: {
contextStoreCurrentObjectMetadataItemId: string;
}) => {
const theme = useTheme();
const { records, totalCount } = useFindManyRecordsSelectedInContextStore({
limit: 3,
});
const { objectMetadataItem } = useObjectMetadataItemById({
objectId: contextStoreCurrentObjectMetadataItemId,
});
const [isAgentChatCurrentContextActive, setIsAgentChatCurrentContextActive] =
useRecoilState(isAgentChatCurrentContextActiveState);
const Avatars = records.map((record) => (
// @todo move this components to be less specific. (Outside of CommandMenu
<CommandMenuContextRecordChipAvatars
objectMetadataItem={objectMetadataItem}
key={record.id}
record={record}
/>
));
const recordSelectionContextChip = {
// @todo move this utils outside of CommandMenu
text: getSelectedRecordsContextText(
objectMetadataItem,
records,
totalCount ?? 0,
),
Icons: Avatars,
withIconBackground: false,
};
const toggleIsAgentChatCurrentContextActive = () => {
setIsAgentChatCurrentContextActive(!isAgentChatCurrentContextActive);
};
return (
<>
{records.length !== 0 && (
<StyledChipWrapper isActive={isAgentChatCurrentContextActive}>
<MultipleAvatarChip
Icons={recordSelectionContextChip.Icons}
text={
isAgentChatCurrentContextActive
? recordSelectionContextChip.text
: t`Context`
}
maxWidth={180}
rightComponent={
<StyledRightIconContainer>
{isAgentChatCurrentContextActive ? (
<IconX
size={theme.icon.size.sm}
color={theme.font.color.secondary}
onClick={toggleIsAgentChatCurrentContextActive}
/>
) : (
<IconReload
size={theme.icon.size.sm}
color={theme.font.color.secondary}
onClick={toggleIsAgentChatCurrentContextActive}
/>
)}
</StyledRightIconContainer>
}
/>
</StyledChipWrapper>
)}
</>
);
};
@@ -1,18 +1,13 @@
import { AI_CHAT_INPUT_ID } from '@/ai/constants/AiChatInputId';
import { useAgentChatContextOrThrow } from '@/ai/hooks/useAgentChatContextOrThrow';
import { agentChatInputState } from '@/ai/states/agentChatInputState';
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
import { useHotkeysOnFocusedElement } from '@/ui/utilities/hotkey/hooks/useHotkeysOnFocusedElement';
import { t } from '@lingui/core/macro';
import { useRecoilValue } from 'recoil';
import { Key } from 'ts-key-enum';
import { Button } from 'twenty-ui/input';
export const SendMessageButton = ({
records,
}: {
records?: ObjectRecord[];
}) => {
export const SendMessageButton = () => {
const agentChatInput = useRecoilValue(agentChatInputState);
const { handleSendMessage, isLoading } = useAgentChatContextOrThrow();
@@ -21,7 +16,7 @@ export const SendMessageButton = ({
callback: (event: KeyboardEvent) => {
if (!event.ctrlKey && !event.metaKey) {
event.preventDefault();
handleSendMessage(records);
handleSendMessage();
}
},
focusId: AI_CHAT_INPUT_ID,
@@ -34,7 +29,7 @@ export const SendMessageButton = ({
return (
<Button
hotkeys={agentChatInput && !isLoading ? ['⏎'] : undefined}
onClick={() => handleSendMessage(records)}
onClick={() => handleSendMessage()}
disabled={!agentChatInput || isLoading}
variant="primary"
accent="blue"
@@ -1,10 +0,0 @@
import { SendMessageButton } from '@/ai/components/internal/SendMessageButton';
import { useFindManyRecordsSelectedInContextStore } from '@/context-store/hooks/useFindManyRecordsSelectedInContextStore';
export const SendMessageWithRecordsContextButton = () => {
const { records } = useFindManyRecordsSelectedInContextStore({
limit: 10,
});
return <SendMessageButton records={records} />;
};
@@ -1,6 +1,5 @@
import { createContext } from 'react';
import { type ExtendedUIMessage } from 'twenty-shared/ai';
import { type ObjectRecord } from '../../object-record/types/ObjectRecord';
export type AgentChatContextValue = {
messages: ExtendedUIMessage[];
@@ -8,7 +7,7 @@ export type AgentChatContextValue = {
isLoading: boolean;
error?: Error;
handleSendMessage: (records?: ObjectRecord[]) => Promise<void>;
handleSendMessage: () => Promise<void>;
handleRetry: () => void;
};
@@ -1,17 +1,13 @@
import { useRecoilComponentValue } from '@/ui/utilities/state/component-state/hooks/useRecoilComponentValue';
import { useRecoilState, useRecoilValue, useSetRecoilState } from 'recoil';
import { useGetBrowsingContext } from '@/ai/hooks/useBrowsingContext';
import { agentChatSelectedFilesState } from '@/ai/states/agentChatSelectedFilesState';
import { agentChatUploadedFilesState } from '@/ai/states/agentChatUploadedFilesState';
import { currentAIChatThreadState } from '@/ai/states/currentAIChatThreadState';
import { isAgentChatCurrentContextActiveState } from '@/ai/states/isAgentChatCurrentContextActiveState';
import { getTokenPair } from '@/apollo/utils/getTokenPair';
import { renewToken } from '@/auth/services/AuthService';
import { tokenPairState } from '@/auth/states/tokenPairState';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { useGetObjectMetadataItemById } from '@/object-metadata/hooks/useGetObjectMetadataItemById';
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
import { useChat } from '@ai-sdk/react';
import { DefaultChatTransport } from 'ai';
import { type ExtendedUIMessage } from 'twenty-shared/ai';
@@ -24,15 +20,7 @@ import { agentChatInputState } from '../states/agentChatInputState';
export const useAgentChat = (uiMessages: ExtendedUIMessage[]) => {
const setTokenPair = useSetRecoilState(tokenPairState);
const { getObjectMetadataItemById } = useGetObjectMetadataItemById();
const contextStoreCurrentObjectMetadataItemId = useRecoilComponentValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
const isAgentChatCurrentContextActive = useRecoilValue(
isAgentChatCurrentContextActiveState,
);
const { getBrowsingContext } = useGetBrowsingContext();
const agentChatSelectedFiles = useRecoilValue(agentChatSelectedFilesState);
@@ -118,7 +106,7 @@ export const useAgentChat = (uiMessages: ExtendedUIMessage[]) => {
const isLoading =
!currentAIChatThread || isStreaming || agentChatSelectedFiles.length > 0;
const handleSendMessage = async (records?: ObjectRecord[]) => {
const handleSendMessage = async () => {
if (agentChatInput.trim() === '' || isLoading === true) {
return;
}
@@ -126,20 +114,7 @@ export const useAgentChat = (uiMessages: ExtendedUIMessage[]) => {
const content = agentChatInput.trim();
setAgentChatInput('');
const recordIdsByObjectMetadataNameSingular = [];
if (
isAgentChatCurrentContextActive === true &&
isDefined(records) &&
isDefined(contextStoreCurrentObjectMetadataItemId)
) {
recordIdsByObjectMetadataNameSingular.push({
objectMetadataNameSingular: getObjectMetadataItemById(
contextStoreCurrentObjectMetadataItemId,
).nameSingular,
recordIds: records.map(({ id }) => id),
});
}
const browsingContext = getBrowsingContext();
sendMessage(
{
@@ -149,7 +124,7 @@ export const useAgentChat = (uiMessages: ExtendedUIMessage[]) => {
{
body: {
threadId: currentAIChatThread,
recordIdsByObjectMetadataNameSingular,
browsingContext,
},
},
);
@@ -5,10 +5,13 @@ import { type SelectOption } from 'twenty-ui/input';
import { DEFAULT_FAST_MODEL } from '@/ai/constants/DefaultFastModel';
import { DEFAULT_SMART_MODEL } from '@/ai/constants/DefaultSmartModel';
export const useAiModelOptions = (): SelectOption<string>[] => {
export const useAiModelOptions = (
includeDeprecated = false,
): SelectOption<string>[] => {
const aiModels = useRecoilValue(aiModelsState);
return aiModels
.filter((model) => includeDeprecated || !model.deprecated)
.map((model) => ({
value: model.modelId,
label:
@@ -19,3 +22,26 @@ export const useAiModelOptions = (): SelectOption<string>[] => {
}))
.sort((a, b) => a.label.localeCompare(b.label));
};
export const useAiModelLabel = (modelId: string | undefined): string => {
const aiModels = useRecoilValue(aiModelsState);
if (!modelId) {
return '';
}
const model = aiModels.find((m) => m.modelId === modelId);
if (!model) {
return modelId;
}
if (
model.modelId === DEFAULT_FAST_MODEL ||
model.modelId === DEFAULT_SMART_MODEL
) {
return model.label;
}
return `${model.label} (${model.provider})`;
};
@@ -0,0 +1,126 @@
import { type BrowsingContext } from '@/ai/types/BrowsingContext';
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { contextStoreCurrentViewIdComponentState } from '@/context-store/states/contextStoreCurrentViewIdComponentState';
import { contextStoreCurrentViewTypeComponentState } from '@/context-store/states/contextStoreCurrentViewTypeComponentState';
import { contextStoreFiltersComponentState } from '@/context-store/states/contextStoreFiltersComponentState';
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
import { ContextStoreViewType } from '@/context-store/types/ContextStoreViewType';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { coreViewFromViewIdFamilySelector } from '@/views/states/selectors/coreViewFromViewIdFamilySelector';
import { useRecoilCallback } from 'recoil';
export const useGetBrowsingContext = () => {
const getBrowsingContext = useRecoilCallback(
({ snapshot }) =>
(): BrowsingContext | null => {
const instanceId = MAIN_CONTEXT_STORE_INSTANCE_ID;
const viewType = snapshot
.getLoadable(
contextStoreCurrentViewTypeComponentState.atomFamily({
instanceId,
}),
)
.getValue();
const objectMetadataItemId = snapshot
.getLoadable(
contextStoreCurrentObjectMetadataItemIdComponentState.atomFamily({
instanceId,
}),
)
.getValue();
const objectMetadataItems = snapshot
.getLoadable(objectMetadataItemsState)
.getValue();
const objectMetadataItem = objectMetadataItems.find(
(item) => item.id === objectMetadataItemId,
);
if (!objectMetadataItem) {
return null;
}
if (viewType === ContextStoreViewType.ShowPage) {
const targetedRecordsRule = snapshot
.getLoadable(
contextStoreTargetedRecordsRuleComponentState.atomFamily({
instanceId,
}),
)
.getValue();
if (
targetedRecordsRule.mode !== 'selection' ||
targetedRecordsRule.selectedRecordIds.length !== 1
) {
return null;
}
return {
type: 'recordPage',
objectNameSingular: objectMetadataItem.nameSingular,
recordId: targetedRecordsRule.selectedRecordIds[0],
};
}
if (
viewType === ContextStoreViewType.Table ||
viewType === ContextStoreViewType.Kanban
) {
const currentViewId = snapshot
.getLoadable(
contextStoreCurrentViewIdComponentState.atomFamily({
instanceId,
}),
)
.getValue();
const currentView = snapshot
.getLoadable(
coreViewFromViewIdFamilySelector({
viewId: currentViewId ?? '',
}),
)
.getValue();
if (!currentView) {
return null;
}
const contextStoreFilters = snapshot
.getLoadable(
contextStoreFiltersComponentState.atomFamily({
instanceId,
}),
)
.getValue();
const filterDescriptions = contextStoreFilters.map((filter) => {
const fieldMetadataItem = objectMetadataItem.fields.find(
(field) => field.id === filter.fieldMetadataId,
);
const fieldLabel = fieldMetadataItem?.label ?? 'Unknown field';
return `${fieldLabel} ${filter.operand} "${filter.displayValue}"`;
});
return {
type: 'listView',
objectNameSingular: objectMetadataItem.nameSingular,
viewId: currentView.id,
viewName: currentView.name,
filterDescriptions,
};
}
return null;
},
[],
);
return { getBrowsingContext };
};
@@ -1,6 +0,0 @@
import { atom } from 'recoil';
export const isAgentChatCurrentContextActiveState = atom<boolean>({
key: 'ai/isAgentChatCurrentContextActiveState',
default: true,
});

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