Merge branch 'main' into c--deprecate-grid-position-2
This commit is contained in:
@@ -7,6 +7,17 @@ inputs:
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- name: Free disk space for install
|
||||
if: runner.os == 'Linux'
|
||||
shell: bash
|
||||
run: |
|
||||
# Default GitHub images ship large SDKs this repo does not use; removing
|
||||
# them avoids ENOSPC when restoring or linking a full Yarn node_modules.
|
||||
sudo rm -rf /usr/share/dotnet
|
||||
sudo rm -rf /usr/local/lib/android
|
||||
sudo rm -rf /opt/ghc
|
||||
sudo rm -rf /opt/hostedtoolcache/CodeQL
|
||||
df -h
|
||||
- name: Cache primary key builder
|
||||
id: globals
|
||||
shell: bash
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "2.1.0",
|
||||
"version": "2.2.0",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
|
||||
@@ -26,6 +26,7 @@ const program = new Command(packageJson.name)
|
||||
'--skip-local-instance',
|
||||
'Skip the local Twenty instance setup prompt',
|
||||
)
|
||||
.option('-y, --yes', 'Auto-confirm prompts (e.g. start existing container)')
|
||||
.helpOption('-h, --help', 'Display this help message.')
|
||||
.action(
|
||||
async (
|
||||
@@ -36,6 +37,7 @@ const program = new Command(packageJson.name)
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
yes?: boolean;
|
||||
},
|
||||
) => {
|
||||
if (directory && !/^[a-z0-9-]+$/.test(directory)) {
|
||||
@@ -59,6 +61,7 @@ const program = new Command(packageJson.name)
|
||||
displayName: options?.displayName,
|
||||
description: options?.description,
|
||||
skipLocalInstance: options?.skipLocalInstance,
|
||||
yes: options?.yes,
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
@@ -11,7 +11,9 @@ import * as path from 'path';
|
||||
import { basename } from 'path';
|
||||
import {
|
||||
authLoginOAuth,
|
||||
checkDockerRunning,
|
||||
ConfigService,
|
||||
containerExists,
|
||||
detectLocalServer,
|
||||
serverStart,
|
||||
type ServerStartResult,
|
||||
@@ -27,6 +29,7 @@ type CreateAppOptions = {
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
yes?: boolean;
|
||||
};
|
||||
|
||||
export class CreateAppCommand {
|
||||
@@ -71,7 +74,7 @@ export class CreateAppCommand {
|
||||
let serverResult: ServerStartResult | undefined;
|
||||
|
||||
if (!options.skipLocalInstance) {
|
||||
const shouldStartServer = await this.shouldStartServer();
|
||||
const shouldStartServer = await this.shouldStartServer(options.yes);
|
||||
|
||||
if (shouldStartServer) {
|
||||
const startResult = await serverStart({
|
||||
@@ -223,13 +226,35 @@ export class CreateAppCommand {
|
||||
);
|
||||
}
|
||||
|
||||
private async shouldStartServer(): Promise<boolean> {
|
||||
private async shouldStartServer(autoConfirm?: boolean): Promise<boolean> {
|
||||
const existingServerUrl = await detectLocalServer();
|
||||
|
||||
if (existingServerUrl) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (checkDockerRunning() && containerExists()) {
|
||||
if (autoConfirm) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const { startExisting } = await inquirer.prompt([
|
||||
{
|
||||
type: 'confirm',
|
||||
name: 'startExisting',
|
||||
message:
|
||||
'An existing Twenty server container was found. Would you like to start it?',
|
||||
default: true,
|
||||
},
|
||||
]);
|
||||
|
||||
return startExisting;
|
||||
}
|
||||
|
||||
if (autoConfirm) {
|
||||
return true;
|
||||
}
|
||||
|
||||
const { startDocker } = await inquirer.prompt([
|
||||
{
|
||||
type: 'confirm',
|
||||
|
||||
@@ -8,7 +8,6 @@ export default defineApplication({
|
||||
universalIdentifier: APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
displayName: 'Postcard App',
|
||||
description: 'Send postcards easily with Twenty',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -4,6 +4,5 @@ export default defineApplication({
|
||||
universalIdentifier: 'e1e2e3e4-e5e6-4000-8000-000000000001',
|
||||
displayName: 'Root App',
|
||||
description: 'An app with all entities at root level',
|
||||
icon: 'IconFolder',
|
||||
defaultRoleUniversalIdentifier: 'e1e2e3e4-e5e6-4000-8000-000000000002',
|
||||
});
|
||||
|
||||
@@ -5,7 +5,6 @@ export default defineApplication({
|
||||
universalIdentifier: '4ec0391d-18d5-411c-b2f3-266ddc1c3ef7',
|
||||
displayName: 'Rich App',
|
||||
description: 'A simple rich app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-client-sdk",
|
||||
"version": "2.1.0",
|
||||
"version": "2.2.0",
|
||||
"sideEffects": false,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
|
||||
@@ -580,6 +580,7 @@ type Application {
|
||||
id: UUID!
|
||||
name: String!
|
||||
description: String
|
||||
logo: String
|
||||
version: String
|
||||
universalIdentifier: String!
|
||||
packageJsonChecksum: String
|
||||
@@ -2202,7 +2203,6 @@ type MarketplaceApp {
|
||||
id: String!
|
||||
name: String!
|
||||
description: String!
|
||||
icon: String!
|
||||
author: String!
|
||||
category: String!
|
||||
logo: String
|
||||
|
||||
@@ -414,6 +414,7 @@ export interface Application {
|
||||
id: Scalars['UUID']
|
||||
name: Scalars['String']
|
||||
description?: Scalars['String']
|
||||
logo?: Scalars['String']
|
||||
version?: Scalars['String']
|
||||
universalIdentifier: Scalars['String']
|
||||
packageJsonChecksum?: Scalars['String']
|
||||
@@ -1940,7 +1941,6 @@ export interface MarketplaceApp {
|
||||
id: Scalars['String']
|
||||
name: Scalars['String']
|
||||
description: Scalars['String']
|
||||
icon: Scalars['String']
|
||||
author: Scalars['String']
|
||||
category: Scalars['String']
|
||||
logo?: Scalars['String']
|
||||
@@ -3314,6 +3314,7 @@ export interface ApplicationGenqlSelection{
|
||||
id?: boolean | number
|
||||
name?: boolean | number
|
||||
description?: boolean | number
|
||||
logo?: boolean | number
|
||||
version?: boolean | number
|
||||
universalIdentifier?: boolean | number
|
||||
packageJsonChecksum?: boolean | number
|
||||
@@ -4923,7 +4924,6 @@ export interface MarketplaceAppGenqlSelection{
|
||||
id?: boolean | number
|
||||
name?: boolean | number
|
||||
description?: boolean | number
|
||||
icon?: boolean | number
|
||||
author?: boolean | number
|
||||
category?: boolean | number
|
||||
logo?: boolean | number
|
||||
|
||||
@@ -1257,6 +1257,9 @@ export default {
|
||||
"description": [
|
||||
1
|
||||
],
|
||||
"logo": [
|
||||
1
|
||||
],
|
||||
"version": [
|
||||
1
|
||||
],
|
||||
@@ -4415,9 +4418,6 @@ export default {
|
||||
"description": [
|
||||
1
|
||||
],
|
||||
"icon": [
|
||||
1
|
||||
],
|
||||
"author": [
|
||||
1
|
||||
],
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -219,13 +219,31 @@ The scaffolder already started a local Twenty server for you. To manage it later
|
||||
| `yarn twenty server start --port 3030` | Start on a custom port |
|
||||
| `yarn twenty server start --test` | Start a separate test instance on port 2021 |
|
||||
| `yarn twenty server stop` | Stop the server (preserves data) |
|
||||
| `yarn twenty server status` | Show server status, URL, and credentials |
|
||||
| `yarn twenty server status` | Show server status, URL, version, and credentials |
|
||||
| `yarn twenty server logs` | Stream server logs |
|
||||
| `yarn twenty server logs --lines 100` | Show the last 100 log lines |
|
||||
| `yarn twenty server reset` | Delete all data and start fresh |
|
||||
| `yarn twenty server upgrade` | Pull the latest `twenty-app-dev` image and recreate the container |
|
||||
| `yarn twenty server upgrade 2.2.0` | Upgrade to a specific version |
|
||||
|
||||
Data is persisted across restarts in two Docker volumes (`twenty-app-dev-data` for PostgreSQL, `twenty-app-dev-storage` for files). Use `reset` to wipe everything and start fresh.
|
||||
|
||||
### Upgrading the server image
|
||||
|
||||
Use `yarn twenty server upgrade` to check for a newer `twenty-app-dev` Docker image and update the container. The command pulls the image, compares it against the one the container was created from, and only recreates the container if the image actually changed. Your data volumes are preserved — only the container is replaced.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Upgrade to the latest version (skips recreation if already up to date)
|
||||
yarn twenty server upgrade
|
||||
|
||||
# Upgrade to a specific version
|
||||
yarn twenty server upgrade 2.2.0
|
||||
```
|
||||
|
||||
If a newer image is available and the container was running, the upgrade command automatically starts a new container with the updated image. Run `yarn twenty server start` afterward to wait for it to become healthy. If the image hasn't changed, the container is left untouched.
|
||||
|
||||
You can verify the running version with `yarn twenty server status`, which displays the `APP_VERSION` from the container.
|
||||
|
||||
### Running a test instance
|
||||
|
||||
Pass `--test` to any `server` command to manage a second, fully isolated instance — useful for running integration tests or experimenting without touching your main dev data.
|
||||
@@ -234,9 +252,10 @@ Pass `--test` to any `server` command to manage a second, fully isolated instanc
|
||||
|---------|-------------|
|
||||
| `yarn twenty server start --test` | Start the test instance (defaults to port 2021) |
|
||||
| `yarn twenty server stop --test` | Stop the test instance |
|
||||
| `yarn twenty server status --test` | Show test instance status, URL, and credentials |
|
||||
| `yarn twenty server status --test` | Show test instance status, URL, version, and credentials |
|
||||
| `yarn twenty server logs --test` | Stream test instance logs |
|
||||
| `yarn twenty server reset --test` | Wipe test data and start fresh |
|
||||
| `yarn twenty server upgrade --test` | Upgrade the test instance image |
|
||||
|
||||
The test instance runs in its own Docker container (`twenty-app-dev-test`) with dedicated volumes (`twenty-app-dev-test-data`, `twenty-app-dev-test-storage`) and config, so it can run in parallel with your main instance without conflicts. Combine `--test` with `--port` to override the default 2021.
|
||||
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -77,7 +77,6 @@ export default defineApplication({
|
||||
universalIdentifier: '39783023-bcac-41e3-b0d2-ff1944d8465d',
|
||||
displayName: 'My Twenty App',
|
||||
description: 'My first Twenty app',
|
||||
icon: 'IconWorld',
|
||||
applicationVariables: {
|
||||
DEFAULT_RECIPIENT_NAME: {
|
||||
universalIdentifier: '19e94e59-d4fe-4251-8981-b96d0a9f74de',
|
||||
|
||||
@@ -57,7 +57,7 @@
|
||||
"@react-email/components": "^0.5.3",
|
||||
"@react-pdf/renderer": "^4.1.6",
|
||||
"@scalar/api-reference-react": "^0.4.36",
|
||||
"@sentry/react": "^10.27.0",
|
||||
"@sentry/react": "^10.51.0",
|
||||
"@tiptap/core": "3.4.2",
|
||||
"@tiptap/extension-bold": "3.4.2",
|
||||
"@tiptap/extension-document": "3.4.2",
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Huidige werksruimtelid nie gevind nie."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Paneelbord suksesvol gedupliseer"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "velde"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Geen modelle beskikbaar nie. Stel asseblief KI-modelle in jou werkruimte
|
||||
msgid "No notes"
|
||||
msgstr "Geen notas"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objekte"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objekte"
|
||||
msgid "Objects"
|
||||
msgstr "Objekte"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Soek vir 'n objek"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Fases"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Hierdie aksie sal hierdie vouer en al {2} navigasiekieslysitems daarin u
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Hierdie aksie sal hierdie vouer en die navigasiekieslysitem daarin uitvee. Wil jy voortgaan?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "لم يتم العثور على عضو مساحة العمل الحال
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "تم تكرار لوحة القيادة بنجاح"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "حقول"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "لا توجد نماذج متاحة. يرجى تهيئة نماذج ال
|
||||
msgid "No notes"
|
||||
msgstr "لا توجد ملاحظات"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "الكائنات"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "الكائنات"
|
||||
msgid "Objects"
|
||||
msgstr "كائنات"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "ابحث عن كائن"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "مراحل"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "سيؤدي هذا الإجراء إلى حذف هذا المجلد وج
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "سيؤدي هذا الإجراء إلى حذف هذا المجلد وعنصر قائمة التنقل الموجود بداخله. هل تريد المتابعة؟"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membre de l'espai de treball actual no trobat."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Quadre de comandament duplicat correctament"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "camps"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "No hi ha models disponibles. Si us plau, configureu models d'IA a la con
|
||||
msgid "No notes"
|
||||
msgstr "Sense notes"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objectes"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objectes"
|
||||
msgid "Objects"
|
||||
msgstr "Objectes"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Cerca un objecte"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Etapes"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Aquesta acció suprimirà aquesta carpeta i tots els {2} elements del me
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Aquesta acció suprimirà aquesta carpeta i l'element del menú de navegació que conté. Vols continuar?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Současný člen pracovního prostoru nebyl nalezen."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Ovládací panel byl úspěšně duplikován"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "pole"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nejsou dostupné žádné modely. Prosím, nakonfigurujte AI modely v na
|
||||
msgid "No notes"
|
||||
msgstr "Žádné poznámky"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objekty"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objekty"
|
||||
msgid "Objects"
|
||||
msgstr "Objekty"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Hledat objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Etapy"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Tato akce smaže tuto složku včetně všech {2} položek navigačního
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Tato akce smaže tuto složku a položku navigačního menu uvnitř. Chcete pokračovat?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nuværende arbejdsområde medlem ikke fundet."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Dashboard duplikeret med succes"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "felter"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Ingen modeller tilgængelige. Konfigurer venligst AI-modeller i dine arb
|
||||
msgid "No notes"
|
||||
msgstr "Ingen noter"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objekter"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objekter"
|
||||
msgid "Objects"
|
||||
msgstr "Objekter"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Søg efter et objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Faser"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Denne handling vil slette denne mappe og alle de {2} navigationsmenupunk
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Denne handling vil slette denne mappe og navigationsmenupunktet i den. Vil du fortsætte?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Aktuelles Arbeitsbereichsmitglied nicht gefunden."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Dashboard erfolgreich dupliziert"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "Felder"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Keine Modelle verfügbar. Bitte konfigurieren Sie KI-Modelle in Ihren Ar
|
||||
msgid "No notes"
|
||||
msgstr "Keine Notizen"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "Objekte"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "Objekte"
|
||||
msgid "Objects"
|
||||
msgstr "Objekte"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Ein Objekt suchen"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Phasen"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Diese Aktion löscht diesen Ordner und alle {2} enthaltenen Navigationsm
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Diese Aktion löscht diesen Ordner und das enthaltene Navigationsmenüelement. Möchten Sie fortfahren?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Το τρέχον μέλος του χώρου εργασίας δεν
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυ
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "πεδία"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Δεν υπάρχουν διαθέσιμα μοντέλα. Παρακα
|
||||
msgid "No notes"
|
||||
msgstr "Δεν υπάρχουν σημειώσεις"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "αντικείμενα"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "αντικείμενα"
|
||||
msgid "Objects"
|
||||
msgstr "Αντικείμενα"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Αναζήτηση αντικειμένου"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13909,7 +13925,6 @@ msgstr "Στάδια"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14719,11 +14734,6 @@ msgstr "Αυτή η ενέργεια θα διαγράψει αυτόν τον
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Αυτή η ενέργεια θα διαγράψει αυτόν τον φάκελο και το στοιχείο μενού πλοήγησης μέσα. Θέλετε να συνεχίσετε;"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2024,6 +2024,7 @@ msgstr "Apostrophe and dot"
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4334,7 +4335,6 @@ msgstr "Current workspace member not found."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4499,6 +4499,7 @@ msgstr "Dashboard duplicated successfully"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6948,6 +6949,8 @@ msgstr "fields"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9672,6 +9675,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10356,6 +10360,11 @@ msgstr "No models available. Please configure AI models in your workspace settin
|
||||
msgid "No notes"
|
||||
msgstr "No notes"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr "No object found"
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10802,6 +10811,7 @@ msgstr "objects"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10809,6 +10819,11 @@ msgstr "objects"
|
||||
msgid "Objects"
|
||||
msgstr "Objects"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr "Objects and fields managed by this app"
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12878,6 +12893,7 @@ msgid "Search an object"
|
||||
msgstr "Search an object"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13925,7 +13941,6 @@ msgstr "Stages"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14765,11 +14780,6 @@ msgstr "This action will delete this folder and all {2} navigation menu items in
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr "This app"
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Miembro actual del espacio de trabajo no encontrado."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Se duplicó el tablero con éxito"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "No hay modelos disponibles. Por favor configure modelos de IA en la conf
|
||||
msgid "No notes"
|
||||
msgstr "Sin notas"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objetos"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objetos"
|
||||
msgid "Objects"
|
||||
msgstr "Objetos"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Buscar un objeto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Fases"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Esta acción eliminará esta carpeta y todos los {2} elementos del menú
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Esta acción eliminará esta carpeta y el elemento del menú de navegación que contiene. ¿Deseas continuar?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nykyistä työtilan jäsentä ei löytynyt."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Hallintapaneeli monistettiin onnistuneesti"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "kentät"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Malitavoa ei ole saatavilla. Konfiguroi AI-mallit työtilan asetuksista.
|
||||
msgid "No notes"
|
||||
msgstr "Ei muistiinpanoja"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objektit"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objektit"
|
||||
msgid "Objects"
|
||||
msgstr "Objektit"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Etsi objekti"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Vaiheet"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Tämä toiminto poistaa tämän kansion ja kaikki {2} navigointivalikon
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Tämä toiminto poistaa tämän kansion ja sen sisällä olevan navigointivalikon valikkokohdan. Haluatko jatkaa?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membre actuel de l'espace de travail introuvable."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Tableau de bord dupliqué avec succès"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "champs"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Aucun modèle disponible. Veuillez configurer les modèles IA dans les p
|
||||
msgid "No notes"
|
||||
msgstr "Aucune note"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objets"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objets"
|
||||
msgid "Objects"
|
||||
msgstr "Objets"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Rechercher un objet"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Étapes"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Cette action supprimera ce dossier et les {2} éléments du menu de navi
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Cette action supprimera ce dossier ainsi que l'élément du menu de navigation qu'il contient. Voulez-vous continuer ?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
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
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "חבר המרחב הנוכחי לא נמצא."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "לוח הבקרה שוכפל בהצלחה"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "שדות"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "אין מודלים זמינים. נא להגדיר מודלים לבי
|
||||
msgid "No notes"
|
||||
msgstr "אין הערות"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "אובייקטים"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "אובייקטים"
|
||||
msgid "Objects"
|
||||
msgstr "אובייקטים"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "חפש אובייקט"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "שלבים"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "פעולה זו תמחק את התיקייה הזו ואת כל {2} הפ
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "פעולה זו תמחק את התיקייה הזו ואת הפריט בתפריט הניווט שבתוכה. האם להמשיך?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nem található az aktuális munkaterület tagja."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Irányítópult sikeresen duplikálva"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "mezők"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nincsenek elérhető modellek. Kérjük, állítsa be a MI modelleket a
|
||||
msgid "No notes"
|
||||
msgstr "Nincsenek jegyzetek"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objektumok"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objektumok"
|
||||
msgid "Objects"
|
||||
msgstr "Objektumok"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Objektum keresése"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Szakaszok"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Ez a művelet törli ezt a mappát és a benne lévő összes {2} navig
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Ez a művelet törli ezt a mappát és a benne lévő navigációs menüelemet. Szeretné folytatni?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membro corrente dello spazio di lavoro non trovato."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Cruscotto duplicato con successo"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "campi"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nessun modello disponibile. Configurare i modelli AI nelle impostazioni
|
||||
msgid "No notes"
|
||||
msgstr "Nessuna nota"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "oggetti"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "oggetti"
|
||||
msgid "Objects"
|
||||
msgstr "Oggetti"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Cerca un oggetto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Fasi"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Questa azione eliminerà questa cartella e tutte le {2} voci del menu di
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Questa azione eliminerà questa cartella e la voce del menu di navigazione al suo interno. Vuoi continuare?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "現在のワークスペースメンバーが見つかりませんでし
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "ダッシュボードが正常に複製されました"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "フィールド"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "モデルが利用可能ではありません。ワークスペース設
|
||||
msgid "No notes"
|
||||
msgstr "ノートなし"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "オブジェクト"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "オブジェクト"
|
||||
msgid "Objects"
|
||||
msgstr "オブジェクト"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "オブジェクトを検索"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "ステージ"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "このフォルダーと中の {2} 件のナビゲーションメニュ
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "このフォルダーと中のナビゲーションメニュー項目が削除されます。続行しますか?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "현재 워크스페이스 멤버를 찾을 수 없습니다."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "대시보드가 성공적으로 복제되었습니다"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "필드"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "사용 가능한 모델이 없습니다. 작업 공간 설정에서 AI
|
||||
msgid "No notes"
|
||||
msgstr "메모 없음"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "개체"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "개체"
|
||||
msgid "Objects"
|
||||
msgstr "개체"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "개체 검색"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "단계"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "이 작업을 수행하면 이 폴더와 내부의 내비게이션 메
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "이 작업을 수행하면 이 폴더와 내부의 내비게이션 메뉴 항목이 삭제됩니다. 계속하시겠습니까?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Huidige werkruimte lid niet gevonden."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Dashboard succesvol gedupliceerd"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "velden"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Geen modellen beschikbaar. Configureer AI-modellen in je werkruimte-inst
|
||||
msgid "No notes"
|
||||
msgstr "Geen notities"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objecten"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objecten"
|
||||
msgid "Objects"
|
||||
msgstr "Objecten"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Zoek een object"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Stadia"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Deze actie verwijdert deze map en alle {2} navigatiemenu-items erin. Wil
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Deze actie verwijdert deze map en het navigatiemenu-item erin. Wil je doorgaan?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nåværende arbeidsområdemedlem ikke funnet."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Dashbordet ble duplisert"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "felter"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Ingen modeller tilgjengelig. Vennligst konfigurer AI-modeller i arbeidso
|
||||
msgid "No notes"
|
||||
msgstr "Ingen notater"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objekter"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objekter"
|
||||
msgid "Objects"
|
||||
msgstr "Objekter"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Søk etter et objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Faser"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Denne handlingen vil slette denne mappen og alle {2} navigasjonsmenyelem
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Denne handlingen vil slette denne mappen og navigasjonsmenyelementet i den. Vil du fortsette?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nie znaleziono bieżącego członka przestrzeni roboczej."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Panel został zduplikowany pomyślnie"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "pola"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Brak dostępnych modeli. Skonfiguruj modele AI w ustawieniach przestrzen
|
||||
msgid "No notes"
|
||||
msgstr "Brak notatek"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "obiekty"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "obiekty"
|
||||
msgid "Objects"
|
||||
msgstr "Obiekty"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Szukaj obiektu"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Etapy"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Ta akcja usunie ten folder oraz {2, plural, one {# pozycję menu nawigac
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Ta akcja usunie ten folder oraz element menu nawigacji w środku. Czy chcesz kontynuować?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2024,6 +2024,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4334,7 +4335,6 @@ msgstr ""
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4499,6 +4499,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6948,6 +6949,8 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9649,6 +9652,7 @@ msgstr ""
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10333,6 +10337,11 @@ msgstr ""
|
||||
msgid "No notes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10779,6 +10788,7 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10786,6 +10796,11 @@ msgstr ""
|
||||
msgid "Objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12855,6 +12870,7 @@ msgid "Search an object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13902,7 +13918,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14710,11 +14725,6 @@ msgstr ""
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Painel duplicado com sucesso"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nenhum modelo disponível. Por favor, configure modelos de IA nas config
|
||||
msgid "No notes"
|
||||
msgstr "Nenhuma nota"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objetos"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objetos"
|
||||
msgid "Objects"
|
||||
msgstr "Objetos"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Pesquisar um objeto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Fases"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Esta ação excluirá esta pasta e todos os {2} itens do menu de navega
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Esta ação excluirá esta pasta e o item do menu de navegação dentro dela. Deseja continuar?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membro atual do espaço de trabalho não encontrado."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Painel duplicado com sucesso"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "campos"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nenhum modelo disponível. Por favor, configure modelos de IA nas config
|
||||
msgid "No notes"
|
||||
msgstr "Sem notas"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "objetos"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "objetos"
|
||||
msgid "Objects"
|
||||
msgstr "Objetos"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Pesquisar um objeto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Fases"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Esta ação eliminará esta pasta e todos os {2} itens do menu de navega
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Membru curent al spațiului de lucru nu a fost găsit."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Tabloul de bord a fost duplicat cu succes"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "câmpuri"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Nu există modele disponibile. Vă rugăm să configurați modelele AI
|
||||
msgid "No notes"
|
||||
msgstr "Nicio notă"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "obiecte"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "obiecte"
|
||||
msgid "Objects"
|
||||
msgstr "Obiecte"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Caută un obiect"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Etape"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Această acțiune va șterge acest folder și toate cele {2} elemente di
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Această acțiune va șterge acest folder și elementul din meniul de navigare din interior. Doriți să continuați?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
Binary file not shown.
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Тренутни члан радног простора није про
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Контролна табла је успешно дуплирана"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "поља"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Нема доступних модела. Молимо вас, конф
|
||||
msgid "No notes"
|
||||
msgstr "Нема белешки"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "објекти"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "објекти"
|
||||
msgid "Objects"
|
||||
msgstr "Објекти"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Претражите објекат"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Фазе"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Ова радња ће избрисати ову фасциклу и с
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Ова радња ће избрисати ову фасциклу и ставку навигационог менија унутар ње. Да ли желите да наставите?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Nuvarande arbetsytemedlem inte hittad."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Instrumentpanelen duplicerades framgångsrikt"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "fält"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9656,6 +9659,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10340,6 +10344,11 @@ msgstr "Inga modeller tillgängliga. Vänligen konfigurera AI-modeller i dina ar
|
||||
msgid "No notes"
|
||||
msgstr "Inga anteckningar"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10786,6 +10795,7 @@ msgstr "objekt"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10793,6 +10803,11 @@ msgstr "objekt"
|
||||
msgid "Objects"
|
||||
msgstr "Objekt"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12864,6 +12879,7 @@ msgid "Search an object"
|
||||
msgstr "Sök efter ett objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13911,7 +13927,6 @@ msgstr "Stadier"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14723,11 +14738,6 @@ msgstr "Denna åtgärd kommer att ta bort denna mapp och alla {2} navigationsmen
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Denna åtgärd kommer att ta bort denna mapp och navigationsmenyalternativet i den. Vill du fortsätta?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Geçerli çalışma alanı üyesi bulunamadı."
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Gösterge paneli başarıyla çoğaltıldı"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "alanlar"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Model yok. Lütfen iş yeri ayarlarında AI modellerini yapılandırın.
|
||||
msgid "No notes"
|
||||
msgstr "Not yok"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "nesneler"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "nesneler"
|
||||
msgid "Objects"
|
||||
msgstr "Nesneler"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Bir nesne ara"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Aşamalar"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Bu işlem bu klasörü ve içindeki tüm {2} gezinti menüsü öğesini
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Bu işlem bu klasörü ve içindeki gezinti menüsü öğesini silecek. Devam etmek istiyor musunuz?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Поточний учасник робочого простору не
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Інформаційну панель успішно продубльо
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "поля"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Немає доступних моделей. Увімкніть кон
|
||||
msgid "No notes"
|
||||
msgstr "Немає приміток"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "об'єкти"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "об'єкти"
|
||||
msgid "Objects"
|
||||
msgstr "Об'єкти"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Пошук об’єкта"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Стадії"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14717,11 +14732,6 @@ msgstr "Ця дія видалить цю папку та всі {2} пункт
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Ця дія видалить цю папку та пункт навігаційного меню усередині. Продовжити?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "Không tìm thấy thành viên hiện tại của không gian làm vi
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "Nhân bản thành công bảng điều khiển"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "trường"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "Không có mô hình nào có sẵn. Vui lòng cấu hình mô hình AI
|
||||
msgid "No notes"
|
||||
msgstr "Không có ghi chú"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "đối tượng"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "đối tượng"
|
||||
msgid "Objects"
|
||||
msgstr "Các đối tượng"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "Tìm kiếm một đối tượng"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "Giai đoạn"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "Hành động này sẽ xóa thư mục này và toàn bộ {2} mục me
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "Hành động này sẽ xóa thư mục này và mục menu điều hướng bên trong. Bạn có muốn tiếp tục không?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "未找到当前工作区成员。"
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "仪表板复制成功"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "字段"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "没有可用的模型。请在工作区设置中配置 AI 模型。"
|
||||
msgid "No notes"
|
||||
msgstr "无笔记"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "对象"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "对象"
|
||||
msgid "Objects"
|
||||
msgstr "对象"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "搜索对象"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "阶段"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "此操作将删除此文件夹及其中的 {2} 个导航菜单项。是
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "此操作将删除此文件夹及其中的导航菜单项。是否继续?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -2029,6 +2029,7 @@ msgstr ""
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
msgid "App"
|
||||
@@ -4339,7 +4340,6 @@ msgstr "找不到當前工作區成員。"
|
||||
#. js-lingui-id: 8Tg/JR
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
@@ -4504,6 +4504,7 @@ msgstr "儀表板複製成功"
|
||||
|
||||
#. js-lingui-id: HKH+W+
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
@@ -6953,6 +6954,8 @@ msgstr "字段"
|
||||
#: src/pages/settings/data-model/SettingsObjectIndexTable.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectDetailPage.tsx
|
||||
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutRecordPageWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelPermissionFieldSelectFieldMenu.tsx
|
||||
@@ -9654,6 +9657,7 @@ msgstr ""
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/pages/settings/ai/constants/SettingsSkillTableMetadata.ts
|
||||
#: src/pages/settings/ai/constants/SettingsAiAgentTableMetadata.ts
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
@@ -10338,6 +10342,11 @@ msgstr "無模型可用。請在工作區設置中配置AI模型。"
|
||||
msgid "No notes"
|
||||
msgstr "沒有筆記"
|
||||
|
||||
#. js-lingui-id: 14uqQk
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
@@ -10784,6 +10793,7 @@ msgstr "對象"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldSelect.tsx
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
@@ -10791,6 +10801,11 @@ msgstr "對象"
|
||||
msgid "Objects"
|
||||
msgstr "對象"
|
||||
|
||||
#. js-lingui-id: tmyEbd
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
msgid "Objects and fields managed by this app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /8Yh6y
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
msgid "Objects and fields permissions settings"
|
||||
@@ -12860,6 +12875,7 @@ msgid "Search an object"
|
||||
msgstr "搜索對象"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
@@ -13907,7 +13923,6 @@ msgstr "階段"
|
||||
|
||||
#. js-lingui-id: TJBHlP
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsToolsTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "Standard"
|
||||
@@ -14715,11 +14730,6 @@ msgstr "此操作將刪除此資料夾及其中所有 {2} 個導覽選單項目
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "此操作將刪除此資料夾及其中的導覽選單項目。您要繼續嗎?"
|
||||
|
||||
#. js-lingui-id: 6jJt3O
|
||||
#: src/modules/applications/hooks/useApplicationChipData.ts
|
||||
msgid "This app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WCa/7U
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationFrontComponentPreviewTab.tsx
|
||||
msgid "This component runs without a UI and renders nothing here."
|
||||
|
||||
@@ -1,10 +1,19 @@
|
||||
import { useApplicationChipData } from '@/applications/hooks/useApplicationChipData';
|
||||
import { styled } from '@linaria/react';
|
||||
import { Avatar } from 'twenty-ui/display';
|
||||
import {
|
||||
Avatar,
|
||||
type AvatarSize,
|
||||
OverflowingTextWithTooltip,
|
||||
} from 'twenty-ui/display';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
type AppChipProps = {
|
||||
applicationId: string;
|
||||
size?: AvatarSize;
|
||||
applicationId?: string | null;
|
||||
fallbackApplicationData?: {
|
||||
logo?: string | null;
|
||||
name?: string | null;
|
||||
};
|
||||
className?: string;
|
||||
};
|
||||
|
||||
@@ -20,29 +29,30 @@ const StyledContainer = styled.div`
|
||||
overflow: hidden;
|
||||
`;
|
||||
|
||||
const StyledLabel = styled.span`
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
`;
|
||||
|
||||
export const AppChip = ({ applicationId, className }: AppChipProps) => {
|
||||
const { applicationChipData } = useApplicationChipData({ applicationId });
|
||||
export const AppChip = ({
|
||||
applicationId,
|
||||
size = 'sm',
|
||||
fallbackApplicationData,
|
||||
className,
|
||||
}: AppChipProps) => {
|
||||
const { applicationChipData } = useApplicationChipData({
|
||||
applicationId,
|
||||
fallbackApplicationData,
|
||||
});
|
||||
|
||||
return (
|
||||
<StyledContainer className={className}>
|
||||
<Avatar
|
||||
type="app"
|
||||
size="sm"
|
||||
size={size}
|
||||
avatarUrl={applicationChipData.logo}
|
||||
placeholder={applicationChipData.name}
|
||||
placeholderColorSeed={applicationChipData.seed}
|
||||
color={applicationChipData.colors?.color}
|
||||
backgroundColor={applicationChipData.colors?.backgroundColor}
|
||||
borderColor={applicationChipData.colors?.borderColor}
|
||||
/>
|
||||
<StyledLabel title={applicationChipData.name}>
|
||||
{applicationChipData.name}
|
||||
</StyledLabel>
|
||||
<OverflowingTextWithTooltip text={applicationChipData.name} />
|
||||
</StyledContainer>
|
||||
);
|
||||
};
|
||||
|
||||
@@ -1,41 +1,29 @@
|
||||
import { useApplicationAvatarColors } from '@/applications/hooks/useApplicationAvatarColors';
|
||||
import { Avatar, OverflowingTextWithTooltip } from 'twenty-ui/display';
|
||||
|
||||
type ApplicationDisplayData = {
|
||||
id?: string | null;
|
||||
name?: string | null;
|
||||
universalIdentifier?: string | null;
|
||||
logoUrl?: string | null;
|
||||
applicationRegistration?: {
|
||||
logoUrl?: string | null;
|
||||
} | null;
|
||||
};
|
||||
import { type ApplicationDisplayData } from '@/applications/types/applicationDisplayData.type';
|
||||
import { AppChip } from '@/applications/components/AppChip';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { styled } from '@linaria/react';
|
||||
|
||||
type ApplicationDisplayProps = {
|
||||
application: ApplicationDisplayData;
|
||||
application?: ApplicationDisplayData;
|
||||
};
|
||||
|
||||
const StyledAppChip = styled(AppChip)`
|
||||
color: ${themeCssVariables.font.color.primary};
|
||||
font-size: ${themeCssVariables.font.size.md};
|
||||
gap: ${themeCssVariables.spacing[2]};
|
||||
`;
|
||||
|
||||
export const ApplicationDisplay = ({
|
||||
application,
|
||||
}: ApplicationDisplayProps) => {
|
||||
const colors = useApplicationAvatarColors(application);
|
||||
const name = application.name ?? '';
|
||||
const logoUrl =
|
||||
application.logoUrl ?? application.applicationRegistration?.logoUrl;
|
||||
|
||||
return (
|
||||
<>
|
||||
<Avatar
|
||||
type="app"
|
||||
size="md"
|
||||
avatarUrl={logoUrl ?? undefined}
|
||||
placeholder={name}
|
||||
placeholderColorSeed={application.universalIdentifier ?? name}
|
||||
color={colors?.color}
|
||||
backgroundColor={colors?.backgroundColor}
|
||||
borderColor={colors?.borderColor}
|
||||
/>
|
||||
<OverflowingTextWithTooltip text={name} />
|
||||
</>
|
||||
<StyledAppChip
|
||||
size="md"
|
||||
applicationId={application?.id}
|
||||
fallbackApplicationData={{
|
||||
logo: application?.logo,
|
||||
name: application?.name,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
+1
@@ -11,6 +11,7 @@ export const APPLICATION_FRAGMENT = gql`
|
||||
id
|
||||
name
|
||||
description
|
||||
logo
|
||||
version
|
||||
universalIdentifier
|
||||
applicationRegistrationId
|
||||
|
||||
@@ -6,6 +6,7 @@ export const FIND_MANY_APPLICATIONS = gql`
|
||||
id
|
||||
name
|
||||
description
|
||||
logo
|
||||
version
|
||||
universalIdentifier
|
||||
applicationRegistrationId
|
||||
|
||||
@@ -1,24 +1,30 @@
|
||||
import { CurrentApplicationContext } from '@/applications/contexts/CurrentApplicationContext';
|
||||
import {
|
||||
useApplicationAvatarColors,
|
||||
type ApplicationAvatarColors,
|
||||
useApplicationAvatarColors,
|
||||
} from '@/applications/hooks/useApplicationAvatarColors';
|
||||
import { isTwentyStandardApplication } from '@/applications/utils/isTwentyStandardApplication';
|
||||
import { isWorkspaceCustomApplication } from '@/applications/utils/isWorkspaceCustomApplication';
|
||||
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { t } from '@lingui/core/macro';
|
||||
import { useContext } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { buildApplicationLogoUrl } from '@/applications/utils/buildApplicationLogoUrl';
|
||||
import CustomLogo from '~/pages/settings/applications/assets/custom-illustrations/custom-logo.webp';
|
||||
import StandardLogo from '~/pages/settings/applications/assets/standard-illustrations/standard-logo.webp';
|
||||
|
||||
type UseApplicationChipDataArgs = {
|
||||
applicationId: string;
|
||||
applicationId?: string | null;
|
||||
fallbackApplicationData?: {
|
||||
logo?: string | null;
|
||||
name?: string | null;
|
||||
};
|
||||
};
|
||||
|
||||
type ApplicationChipData = {
|
||||
name: string;
|
||||
seed: string;
|
||||
colors?: ApplicationAvatarColors;
|
||||
logo?: string;
|
||||
};
|
||||
|
||||
type UseApplicationChipDataReturnType = {
|
||||
@@ -27,8 +33,8 @@ type UseApplicationChipDataReturnType = {
|
||||
|
||||
export const useApplicationChipData = ({
|
||||
applicationId,
|
||||
fallbackApplicationData,
|
||||
}: UseApplicationChipDataArgs): UseApplicationChipDataReturnType => {
|
||||
const currentApplicationId = useContext(CurrentApplicationContext);
|
||||
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
|
||||
|
||||
const application = currentWorkspace?.installedApplications.find(
|
||||
@@ -40,28 +46,39 @@ export const useApplicationChipData = ({
|
||||
if (!isDefined(application)) {
|
||||
return {
|
||||
applicationChipData: {
|
||||
name: '',
|
||||
seed: applicationId,
|
||||
name: fallbackApplicationData?.name ?? '',
|
||||
logo: fallbackApplicationData?.logo ?? '',
|
||||
seed: fallbackApplicationData?.name ?? '',
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
const isCurrent =
|
||||
isDefined(currentApplicationId) && currentApplicationId === applicationId;
|
||||
const isStandard = isTwentyStandardApplication(application);
|
||||
|
||||
const displayName = isCurrent
|
||||
? t`This app`
|
||||
: isTwentyStandardApplication(application)
|
||||
? t`Standard`
|
||||
: isWorkspaceCustomApplication(application, currentWorkspace)
|
||||
? t`Custom`
|
||||
: application.name;
|
||||
const isCustom = isWorkspaceCustomApplication(application, currentWorkspace);
|
||||
|
||||
const displayName = isStandard
|
||||
? t`Standard`
|
||||
: isCustom
|
||||
? t`Custom`
|
||||
: application.name;
|
||||
|
||||
const logo = isStandard
|
||||
? new URL(StandardLogo, window.location.href).toString()
|
||||
: isCustom
|
||||
? new URL(CustomLogo, window.location.href).toString()
|
||||
: buildApplicationLogoUrl({
|
||||
applicationId: application.id,
|
||||
logo: application.logo,
|
||||
workspaceId: currentWorkspace?.id,
|
||||
});
|
||||
|
||||
return {
|
||||
applicationChipData: {
|
||||
name: displayName,
|
||||
seed: application.universalIdentifier ?? application.name,
|
||||
seed: application.name,
|
||||
colors,
|
||||
logo,
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
export type ApplicationDisplayData = {
|
||||
id?: string | null;
|
||||
name?: string | null;
|
||||
universalIdentifier?: string | null;
|
||||
logo?: string | null;
|
||||
};
|
||||
@@ -0,0 +1,26 @@
|
||||
import { REACT_APP_SERVER_BASE_URL } from '~/config';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
export const buildApplicationLogoUrl = ({
|
||||
workspaceId,
|
||||
applicationId,
|
||||
logo,
|
||||
}: {
|
||||
workspaceId?: string | null;
|
||||
applicationId?: string | null;
|
||||
logo?: string | null;
|
||||
}): string | undefined => {
|
||||
if (
|
||||
!isDefined(logo) ||
|
||||
logo.startsWith('http://') ||
|
||||
logo.startsWith('https://')
|
||||
) {
|
||||
return logo ?? undefined;
|
||||
}
|
||||
|
||||
if (!isDefined(workspaceId) || !isDefined(applicationId)) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
return `${REACT_APP_SERVER_BASE_URL}/public-assets/${workspaceId}/${applicationId}/${logo}`;
|
||||
};
|
||||
@@ -47,7 +47,7 @@ export type CurrentWorkspace = Pick<
|
||||
workspaceCustomApplication: Pick<Application, 'id'> | null;
|
||||
installedApplications: Pick<
|
||||
Application,
|
||||
'id' | 'name' | 'universalIdentifier'
|
||||
'id' | 'name' | 'universalIdentifier' | 'logo'
|
||||
>[];
|
||||
};
|
||||
|
||||
|
||||
-1
@@ -5,7 +5,6 @@ export const MARKETPLACE_APP_FRAGMENT = gql`
|
||||
id
|
||||
name
|
||||
description
|
||||
icon
|
||||
author
|
||||
category
|
||||
logo
|
||||
|
||||
+8
-2
@@ -1,4 +1,4 @@
|
||||
import { ApplicationDisplay } from '@/applications/components/ApplicationDisplay';
|
||||
import { AppChip } from '@/applications/components/AppChip';
|
||||
import { useApolloAdminClient } from '@/settings/admin-panel/apollo/hooks/useApolloAdminClient';
|
||||
import { Dropdown } from '@/ui/layout/dropdown/components/Dropdown';
|
||||
import { DropdownContent } from '@/ui/layout/dropdown/components/DropdownContent';
|
||||
@@ -173,7 +173,13 @@ const SettingsAdminAppsTableRow = ({
|
||||
minWidth="0"
|
||||
overflow="hidden"
|
||||
>
|
||||
<ApplicationDisplay application={registration} />
|
||||
<AppChip
|
||||
size="md"
|
||||
fallbackApplicationData={{
|
||||
logo: registration.logoUrl,
|
||||
name: registration.name,
|
||||
}}
|
||||
/>
|
||||
</TableCell>
|
||||
<TableCell overflow="hidden" align="right">
|
||||
{getFormattedSource(registration)}
|
||||
|
||||
+10
@@ -25,8 +25,10 @@ describe('useComputeObjectAndFieldsContentForApplication', () => {
|
||||
it('should return object rows for installed application objects', () => {
|
||||
const installedApplication = {
|
||||
id: APP_ID,
|
||||
universalIdentifier: APP_ID,
|
||||
objects: [{ id: personObject.id }],
|
||||
name: 'Test App',
|
||||
logo: null,
|
||||
canBeUninstalled: true,
|
||||
availablePackages: {},
|
||||
applicationVariables: [],
|
||||
@@ -53,8 +55,10 @@ describe('useComputeObjectAndFieldsContentForApplication', () => {
|
||||
it('should return empty object rows when application has no objects', () => {
|
||||
const installedApplication = {
|
||||
id: APP_ID,
|
||||
universalIdentifier: APP_ID,
|
||||
objects: [],
|
||||
name: 'Test App',
|
||||
logo: null,
|
||||
canBeUninstalled: true,
|
||||
availablePackages: {},
|
||||
applicationVariables: [],
|
||||
@@ -79,8 +83,10 @@ describe('useComputeObjectAndFieldsContentForApplication', () => {
|
||||
|
||||
const installedApplication = {
|
||||
id: fieldBelongingToApp.applicationId ?? APP_ID,
|
||||
universalIdentifier: fieldBelongingToApp.applicationId ?? APP_ID,
|
||||
objects: [{ id: personObject.id }],
|
||||
name: 'Test App',
|
||||
logo: null,
|
||||
canBeUninstalled: true,
|
||||
availablePackages: {},
|
||||
applicationVariables: [],
|
||||
@@ -106,8 +112,10 @@ describe('useComputeObjectAndFieldsContentForApplication', () => {
|
||||
it('should exclude deny-listed objects from field rows', () => {
|
||||
const installedApplication = {
|
||||
id: APP_ID,
|
||||
universalIdentifier: APP_ID,
|
||||
objects: [],
|
||||
name: 'Test App',
|
||||
logo: null,
|
||||
canBeUninstalled: true,
|
||||
availablePackages: {},
|
||||
applicationVariables: [],
|
||||
@@ -261,8 +269,10 @@ describe('useComputeObjectAndFieldsContentForApplication', () => {
|
||||
it('should use installed application data when both sources are provided', () => {
|
||||
const installedApplication = {
|
||||
id: APP_ID,
|
||||
universalIdentifier: APP_ID,
|
||||
objects: [{ id: personObject.id }],
|
||||
name: 'Test App',
|
||||
logo: null,
|
||||
canBeUninstalled: true,
|
||||
availablePackages: {},
|
||||
applicationVariables: [],
|
||||
|
||||
+1
@@ -67,6 +67,7 @@ export const useComputeObjectAndFieldsContentForApplication = ({
|
||||
.map((field) => ({
|
||||
key: `${item.id}-${field.id}`,
|
||||
name: field.label,
|
||||
applicationId: item?.applicationId ?? undefined,
|
||||
icon: field.icon ?? undefined,
|
||||
secondary: t`on ${item.labelSingular}`,
|
||||
link: getSettingsPath(SettingsPath.ObjectFieldEdit, {
|
||||
|
||||
+54
@@ -0,0 +1,54 @@
|
||||
import { type ApplicationDisplayData } from '@/applications/types/applicationDisplayData.type';
|
||||
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
|
||||
import { objectMetadataItemsSelector } from '@/object-metadata/states/objectMetadataItemsSelector';
|
||||
import { getInstalledApplicationObjectAndFieldRows } from '@/settings/applications/utils/getInstalledApplicationObjectAndFieldRows';
|
||||
import { getManifestObjectAndFieldRows } from '@/settings/applications/utils/getManifestObjectAndFieldRows';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useMemo } from 'react';
|
||||
import { type Manifest } from 'twenty-shared/application';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { type Application } from '~/generated-metadata/graphql';
|
||||
|
||||
type InstalledApplicationForObjectRows = Omit<
|
||||
Application,
|
||||
'objects' | 'frontComponents'
|
||||
> & {
|
||||
objects: { id: string }[];
|
||||
};
|
||||
|
||||
export const useObjectAndFieldRows = ({
|
||||
installedApplication,
|
||||
manifestContent,
|
||||
applicationInfo,
|
||||
}: {
|
||||
applicationId: string;
|
||||
installedApplication?: InstalledApplicationForObjectRows;
|
||||
manifestContent?: Manifest;
|
||||
applicationInfo?: ApplicationDisplayData;
|
||||
}) => {
|
||||
const objectMetadataItems = useAtomStateValue(objectMetadataItemsSelector);
|
||||
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
|
||||
const installedApplications = currentWorkspace?.installedApplications;
|
||||
|
||||
return useMemo(() => {
|
||||
if (isDefined(installedApplication)) {
|
||||
return getInstalledApplicationObjectAndFieldRows({
|
||||
installedApplication,
|
||||
objectMetadataItems,
|
||||
installedApplications,
|
||||
});
|
||||
}
|
||||
|
||||
return getManifestObjectAndFieldRows({
|
||||
manifestContent,
|
||||
objectMetadataItems,
|
||||
applicationInfo,
|
||||
});
|
||||
}, [
|
||||
installedApplication,
|
||||
manifestContent,
|
||||
objectMetadataItems,
|
||||
installedApplications,
|
||||
applicationInfo,
|
||||
]);
|
||||
};
|
||||
+79
@@ -0,0 +1,79 @@
|
||||
import { type ApplicationDisplayData } from '@/applications/types/applicationDisplayData.type';
|
||||
import { isHiddenSystemField } from '@/object-metadata/utils/isHiddenSystemField';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import { SettingsPath } from 'twenty-shared/types';
|
||||
import { getSettingsPath } from 'twenty-shared/utils';
|
||||
import { type Application } from '~/generated-metadata/graphql';
|
||||
import { type ApplicationDataTableRow } from '~/pages/settings/applications/types/applicationDataTableRow';
|
||||
|
||||
const FIELD_GROUP_DENY_LIST = ['timelineActivity', 'favorite'];
|
||||
|
||||
type InstalledApplication = Omit<Application, 'objects' | 'frontComponents'> & {
|
||||
objects: { id: string }[];
|
||||
};
|
||||
|
||||
export const getInstalledApplicationObjectAndFieldRows = ({
|
||||
installedApplication,
|
||||
objectMetadataItems,
|
||||
installedApplications,
|
||||
}: {
|
||||
installedApplication: InstalledApplication;
|
||||
objectMetadataItems: EnrichedObjectMetadataItem[];
|
||||
installedApplications?: ApplicationDisplayData[];
|
||||
}): {
|
||||
objectRows: ApplicationDataTableRow[];
|
||||
fieldGroupRows: ApplicationDataTableRow[];
|
||||
} => {
|
||||
const installedObjectIds = installedApplication.objects.map(
|
||||
(object) => object.id,
|
||||
);
|
||||
|
||||
const objectRows: ApplicationDataTableRow[] =
|
||||
installedApplication.objects.length === 0
|
||||
? []
|
||||
: objectMetadataItems
|
||||
.filter((item) => installedObjectIds.includes(item.id))
|
||||
.map((item) => ({
|
||||
key: item.nameSingular,
|
||||
labelPlural: item.labelPlural,
|
||||
icon: item.icon ?? undefined,
|
||||
fieldsCount: item.fields.filter((f) => !isHiddenSystemField(f))
|
||||
.length,
|
||||
link: getSettingsPath(SettingsPath.ObjectDetail, {
|
||||
objectNamePlural: item.namePlural,
|
||||
}),
|
||||
application: {
|
||||
id: installedApplication.id,
|
||||
logo: installedApplication.logo,
|
||||
name: installedApplication.name,
|
||||
universalIdentifier: installedApplication.universalIdentifier,
|
||||
},
|
||||
}))
|
||||
.sort((a, b) => a.labelPlural.localeCompare(b.labelPlural));
|
||||
|
||||
const fieldGroupRows: ApplicationDataTableRow[] = objectMetadataItems
|
||||
.filter((item) => {
|
||||
if (installedObjectIds.includes(item.id)) return false;
|
||||
if (FIELD_GROUP_DENY_LIST.includes(item.nameSingular)) return false;
|
||||
|
||||
return item.fields.some(
|
||||
(field) => field.applicationId === installedApplication.id,
|
||||
);
|
||||
})
|
||||
.map((item) => ({
|
||||
key: item.nameSingular,
|
||||
labelPlural: item.labelPlural,
|
||||
icon: item.icon ?? undefined,
|
||||
fieldsCount: item.fields.filter(
|
||||
(field) => field.applicationId === installedApplication.id,
|
||||
).length,
|
||||
link: getSettingsPath(SettingsPath.ObjectDetail, {
|
||||
objectNamePlural: item.namePlural,
|
||||
}),
|
||||
application:
|
||||
installedApplications?.find((app) => app.id === item.applicationId) ??
|
||||
{},
|
||||
}));
|
||||
|
||||
return { objectRows, fieldGroupRows };
|
||||
};
|
||||
+102
@@ -0,0 +1,102 @@
|
||||
import { type ApplicationDisplayData } from '@/applications/types/applicationDisplayData.type';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import { type Manifest } from 'twenty-shared/application';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { type ApplicationDataTableRow } from '~/pages/settings/applications/types/applicationDataTableRow';
|
||||
import { findObjectNameByUniversalIdentifier } from '~/pages/settings/applications/utils/findObjectNameByUniversalIdentifier';
|
||||
import { isHiddenSystemField } from '@/object-metadata/utils/isHiddenSystemField';
|
||||
|
||||
const FIELD_GROUP_DENY_LIST = ['timelineActivity', 'favorite'];
|
||||
|
||||
export const getManifestObjectAndFieldRows = ({
|
||||
manifestContent,
|
||||
objectMetadataItems,
|
||||
applicationInfo,
|
||||
}: {
|
||||
manifestContent?: Manifest;
|
||||
objectMetadataItems: EnrichedObjectMetadataItem[];
|
||||
applicationInfo?: ApplicationDisplayData;
|
||||
}): {
|
||||
objectRows: ApplicationDataTableRow[];
|
||||
fieldGroupRows: ApplicationDataTableRow[];
|
||||
} => {
|
||||
const manifestObjects = manifestContent?.objects ?? [];
|
||||
const manifestFields = manifestContent?.fields ?? [];
|
||||
|
||||
const objectRows: ApplicationDataTableRow[] = manifestObjects
|
||||
.map((appObject) => ({
|
||||
key: appObject.nameSingular,
|
||||
labelPlural: appObject.labelPlural,
|
||||
icon: appObject.icon ?? undefined,
|
||||
fieldsCount: appObject.fields.filter((f) => !isHiddenSystemField(f))
|
||||
.length,
|
||||
application: applicationInfo ?? {},
|
||||
}))
|
||||
.sort((a, b) => a.labelPlural.localeCompare(b.labelPlural));
|
||||
|
||||
if (manifestFields.length === 0) {
|
||||
return { objectRows, fieldGroupRows: [] };
|
||||
}
|
||||
|
||||
const manifestObjectUids = new Set(
|
||||
manifestObjects.map((obj) => obj.universalIdentifier),
|
||||
);
|
||||
|
||||
const groupMap = new Map<
|
||||
string,
|
||||
{ objectUniversalIdentifier: string; count: number }
|
||||
>();
|
||||
|
||||
for (const field of manifestFields) {
|
||||
const objectUid = field.objectUniversalIdentifier;
|
||||
|
||||
if (manifestObjectUids.has(objectUid)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
const existing = groupMap.get(objectUid);
|
||||
|
||||
if (isDefined(existing)) {
|
||||
existing.count++;
|
||||
} else {
|
||||
groupMap.set(objectUid, {
|
||||
objectUniversalIdentifier: objectUid,
|
||||
count: 1,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
const fieldGroupRows: ApplicationDataTableRow[] = Array.from(
|
||||
groupMap.values(),
|
||||
)
|
||||
.map((group) => {
|
||||
const standardObjectName = findObjectNameByUniversalIdentifier(
|
||||
group.objectUniversalIdentifier,
|
||||
);
|
||||
|
||||
const objectMetadataItem = isDefined(standardObjectName)
|
||||
? objectMetadataItems.find(
|
||||
(item) => item.nameSingular === standardObjectName,
|
||||
)
|
||||
: undefined;
|
||||
|
||||
if (!isDefined(objectMetadataItem)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (FIELD_GROUP_DENY_LIST.includes(objectMetadataItem.nameSingular)) {
|
||||
return;
|
||||
}
|
||||
|
||||
return {
|
||||
key: objectMetadataItem.nameSingular,
|
||||
labelPlural: objectMetadataItem.labelPlural,
|
||||
icon: objectMetadataItem.icon ?? undefined,
|
||||
fieldsCount: group.count,
|
||||
application: applicationInfo ?? {},
|
||||
};
|
||||
})
|
||||
.filter(isDefined);
|
||||
|
||||
return { objectRows, fieldGroupRows };
|
||||
};
|
||||
@@ -70,6 +70,7 @@ export const USER_QUERY_FRAGMENT = gql`
|
||||
id
|
||||
name
|
||||
universalIdentifier
|
||||
logo
|
||||
}
|
||||
isCustomDomainEnabled
|
||||
workspaceUrls {
|
||||
|
||||
@@ -5,11 +5,13 @@ import { TableCell } from '@/ui/layout/table/components/TableCell';
|
||||
import { TableRow } from '@/ui/layout/table/components/TableRow';
|
||||
import { OverflowingTextWithTooltip } from 'twenty-ui/display';
|
||||
import { themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
import { StyledNameTableCell } from '@/settings/data-model/object-details/components/SettingsObjectItemTableRowStyledComponents';
|
||||
import { AppChip } from '@/applications/components/AppChip';
|
||||
|
||||
export type SettingsToolTableRowProps = {
|
||||
leftIcon: ReactNode;
|
||||
name: string;
|
||||
appLabel: string;
|
||||
applicationId: string;
|
||||
action?: ReactNode;
|
||||
link?: string;
|
||||
};
|
||||
@@ -25,7 +27,7 @@ const StyledIconContainer = styled.div`
|
||||
export const SettingsToolTableRow = ({
|
||||
leftIcon,
|
||||
name,
|
||||
appLabel,
|
||||
applicationId,
|
||||
action,
|
||||
link,
|
||||
}: SettingsToolTableRowProps) => {
|
||||
@@ -43,9 +45,9 @@ export const SettingsToolTableRow = ({
|
||||
<StyledIconContainer>{leftIcon}</StyledIconContainer>
|
||||
<OverflowingTextWithTooltip text={name} />
|
||||
</TableCell>
|
||||
<TableCell minWidth="0" overflow="hidden">
|
||||
<OverflowingTextWithTooltip text={appLabel} />
|
||||
</TableCell>
|
||||
<StyledNameTableCell minWidth="0" overflow="hidden">
|
||||
<AppChip applicationId={applicationId} />
|
||||
</StyledNameTableCell>
|
||||
<TableCell
|
||||
align="right"
|
||||
padding={`0 ${themeCssVariables.spacing[2]} 0 0`}
|
||||
|
||||
@@ -36,6 +36,7 @@ import {
|
||||
SettingsToolTableRow,
|
||||
TOOL_TABLE_ROW_GRID_TEMPLATE_COLUMNS,
|
||||
} from './SettingsToolTableRow';
|
||||
import { TWENTY_STANDARD_APPLICATION_UNIVERSAL_IDENTIFIER } from 'twenty-shared/application';
|
||||
|
||||
type ToolItem = {
|
||||
identifier: string;
|
||||
@@ -53,6 +54,7 @@ const FIND_MANY_APPLICATIONS_FOR_TOOL_TABLE = gql`
|
||||
id
|
||||
name
|
||||
universalIdentifier
|
||||
logo
|
||||
}
|
||||
}
|
||||
`;
|
||||
@@ -90,6 +92,7 @@ export const SettingsToolsTable = () => {
|
||||
id: string;
|
||||
name: string;
|
||||
universalIdentifier: string;
|
||||
logo?: string | null;
|
||||
}>;
|
||||
}>(FIND_MANY_APPLICATIONS_FOR_TOOL_TABLE);
|
||||
const { data: marketplaceAppsData } = useQuery<{
|
||||
@@ -119,6 +122,20 @@ export const SettingsToolsTable = () => {
|
||||
toolIdentifier: item.identifier,
|
||||
});
|
||||
|
||||
const getToolApplicationId = (item: ToolItem) => {
|
||||
if (isDefined(item.applicationId)) {
|
||||
return item.applicationId;
|
||||
}
|
||||
|
||||
return (
|
||||
currentWorkspace?.installedApplications?.find(
|
||||
(app) =>
|
||||
app.universalIdentifier ===
|
||||
TWENTY_STANDARD_APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
)?.id ?? ''
|
||||
);
|
||||
};
|
||||
|
||||
const allTools: ToolItem[] = useMemo(
|
||||
() => [
|
||||
...logicFunctions
|
||||
@@ -264,10 +281,6 @@ export const SettingsToolsTable = () => {
|
||||
)
|
||||
: undefined;
|
||||
|
||||
const appLabel = isCustom(item)
|
||||
? (application?.name ?? t`Custom`)
|
||||
: t`Standard`;
|
||||
|
||||
return (
|
||||
<SettingsToolTableRow
|
||||
key={item.identifier}
|
||||
@@ -281,7 +294,7 @@ export const SettingsToolsTable = () => {
|
||||
/>
|
||||
}
|
||||
name={item.name}
|
||||
appLabel={appLabel}
|
||||
applicationId={getToolApplicationId(item)}
|
||||
action={
|
||||
<IconChevronRight
|
||||
size={theme.icon.size.md}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user