Compare commits

..

1 Commits

Author SHA1 Message Date
prastoin 9bfd0362b0 wip 2026-02-10 15:10:58 +01:00
1599 changed files with 17276 additions and 45264 deletions
+4 -5
View File
@@ -22,7 +22,6 @@
"googleapis": "105",
"hex-rgb": "^5.0.0",
"immer": "^10.1.1",
"jotai": "^2.17.1",
"libphonenumber-js": "^1.10.26",
"lodash.camelcase": "^4.3.0",
"lodash.chunk": "^4.2.0",
@@ -138,9 +137,9 @@
"@typescript-eslint/utils": "^8.39.0",
"@typescript/native-preview": "^7.0.0-dev.20260116.1",
"@vitejs/plugin-react-swc": "3.11.0",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/browser-playwright": "^4.0.17",
"@vitest/coverage-istanbul": "^4.0.17",
"@vitest/coverage-v8": "^4.0.17",
"@yarnpkg/types": "^4.0.0",
"chromatic": "^6.18.0",
"concurrently": "^8.2.2",
@@ -186,7 +185,7 @@
"tsconfig-paths": "^4.2.0",
"tsx": "^4.17.0",
"vite": "^7.0.0",
"vitest": "^4.0.18"
"vitest": "^4.0.17"
},
"engines": {
"node": "^24.5.0",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.5.1",
"version": "0.5.0",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
@@ -70,7 +70,7 @@ describe('copyBaseApplicationProject', () => {
const packageJson = await fs.readJson(packageJsonPath);
expect(packageJson.name).toBe('my-test-app');
expect(packageJson.version).toBe('0.1.0');
expect(packageJson.dependencies['twenty-sdk']).toBe('0.5.1');
expect(packageJson.dependencies['twenty-sdk']).toBe('0.5.0');
expect(packageJson.scripts['app:dev']).toBe('twenty app:dev');
});
@@ -277,7 +277,7 @@ const createPackageJson = async ({
'lint:fix': 'eslint --fix',
},
dependencies: {
'twenty-sdk': '0.5.1',
'twenty-sdk': '0.5.0',
},
devDependencies: {
typescript: '^5.9.3',
@@ -7,9 +7,6 @@ test('Create workflow', async ({ page }) => {
await page.goto(process.env.LINK);
const workflowsFolder = page.getByRole('button', { name: 'Workflows' });
await workflowsFolder.click();
const workflowsLink = page.getByRole('link', { name: 'Workflows' });
await workflowsLink.click();
-5
View File
@@ -6,10 +6,6 @@ import {
rule as effectComponents,
RULE_NAME as effectComponentsName,
} from './rules/effect-components';
import {
rule as exportComponentProps,
RULE_NAME as exportComponentPropsName,
} from './rules/export-component-props';
import {
rule as explicitBooleanPredicatesInIf,
RULE_NAME as explicitBooleanPredicatesInIfName,
@@ -99,7 +95,6 @@ module.exports = {
rules: {
[componentPropsNamingName]: componentPropsNaming,
[effectComponentsName]: effectComponents,
[exportComponentPropsName]: exportComponentProps,
[matchingStateVariableName]: matchingStateVariable,
[noHardcodedColorsName]: noHardcodedColors,
[noStateUserefName]: noStateUseref,
@@ -1,119 +0,0 @@
/**
* @jest-environment node
*/
import { RuleTester } from 'eslint';
import { rule, RULE_NAME } from './export-component-props';
const typescriptParser = require('@typescript-eslint/parser');
const ruleTester = new RuleTester({
languageOptions: {
parser: typescriptParser,
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
});
ruleTester.run(RULE_NAME, rule as any, {
valid: [
{
name: 'Props type is already exported',
code: `
export type MyComponentProps = { label: string };
`,
},
{
name: 'Props interface is already exported',
code: `
export interface MyComponentProps { label: string }
`,
},
{
name: 'Type that doesn\'t end with Props is ignored',
code: `
type MyComponentOptions = { flag: boolean };
`,
},
{
name: 'Interface that doesn\'t end with Props is ignored',
code: `
interface MyComponentConfig { flag: boolean }
`,
},
{
name: 'Props re-exported via export { FooProps } is treated as exported',
code: `
type MyComponentProps = { label: string };
export { MyComponentProps };
`,
},
{
name: 'Non-Props type is not required to be exported',
code: `
type InternalState = { count: number };
`,
},
],
invalid: [
{
name: 'Unexported Props type alias',
code: `
type MyComponentProps = { label: string };
`,
errors: [{ messageId: 'mustExportProps' }],
output: `
export type MyComponentProps = { label: string };
`,
},
{
name: 'Unexported Props interface',
code: `
interface MyComponentProps { label: string }
`,
errors: [{ messageId: 'mustExportProps' }],
output: `
export interface MyComponentProps { label: string }
`,
},
{
name: 'Unexported Props type used in a component',
code: `
type MyComponentProps = { label: string };
export const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
`,
errors: [{ messageId: 'mustExportProps' }],
output: `
export type MyComponentProps = { label: string };
export const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
`,
},
{
name: 'Unexported Props type with non-exported component',
code: `
type MyComponentProps = { label: string };
const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
`,
errors: [{ messageId: 'mustExportProps' }],
output: `
export type MyComponentProps = { label: string };
const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
`,
},
{
name: 'Unexported Props type defined after the component',
code: `
export const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
type MyComponentProps = { label: string };
`,
errors: [{ messageId: 'mustExportProps' }],
output: `
export const MyComponent = ({ label }: MyComponentProps) => <div>{label}</div>;
export type MyComponentProps = { label: string };
`,
},
],
});
@@ -1,99 +0,0 @@
import { ESLintUtils, TSESTree } from '@typescript-eslint/utils';
import { isIdentifier } from '@typescript-eslint/utils/ast-utils';
export const RULE_NAME = 'export-component-props';
// NOTE: The rule will be available in ESLint configs as "@nx/workspace-export-component-props"
export const rule = ESLintUtils.RuleCreator(() => __filename)({
name: RULE_NAME,
meta: {
type: 'problem',
docs: {
description:
'Ensure types/interfaces ending with "Props" are exported',
},
fixable: 'code',
schema: [],
messages: {
mustExportProps:
"Props type '{{ typeName }}' must be exported.",
},
},
defaultOptions: [],
create: (context) => {
const reExportedNames = new Set<string>();
const unexportedPropsNodes = new Map<
string,
| TSESTree.TSTypeAliasDeclaration
| TSESTree.TSInterfaceDeclaration
>();
const collectUnexportedProps = (
node:
| TSESTree.TSTypeAliasDeclaration
| TSESTree.TSInterfaceDeclaration,
) => {
const typeName = node.id.name;
if (!typeName.endsWith('Props')) {
return;
}
const isExported =
node.parent?.type ===
TSESTree.AST_NODE_TYPES.ExportNamedDeclaration;
if (!isExported) {
unexportedPropsNodes.set(typeName, node);
}
};
return {
TSTypeAliasDeclaration: collectUnexportedProps,
TSInterfaceDeclaration: collectUnexportedProps,
ExportNamedDeclaration: (
node: TSESTree.ExportNamedDeclaration,
) => {
for (const specifier of node.specifiers) {
if (
specifier.type ===
TSESTree.AST_NODE_TYPES.ExportSpecifier &&
isIdentifier(specifier.local)
) {
const name = specifier.local.name;
if (name.endsWith('Props')) {
reExportedNames.add(name);
}
}
}
},
'Program:exit': () => {
for (const [typeName, node] of unexportedPropsNodes) {
if (reExportedNames.has(typeName)) {
continue;
}
context.report({
node: node.id,
messageId: 'mustExportProps',
data: { typeName },
fix: (fixer) => {
const sourceCode = context.sourceCode;
const firstToken = sourceCode.getFirstToken(node);
const target = firstToken ?? node;
if (firstToken?.value === 'export') {
return null;
}
return fixer.insertTextBefore(target, 'export ');
},
});
}
},
};
},
});
+1 -3
View File
@@ -21,6 +21,7 @@ module.exports = {
'./src/modules/logic-functions/graphql/**/*.{ts,tsx}',
'./src/modules/databases/graphql/**/*.{ts,tsx}',
'./src/modules/workflow/**/graphql/**/*.{ts,tsx}',
'./src/modules/analytics/graphql/**/*.{ts,tsx}',
'./src/modules/object-metadata/graphql/**/*.{ts,tsx}',
'./src/modules/navigation-menu-item/graphql/**/*.{ts,tsx}',
@@ -31,9 +32,6 @@ module.exports = {
'./src/modules/page-layout/widgets/**/graphql/**/*.{ts,tsx}',
'./src/modules/dashboards/graphql/**/*.{ts,tsx}',
'./src/modules/page-layout/graphql/**/*.{ts,tsx}',
'./src/modules/marketplace/graphql/**/*.{ts,tsx}',
'!./src/**/*.test.{ts,tsx}',
'!./src/**/*.stories.{ts,tsx}',
'!./src/**/__mocks__/*.ts',
+15 -3
View File
@@ -5,11 +5,23 @@ module.exports = {
(process.env.REACT_APP_SERVER_BASE_URL ?? 'http://localhost:3000') +
'/graphql',
documents: [
'./src/modules/workflow/**/graphql/**/*.{ts,tsx}',
'./src/modules/activities/emails/graphql/**/*.{ts,tsx}',
'./src/modules/activities/calendar/graphql/**/*.{ts,tsx}',
'./src/modules/activities/graphql/**/*.{ts,tsx}',
'./src/modules/companies/graphql/**/*.{ts,tsx}',
'./src/modules/people/graphql/**/*.{ts,tsx}',
'./src/modules/opportunities/graphql/**/*.{ts,tsx}',
'./src/modules/search/graphql/**/*.{ts,tsx}',
'./src/modules/views/graphql/**/*.{ts,tsx}',
'./src/modules/favorites/graphql/**/*.{ts,tsx}',
'./src/modules/spreadsheet-import/graphql/**/*.{ts,tsx}',
'./src/modules/command-menu/graphql/**/*.{ts,tsx}',
'./src/modules/marketplace/graphql/**/*.{ts,tsx}',
'./src/modules/prefetch/graphql/**/*.{ts,tsx}',
'./src/modules/subscription/graphql/**/*.{ts,tsx}',
'./src/modules/dashboards/graphql/**/*.{ts,tsx}',
'./src/modules/page-layout/graphql/**/*.{ts,tsx}',
'!./src/**/*.test.{ts,tsx}',
'!./src/**/*.stories.{ts,tsx}',
+3 -3
View File
@@ -62,9 +62,9 @@ const jestConfig = {
extensionsToTreatAsEsm: ['.ts', '.tsx'],
coverageThreshold: {
global: {
statements: 49.5,
lines: 48,
functions: 40,
statements: 50,
lines: 48.9,
functions: 40.9,
},
},
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],
-1
View File
@@ -84,7 +84,6 @@
"graphql": "16.8.1",
"graphql-sse": "^2.5.4",
"input-otp": "^1.4.2",
"jotai": "^2.17.1",
"js-cookie": "^3.0.5",
"json-2-csv": "^5.4.0",
"json-logic-js": "^2.0.5",
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -7,7 +7,7 @@ import { useRecoilValue } from 'recoil';
import { AppPath, SettingsPath } from 'twenty-shared/types';
import { getSettingsPath } from 'twenty-shared/utils';
import { OnboardingStatus } from '~/generated-metadata/graphql';
import { OnboardingStatus } from '~/generated/graphql';
import { useIsCurrentLocationOnAWorkspace } from '@/domain-manager/hooks/useIsCurrentLocationOnAWorkspace';
import { usePageChangeEffectNavigateLocation } from '~/hooks/usePageChangeEffectNavigateLocation';
@@ -11,7 +11,7 @@ import { useRecoilValue } from 'recoil';
import { AppPath, SettingsPath } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { WorkspaceActivationStatus } from 'twenty-shared/workspace';
import { OnboardingStatus } from '~/generated-metadata/graphql';
import { OnboardingStatus } from '~/generated/graphql';
import { isMatchingLocation } from '~/utils/isMatchingLocation';
export const usePageChangeEffectNavigateLocation = () => {
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Voeg 'n nodus by"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Voeg item by"
msgid "Add Item"
msgstr "Voeg item by"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alle objekte"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alle rolle"
msgid "All set!"
msgstr "Alles reg!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Beskikbaar"
msgid "Available tools"
msgstr "Beskikbare gereedskap"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kan nie skandeer nie? Kopieer die"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Pasmaak"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Paneelborde"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Laai voorbeeld af"
msgid "Drag and Drop Here"
msgstr "Sleep en los hier"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Wysig veldwaardes"
msgid "Edit Fields"
msgstr "Wysig velde"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Wysig iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Redigeer jou subdomein naam of stel 'n persoonlike domein in."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Kon nie prent verwyder nie"
msgid "Failed to retry jobs. Please try again later."
msgstr "Kon nie werke herprobeer nie. Probeer asseblief later weer."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Mislukkingskoers"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Voornaam kan nie leeg wees nie"
msgid "Flow"
msgstr "Vloei"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Lêers"
@@ -7451,11 +7372,6 @@ msgstr "Begin handmatig"
msgid "Layout"
msgstr "Uitleg"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Lyn grafiek"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Skakel na knipbord gekopieer"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Bestuur jou toepassing"
msgid "Manage your internet accounts."
msgstr "Bestuur jou internetrekeninge."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Meer aksies"
msgid "More options"
msgstr "Meer opsies"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Skuif links"
msgid "Move right"
msgstr "Skuif regs"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nuwe E-posdomein"
msgid "New Field"
msgstr "Nuwe Veld"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nuwe Wagwoord"
msgid "New record"
msgstr "Nuwe rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Geen land nie"
msgid "No currency"
msgstr "Geen geldeenheid"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Geen Lêers Nie"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Geen vouer"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Geen modelle beskikbaar nie. Stel asseblief KI-modelle in jou werkruimte
msgid "No notes"
msgstr "Geen notas"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Geen Resultate"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Geen resultate gevind nie"
@@ -8894,16 +8740,6 @@ msgstr "Geen rye met foute nie"
msgid "No Select field"
msgstr "Geen kiesveld nie"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objek"
@@ -9081,7 +8916,6 @@ msgstr "objek"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objek"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekte"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisasie"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Ander"
@@ -9465,11 +9291,6 @@ msgstr "Oorskryf Konsep"
msgid "Overview"
msgstr "Oorsig"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Selfoonnommer na knipbord gekopieer"
msgid "Pick a {objectLabel} record"
msgstr "Kies 'n {objectLabel} rekord"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Herlaai"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "rekord"
@@ -10149,7 +9958,6 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -10352,11 +10160,6 @@ msgstr "Verwyder Gedeleteerde filter"
msgid "Remove from favorites"
msgstr "Verwyder uit gunstelinge"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultate"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Soek 'n veld..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Soek 'n rol..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Soek 'n spanlid..."
msgid "Search a type"
msgstr "Soek 'n tipe"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Soek 'n indeks..."
msgid "Search an object"
msgstr "Soek vir 'n objek"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Soekopsies"
msgid "Search records"
msgstr "Soek rekords"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Kies 'n veld uit 'n vorige stap"
msgid "Select a field to display in this widget"
msgstr "Kies 'n veld om in hierdie widget te vertoon"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Sneller die funksie met Http-versoek"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tipe"
msgid "Type anything..."
msgstr "Tik enigiets..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Laai lêers op"
msgid "Upload the XML file with your connection infos"
msgstr "Laai die XML-lêer op met jou konneksie-inligting"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Viëtnamees"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "aansig"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Aansig"
@@ -13511,11 +13261,6 @@ msgstr "Bekyk bestaande rekord"
msgid "view field"
msgstr "bekyk veld"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Bekyk tipe"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "إضافة عقدة"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "إضافة عنصر"
msgid "Add Item"
msgstr "إضافة عنصر"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "كل الكائنات"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "كل الأدوار"
msgid "All set!"
msgstr "كل شيء جاهز!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "متاح"
msgid "Available tools"
msgstr "الأدوات المتاحة"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "تخصيص"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "لوحات القيادة"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "بيانات"
@@ -4460,11 +4422,6 @@ msgstr "تنزيل نموذج"
msgid "Drag and Drop Here"
msgstr "اسحب وأفلت هنا"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "تحرير قيم الحقل"
msgid "Edit Fields"
msgstr "تحرير الحقول"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "تعديل الإطار المضمّن"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "قم بتعديل اسم النطاق الفرعي أو اضبط نطا
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "فشل في إزالة الصورة"
msgid "Failed to retry jobs. Please try again later."
msgstr "فشل في إعادة محاولة الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "معدل الفشل"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "لا يمكن أن يكون الاسم الأول فارغًا"
msgid "Flow"
msgstr "تدفق"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "مجلدات"
@@ -7451,11 +7372,6 @@ msgstr "التشغيل يدويًا"
msgid "Layout"
msgstr "التخطيط"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "الرسم البياني الخطي"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "تم نسخ الرابط إلى الحافظة"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "إدارة تطبيقك"
msgid "Manage your internet accounts."
msgstr "إدارة حساباتك على الإنترنت."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "إجراءات إضافية"
msgid "More options"
msgstr "مزيد من الخيارات"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "نقل إلى اليسار"
msgid "Move right"
msgstr "نقل إلى اليمين"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "نطاق بريد إلكتروني جديد"
msgid "New Field"
msgstr "حقل جديد"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "كلمة سر جديدة"
msgid "New record"
msgstr "سجل جديد"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "لا دولة"
msgid "No currency"
msgstr "لا توجد عملة"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "لا توجد ملفات"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "لا يوجد مجلد"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "لا توجد نماذج متاحة. يرجى تهيئة نماذج ال
msgid "No notes"
msgstr "لا توجد ملاحظات"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "لا توجد نتائج"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "لم يتم العثور على نتائج"
@@ -8894,16 +8740,6 @@ msgstr "لا توجد صفوف تحتوي على أخطاء"
msgid "No Select field"
msgstr "لا حقل اختيار"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "كائن"
@@ -9081,7 +8916,6 @@ msgstr "كائن"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "كائن"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "كائنات"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "المؤسسة"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "أخرى"
@@ -9465,11 +9291,6 @@ msgstr "تجاوز المسودة"
msgid "Overview"
msgstr "نظرة عامة"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "تم نسخ رقم الهاتف إلى الحافظة"
msgid "Pick a {objectLabel} record"
msgstr "اختر سجل {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "إعادة الاتصال"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "السجل"
@@ -10149,7 +9958,6 @@ msgstr "السجل"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "السجل"
@@ -10352,11 +10160,6 @@ msgstr "إزالة الفلتر المحذوف"
msgid "Remove from favorites"
msgstr "\\\\"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "النتيجة"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "\\\\"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "ابحث عن حقل..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "ابحث عن دور..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "ابحث عن عضو..."
msgid "Search a type"
msgstr "ابحث عن نوع"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "ابحث عن فهرس..."
msgid "Search an object"
msgstr "ابحث عن كائن"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "ابحث في الخيارات"
msgid "Search records"
msgstr "\\\\"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "اختر حقلًا من خطوة سابقة"
msgid "Select a field to display in this widget"
msgstr "اختر حقلاً لعرضه في هذه الأداة"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "تشغيل الوظيفة عند طلب http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "النوع"
msgid "Type anything..."
msgstr "اكتب أي شيء..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "رفع الملفات"
msgid "Upload the XML file with your connection infos"
msgstr "ارفع ملف XML مع معلومات الاتصال الخاصة بك"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "الفيتنامية"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "عرض"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "عرض"
@@ -13511,11 +13261,6 @@ msgstr "عرض السجل الموجود"
msgid "view field"
msgstr "حقل العرض"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "نوع العرض"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Afegeix un node"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Afegeix element"
msgid "Add Item"
msgstr "Afegeix element"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Tots els objectes"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Tots els rols"
msgid "All set!"
msgstr "Tot a punt!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponible"
msgid "Available tools"
msgstr "Eines disponibles"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "No pots escanejar? Copia la"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalització"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Taulers de comandament"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dades"
@@ -4460,11 +4422,6 @@ msgstr "Descarrega el fitxer de mostra"
msgid "Drag and Drop Here"
msgstr "Arrossega i deixa anar aquí"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Edita valors dels camps"
msgid "Edit Fields"
msgstr "Edita camps"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Edita iframe"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Edita el nom del teu subdomini o estableix un domini personalitzat."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "No s'ha pogut eliminar la imatge"
msgid "Failed to retry jobs. Please try again later."
msgstr "Error en reintentar feines. Torneu-ho a provar més tard."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Taxa de fallades"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "El nom no pot estar buit"
msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Carpetes"
@@ -7451,11 +7372,6 @@ msgstr "Llança manualment"
msgid "Layout"
msgstr "Disseny"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Gràfic de línies"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Enllaç copiat al porta-retalls"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gestiona la teva aplicació"
msgid "Manage your internet accounts."
msgstr "Gestiona els teus comptes d'Internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Més accions"
msgid "More options"
msgstr "Més opcions"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Moure a l'esquerra"
msgid "Move right"
msgstr "Moure a la dreta"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nou domini de correu"
msgid "New Field"
msgstr "Nou camp"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nova contrasenya"
msgid "New record"
msgstr "Nou registre"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Sense país"
msgid "No currency"
msgstr "Sense moneda"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Sense fitxers"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Sense carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ 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: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Cap resultat"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "No s'han trobat resultats"
@@ -8894,16 +8740,6 @@ msgstr "No hi ha files amb errors"
msgid "No Select field"
msgstr "Sense camp de selecció"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objecte"
@@ -9081,7 +8916,6 @@ msgstr "objecte"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objecte"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objectes"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organització"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Altres"
@@ -9465,11 +9291,6 @@ msgstr "Sobreescriu Esborrany"
msgid "Overview"
msgstr "Visió general"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Número de telèfon copiat al porta-retalls"
msgid "Pick a {objectLabel} record"
msgstr "Tria un registre de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconnecta"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "registre"
@@ -10149,7 +9958,6 @@ msgstr "registre"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registre"
@@ -10352,11 +10160,6 @@ msgstr "Elimina filtre Eliminat"
msgid "Remove from favorites"
msgstr "Elimina dels preferits"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultats"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Cerca un camp..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Cerca un rol..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Buscar un membre de l'equip..."
msgid "Search a type"
msgstr "Cerca un tipus"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Cerca un índex..."
msgid "Search an object"
msgstr "Cerca un objecte"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Opcions de cerca"
msgid "Search records"
msgstr "Cerca enregistraments"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Seleccioneu un camp d'un pas anterior"
msgid "Select a field to display in this widget"
msgstr "Seleccioneu un camp per mostrar en aquest giny"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Desencadena la funció amb una sol·licitud Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tipus"
msgid "Type anything..."
msgstr "Teclegeu qualsevol cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Carregar Arxius"
msgid "Upload the XML file with your connection infos"
msgstr "Carrega el fitxer XML amb la teva informació de connexió"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamita"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -13511,11 +13261,6 @@ msgstr "Veure el registre existent"
msgid "view field"
msgstr "camp de la vista"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Tipus de vista"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Přidat uzel"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Přidat položku"
msgid "Add Item"
msgstr "Přidat položku"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Všechny objekty"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Všechny role"
msgid "All set!"
msgstr "Vše hotovo!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Dostupný"
msgid "Available tools"
msgstr "Dostupné nástroje"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Nemůžete skenovat? Zkopírujte"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Přizpůsobení"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Panely"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Stáhnout ukázkový soubor"
msgid "Drag and Drop Here"
msgstr "Přetáhněte sem"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Upravit hodnoty polí"
msgid "Edit Fields"
msgstr "Upravit pole"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Upravit iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Upravit název vaší subdomény nebo nastavit vlastní doménu."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Nepodařilo se odstranit obrázek"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nepodařilo se znovu spustit úlohy. Prosím, zkuste to znovu později."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Míra selhání"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Křestní jméno nesmí být prázdné"
msgid "Flow"
msgstr "Tok"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Složky"
@@ -7451,11 +7372,6 @@ msgstr "Spustit ručně"
msgid "Layout"
msgstr "Rozvržení"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Liniový graf"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Odkaz byl zkopírován do schránky"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Spravujte svou aplikaci"
msgid "Manage your internet accounts."
msgstr "Spravujte své internetové účty."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Další akce"
msgid "More options"
msgstr "Více možností"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Posunout doleva"
msgid "Move right"
msgstr "Posunout doprava"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nová e-mailová doména"
msgid "New Field"
msgstr "Nové pole"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nové heslo"
msgid "New record"
msgstr "Nový záznam"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Žádná země"
msgid "No currency"
msgstr "Žádná měna"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Žádné soubory"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Žádná složka"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nejsou dostupné žádné modely. Prosím, nakonfigurujte AI modely v na
msgid "No notes"
msgstr "Žádné poznámky"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Žádné výsledky"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nenalezeny žádné výsledky"
@@ -8894,16 +8740,6 @@ msgstr "Žádné řádky s chybami"
msgid "No Select field"
msgstr "Žádné výběrové pole"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekt"
@@ -9081,7 +8916,6 @@ msgstr "objekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekty"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organizace"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Ostatní"
@@ -9465,11 +9291,6 @@ msgstr "Přepsat koncept"
msgid "Overview"
msgstr "Přehled"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefonní číslo zkopírováno do schránky"
msgid "Pick a {objectLabel} record"
msgstr "Vyberte záznam {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Znovu připojit"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "záznam"
@@ -10149,7 +9958,6 @@ msgstr "záznam"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Záznam"
@@ -10352,11 +10160,6 @@ msgstr "Odstranit smazaný filtr"
msgid "Remove from favorites"
msgstr "Odebrat z oblíbených"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Výsledek"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Výsledky"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Hledat ve sloupci..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Vyhledat roli..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Vyhledávejte člena týmu..."
msgid "Search a type"
msgstr "Hledat typ"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Hledat v indexu..."
msgid "Search an object"
msgstr "Hledat objekt"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Hledat možnosti"
msgid "Search records"
msgstr "Hledání záznamů"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Vyberte pole z předchozího kroku"
msgid "Select a field to display in this widget"
msgstr "Vyberte pole, které se má v tomto widgetu zobrazit"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Spouští funkci pomocí Http požadavku"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Typ"
msgid "Type anything..."
msgstr "Napište cokoli..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Nahrát soubory"
msgid "Upload the XML file with your connection infos"
msgstr "Nahrajte XML soubor s vašimi spojovacími údaji"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamština"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "pohled"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Pohled"
@@ -13511,11 +13261,6 @@ msgstr "Zobrazit existující záznam"
msgid "view field"
msgstr "zobrazit pole"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Typ pohledu"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Tilføj en node"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Tilføj element"
msgid "Add Item"
msgstr "Tilføj element"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alle objekter"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alle roller"
msgid "All set!"
msgstr "Alt klar!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Tilgængelig"
msgid "Available tools"
msgstr "Tilgængelige værktøjer"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kan ikke scanne? Kopier"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Dashboards"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Download prøvefil"
msgid "Drag and Drop Here"
msgstr "Træk og slip her"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Rediger feltværdier"
msgid "Edit Fields"
msgstr "Rediger felter"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Rediger iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Rediger dit underdomænenavn eller sæt et brugerdefineret domæne."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Kunne ikke fjerne billede"
msgid "Failed to retry jobs. Please try again later."
msgstr "Kunne ikke forsøge jobs igen. Prøv venligst igen senere."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Fejlrate"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Fornavn må ikke være tomt"
msgid "Flow"
msgstr "Strøm"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Mapper"
@@ -7451,11 +7372,6 @@ msgstr "Start manuelt"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Linje Diagram"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link kopieret til udklipsholder"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Administrer din app"
msgid "Manage your internet accounts."
msgstr "Administrer dine internetkonti."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Flere handlinger"
msgid "More options"
msgstr "Flere muligheder"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Flyt til venstre"
msgid "Move right"
msgstr "Flyt til højre"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nyt e-mail-domæne"
msgid "New Field"
msgstr "Nyt felt"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nyt Password"
msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Intet land"
msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Ingen modeller tilgængelige. Konfigurer venligst AI-modeller i dine arb
msgid "No notes"
msgstr "Ingen noter"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Ingen resultater"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Ingen resultater fundet"
@@ -8894,16 +8740,6 @@ msgstr "Ingen rækker med fejl"
msgid "No Select field"
msgstr "Ingen vælg felt"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekt"
@@ -9081,7 +8916,6 @@ msgstr "objekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekter"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisation"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Andet"
@@ -9465,11 +9291,6 @@ msgstr "Overskriv kladde"
msgid "Overview"
msgstr "Oversigt"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefonnummer kopieret til udklipsholder"
msgid "Pick a {objectLabel} record"
msgstr "Vælg en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Genopret forbindelsen"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "post"
@@ -10149,7 +9958,6 @@ msgstr "post"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registrering"
@@ -10352,11 +10160,6 @@ msgstr "Fjern slettet filter"
msgid "Remove from favorites"
msgstr "Fjern fra favoritter"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultater"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Søg i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Søg en rolle..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Søg efter et team medlem..."
msgid "Search a type"
msgstr "Søg efter en type"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Søg i et indeks..."
msgid "Search an object"
msgstr "Søg efter et objekt"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Søg i valgmuligheder"
msgid "Search records"
msgstr "Søg poster"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Vælg et felt fra et tidligere trin"
msgid "Select a field to display in this widget"
msgstr "Vælg et felt, der skal vises i denne widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12849,7 +12612,6 @@ msgstr "Udløser funktionen med Http-anmodning"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Type"
msgid "Type anything..."
msgstr "Skriv noget..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Upload filer"
msgid "Upload the XML file with your connection infos"
msgstr "Upload XML-filen med dine forbindelsesoplysninger"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "Vietnamesisk"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "visning"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Visning"
@@ -13513,11 +13263,6 @@ msgstr "Vis eksisterende post"
msgid "view field"
msgstr "visningsfelt"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Vis type"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Knoten hinzufügen"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Artikel hinzufügen"
msgid "Add Item"
msgstr "Element hinzufügen"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alle Objekte"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alle Rollen"
msgid "All set!"
msgstr "Alles bereit!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Verfügbar"
msgid "Available tools"
msgstr "Verfügbare Tools"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Anpassung"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Dashboards"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Daten"
@@ -4460,11 +4422,6 @@ msgstr "Beispieldatei herunterladen"
msgid "Drag and Drop Here"
msgstr "Hierher ziehen und ablegen"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Feldwerte bearbeiten"
msgid "Edit Fields"
msgstr "Felder bearbeiten"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFrame bearbeiten"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Bearbeiten Sie den Namen Ihrer Subdomain oder legen Sie eine benutzerdef
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Bild konnte nicht entfernt werden"
msgid "Failed to retry jobs. Please try again later."
msgstr "Aufgaben konnten nicht erneut versucht werden. Bitte versuchen Sie es später noch einmal."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Fehlerquote"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Vorname darf nicht leer sein"
msgid "Flow"
msgstr "Fluss"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Ordner"
@@ -7451,11 +7372,6 @@ msgstr "Manuell auslösen"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Liniendiagramm"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link in die Zwischenablage kopiert"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Ihre App verwalten"
msgid "Manage your internet accounts."
msgstr "Verwalten Sie Ihre Internetkonten."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Weitere Aktionen"
msgid "More options"
msgstr "Mehr Optionen"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Nach links verschieben"
msgid "Move right"
msgstr "Nach rechts verschieben"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Neue E-Mail-Domäne"
msgid "New Field"
msgstr "Neues Feld"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Neues Passwort"
msgid "New record"
msgstr "Neuer Datensatz"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Kein Land"
msgid "No currency"
msgstr "Keine Währung"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Keine Dateien"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Kein Ordner"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Keine Modelle verfügbar. Bitte konfigurieren Sie KI-Modelle in Ihren Ar
msgid "No notes"
msgstr "Keine Notizen"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Keine Ergebnisse"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Keine Ergebnisse gefunden"
@@ -8894,16 +8740,6 @@ msgstr "Keine Zeilen mit Fehlern"
msgid "No Select field"
msgstr "Kein Auswahlfeld"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekt"
@@ -9081,7 +8916,6 @@ msgstr "objekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekte"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisation"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Andere"
@@ -9465,11 +9291,6 @@ msgstr "Entwurf überschreiben"
msgid "Overview"
msgstr "Übersicht"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefonnummer in die Zwischenablage kopiert"
msgid "Pick a {objectLabel} record"
msgstr "Wählen Sie einen {objectLabel} Datensatz aus"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Erneut verbinden"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "Datensatz"
@@ -10149,7 +9958,6 @@ msgstr "Datensatz"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Datensatz"
@@ -10352,11 +10160,6 @@ msgstr "Gelöschten Filter entfernen"
msgid "Remove from favorites"
msgstr "Aus Favoriten entfernen"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Ergebnis"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Ergebnisse"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Feld suchen..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Nach einer Rolle suchen..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Ein Teammitglied suchen..."
msgid "Search a type"
msgstr "Einen Typ suchen"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Index suchen..."
msgid "Search an object"
msgstr "Ein Objekt suchen"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Optionen suchen"
msgid "Search records"
msgstr "Datensätze suchen"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Wählen Sie ein Feld aus einem vorherigen Schritt aus"
msgid "Select a field to display in this widget"
msgstr "Wählen Sie ein Feld aus, das in diesem Widget angezeigt werden soll"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Löst die Funktion mit HTTP-Anfrage aus"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Typ"
msgid "Type anything..."
msgstr "Geben Sie irgendetwas ein..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Dateien hochladen"
msgid "Upload the XML file with your connection infos"
msgstr "Laden Sie die XML-Datei mit Ihren Verbindungsinformationen hoch"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamesisch"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "ansicht"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Ansicht"
@@ -13511,11 +13261,6 @@ msgstr "Vorhandenen Datensatz anzeigen"
msgid "view field"
msgstr "ansichtsfeld"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Ansichtstyp"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Προσθήκη κόμβου"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Προσθήκη αντικειμένου / Add item"
msgid "Add Item"
msgstr "Προσθήκη στοιχείου"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Όλα τα Αντικείμενα"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Όλοι οι ρόλοι"
msgid "All set!"
msgstr "Όλα έτοιμα!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Διαθέσιμο"
msgid "Available tools"
msgstr "Διαθέσιμα εργαλεία"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Προσαρμογή"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Πίνακες Ελέγχου"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Δεδομένα"
@@ -4460,11 +4422,6 @@ msgstr "Λήψη δείγματος"
msgid "Drag and Drop Here"
msgstr "Σύρετε και αποθέστε εδώ"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Επεξεργασία τιμών πεδίων"
msgid "Edit Fields"
msgstr "Επεξεργασία πεδίων"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Επεξεργασία iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Επεξεργαστείτε το όνομα του υποτομέα σ
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Αποτυχία αφαίρεσης εικόνας"
msgid "Failed to retry jobs. Please try again later."
msgstr "Αποτυχία επαναποστολής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Ποσοστό αποτυχίας"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Το μικρό όνομα δεν μπορεί να είναι κενό"
msgid "Flow"
msgstr "Ροή"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Φάκελοι"
@@ -7451,11 +7372,6 @@ msgstr "Εκκίνηση χειροκίνητα"
msgid "Layout"
msgstr "Διάταξη"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Διάγραμμα γραμμής"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Διαχειριστείτε την εφαρμογή σας"
msgid "Manage your internet accounts."
msgstr "Διαχειριστείτε τους λογαριασμούς σας στο διαδίκτυο."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Περισσότερες ενέργειες"
msgid "More options"
msgstr "Περισσότερες επιλογές"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Μετακίνηση αριστερά"
msgid "Move right"
msgstr "Μετακίνηση δεξιά"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Νέα Περιοχή Email"
msgid "New Field"
msgstr "Νέο Πεδίο"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Νέος Κωδικός"
msgid "New record"
msgstr "Νέα εγγραφή"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Χωρίς χώρα"
msgid "No currency"
msgstr "Χωρίς νόμισμα"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Χωρίς αρχεία"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Κανένας φάκελος"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Δεν υπάρχουν διαθέσιμα μοντέλα. Παρακα
msgid "No notes"
msgstr "Δεν υπάρχουν σημειώσεις"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Χωρίς αποτελέσματα"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Δεν βρέθηκαν αποτελέσματα"
@@ -8894,16 +8740,6 @@ msgstr "Καμία γραμμή με λάθη"
msgid "No Select field"
msgstr "Χωρίς πεδίο Επιλογής"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "αντικείμενο"
@@ -9081,7 +8916,6 @@ msgstr "αντικείμενο"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Αντικείμενο"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Αντικείμενα"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Οργανωτικός"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Άλλο"
@@ -9465,11 +9291,6 @@ msgstr "Αντικατάσταση Προχείρου"
msgid "Overview"
msgstr "Επισκόπηση"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Ο αριθμός τηλεφώνου αντιγράφηκε στο πρ
msgid "Pick a {objectLabel} record"
msgstr "Επιλέξτε μια καταγραφή {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Επανασύνδεση"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "εγγραφή"
@@ -10149,7 +9958,6 @@ msgstr "εγγραφή"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Εγγραφή"
@@ -10352,11 +10160,6 @@ msgstr "Αφαίρεση φίλτρου διαγραμμένων"
msgid "Remove from favorites"
msgstr "Αφαίρεση από τα αγαπημένα"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Αποτέλεσμα"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Αποτελέσματα"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Αναζήτηση πεδίου..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Αναζήτηση ρόλου..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Αναζήτηση ενός μέλους..."
msgid "Search a type"
msgstr "Αναζήτηση τύπου"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Αναζήτηση ευρετηρίου..."
msgid "Search an object"
msgstr "Αναζήτηση αντικειμένου"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Επιλογές αναζήτησης"
msgid "Search records"
msgstr "Αναζήτηση εγγραφών"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Επιλέξτε ένα πεδίο από το προηγούμενο β
msgid "Select a field to display in this widget"
msgstr "Επιλέξτε ένα πεδίο για εμφάνιση σε αυτό το γραφικό στοιχείο"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12130,13 +11900,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12851,7 +12614,6 @@ msgstr "Ενεργοποιεί τη λειτουργία με αίτημα Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12971,11 +12733,6 @@ msgstr "Τύπος"
msgid "Type anything..."
msgstr "Πληκτρολογήστε οτιδήποτε..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13267,11 +13024,6 @@ msgstr "Ανέβασμα αρχείων"
msgid "Upload the XML file with your connection infos"
msgstr "Ανεβάστε το αρχείο XML με τις πληροφορίες σύνδεσής σας"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13465,13 +13217,11 @@ msgstr "Βιετναμέζικα"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "προβολή"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Προβολή"
@@ -13515,11 +13265,6 @@ msgstr "Προβολή υπάρχουσας εγγραφής"
msgid "view field"
msgstr "πεδίο προβολής"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13578,11 +13323,6 @@ msgstr "Τύπος Προβολής"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -770,11 +770,6 @@ msgstr "Add a new company we're in touch with (e.g. name, website, industry). De
msgid "Add a node"
msgstr "Add a node"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr "Add a record"
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -882,21 +877,6 @@ msgstr "Add item"
msgid "Add Item"
msgstr "Add Item"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr "Add menu item"
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr "Add menu item after"
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr "Add menu item before"
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1337,11 +1317,6 @@ msgstr "All Members"
msgid "All Objects"
msgstr "All Objects"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr "All objects are already in the sidebar"
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1352,11 +1327,6 @@ msgstr "All roles"
msgid "All set!"
msgstr "All set!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr "All system objects are already in the sidebar"
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2056,11 +2026,6 @@ msgstr "Available"
msgid "Available tools"
msgstr "Available tools"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr "Avatar file field not found for person object"
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2367,7 +2332,6 @@ msgstr "Can't scan? Copy the"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3630,7 +3594,6 @@ msgstr "Customization"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr "Customize"
@@ -3712,7 +3675,6 @@ msgstr "Dashboards"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4455,11 +4417,6 @@ msgstr "Download sample"
msgid "Drag and Drop Here"
msgstr "Drag and Drop Here"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr "Drag to add to navbar"
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4590,13 +4547,6 @@ msgstr "Edit field values"
msgid "Edit Fields"
msgstr "Edit Fields"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr "Edit folder"
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4612,13 +4562,6 @@ msgstr "Edit iFrame"
msgid "Edit Layout"
msgstr "Edit Layout"
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr "Edit link"
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4659,11 +4602,6 @@ msgstr "Edit your subdomain name or set a custom domain."
msgid "Editable Profile Fields"
msgstr "Editable Profile Fields"
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr "Editor"
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5739,11 +5677,6 @@ msgstr "Failed to remove picture"
msgid "Failed to retry jobs. Please try again later."
msgstr "Failed to retry jobs. Please try again later."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr "Failed to save navigation layout"
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5823,7 +5756,6 @@ msgstr "Failure Rate"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6091,19 +6023,8 @@ msgstr "First name can not be empty"
msgid "Flow"
msgstr "Flow"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr "Folder"
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr "Folder name"
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Folders"
@@ -7446,11 +7367,6 @@ msgstr "Launch manually"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr "Layout customization"
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7535,16 +7451,6 @@ msgstr "Limit must be greater than 0."
msgid "Line Chart"
msgstr "Line Chart"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr "link"
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr "Link"
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7556,15 +7462,6 @@ msgstr "Link"
msgid "Link copied to clipboard"
msgstr "Link copied to clipboard"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr "Link label"
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7815,6 +7712,11 @@ msgstr "Manage your app"
msgid "Manage your internet accounts."
msgstr "Manage your internet accounts."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr "Managed logic functions are not editable"
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8109,11 +8011,6 @@ msgstr "More actions"
msgid "More options"
msgstr "More options"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr "Move down"
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8128,21 +8025,6 @@ msgstr "Move left"
msgid "Move right"
msgstr "Move right"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr "Move to a folder"
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr "Move to folder"
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr "Move up"
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8366,13 +8248,6 @@ msgstr "New Emailing Domain"
msgid "New Field"
msgstr "New Field"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr "New folder"
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8403,12 +8278,6 @@ msgstr "New Password"
msgid "New record"
msgstr "New record"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr "New sidebar item"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8585,11 +8454,6 @@ msgstr "No country"
msgid "No currency"
msgstr "No currency"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr "No custom views available"
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8694,15 +8558,9 @@ msgstr "No Files"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "No folder"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr "No folders available"
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8786,11 +8644,6 @@ msgstr "No models available. Please configure AI models in your workspace settin
msgid "No notes"
msgstr "No notes"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr "No objects with views found"
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8858,13 +8711,6 @@ msgid "No Results"
msgstr "No Results"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "No results found"
@@ -8889,16 +8735,6 @@ msgstr "No rows with errors"
msgid "No Select field"
msgstr "No Select field"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr "No system objects available"
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr "No system objects with views found"
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9063,7 +8899,6 @@ msgstr "Numbered list"
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "object"
@@ -9076,7 +8911,6 @@ msgstr "object"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Object"
@@ -9133,8 +8967,6 @@ msgstr "objects"
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objects"
@@ -9376,11 +9208,6 @@ msgstr "Ordered List"
msgid "Organization"
msgstr "Organization"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr "Organize"
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9389,7 +9216,6 @@ msgstr "Organize"
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Other"
@@ -9460,11 +9286,6 @@ msgstr "Override Draft"
msgid "Overview"
msgstr "Overview"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr "Owner"
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9693,17 +9514,6 @@ msgstr "Phone number copied to clipboard"
msgid "Pick a {objectLabel} record"
msgstr "Pick a {objectLabel} record"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr "Pick a view"
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr "Pick an object"
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10136,7 +9946,6 @@ msgstr "Reconnect"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "record"
@@ -10144,7 +9953,6 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Record"
@@ -10347,11 +10155,6 @@ msgstr "Remove Deleted filter"
msgid "Remove from favorites"
msgstr "Remove from favorites"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr "Remove from sidebar"
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10550,7 +10353,6 @@ msgid "Result"
msgstr "Result"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Results"
@@ -10815,11 +10617,6 @@ msgstr "Search a custom tool..."
msgid "Search a field..."
msgstr "Search a field..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr "Search a folder..."
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10830,12 +10627,6 @@ msgstr "Search a role..."
msgid "Search a skill..."
msgstr "Search a skill..."
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr "Search a system object..."
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10846,11 +10637,6 @@ msgstr "Search a team member..."
msgid "Search a type"
msgstr "Search a type"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr "Search a view..."
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10882,12 +10668,6 @@ msgstr "Search an index..."
msgid "Search an object"
msgstr "Search an object"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr "Search an object..."
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10971,11 +10751,6 @@ msgstr "Search options"
msgid "Search records"
msgstr "Search records"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr "Search records..."
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11160,11 +10935,6 @@ msgstr "Select a field from a previous step"
msgid "Select a field to display in this widget"
msgstr "Select a field to display in this widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr "Select a navigation item to edit"
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12123,13 +11893,6 @@ msgstr "System fields"
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "System objects"
@@ -12844,7 +12607,6 @@ msgstr "Triggers the function with Http request"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12964,11 +12726,6 @@ msgstr "Type"
msgid "Type anything..."
msgstr "Type anything..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr "Type to search records"
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13260,11 +13017,6 @@ msgstr "Upload Files"
msgid "Upload the XML file with your connection infos"
msgstr "Upload the XML file with your connection infos"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr "Uploaded content is too large."
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13458,13 +13210,11 @@ msgstr "Vietnamese"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "view"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "View"
@@ -13508,11 +13258,6 @@ msgstr "View existing record"
msgid "view field"
msgstr "view field"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr "view field group"
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13571,11 +13316,6 @@ msgstr "View type"
msgid "View workspace activity logs"
msgstr "View workspace activity logs"
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr "Views"
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Añadir un nodo"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Agregar elemento"
msgid "Add Item"
msgstr "Agregar elemento"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Todos los objetos"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Todas las funciones"
msgid "All set!"
msgstr "¡Todo listo!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponible"
msgid "Available tools"
msgstr "Herramientas disponibles"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "¿No puedes escanear? Copia el"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalización"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Tableros"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Datos"
@@ -4460,11 +4422,6 @@ msgstr "Descargar archivo de ejemplo"
msgid "Drag and Drop Here"
msgstr "Arrastra y suelta aquí"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Editar valores de campo"
msgid "Edit Fields"
msgstr "Editar campos"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Editar iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Edite el nombre de su subdominio o establezca un dominio personalizado."
msgid "Editable Profile Fields"
msgstr "Campos de Perfil Editables"
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "No se pudo eliminar la imagen"
msgid "Failed to retry jobs. Please try again later."
msgstr "No se pudieron reintentar los trabajos. Por favor, inténtelo de nuevo más tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Tasa de fallos"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "El nombre no puede estar vacío"
msgid "Flow"
msgstr "Flujo"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Carpetas"
@@ -7451,11 +7372,6 @@ msgstr "Lanzar manualmente"
msgid "Layout"
msgstr "Diseño"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr "El límite debe ser mayor que 0."
msgid "Line Chart"
msgstr "Gráfico de líneas"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Enlace copiado al portapapeles"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gestiona tu aplicación"
msgid "Manage your internet accounts."
msgstr "Gestione sus cuentas de internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Más acciones"
msgid "More options"
msgstr "Más opciones"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Mover a la izquierda"
msgid "Move right"
msgstr "Mover a la derecha"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nuevo dominio de correo electrónico"
msgid "New Field"
msgstr "Nuevo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nueva contraseña"
msgid "New record"
msgstr "Nuevo registro"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Sin país"
msgid "No currency"
msgstr "Sin moneda"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Sin archivos"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Sin carpeta"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "No hay modelos disponibles. Por favor configure modelos de IA en la conf
msgid "No notes"
msgstr "Sin notas"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Sin resultados"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "No se encontraron resultados"
@@ -8894,16 +8740,6 @@ msgstr "No hay filas con errores"
msgid "No Select field"
msgstr "Sin campo de selección"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr "Lista numerada"
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objeto"
@@ -9081,7 +8916,6 @@ msgstr "objeto"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -9381,11 +9213,6 @@ msgstr "Lista ordenada"
msgid "Organization"
msgstr "Organización"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Otros"
@@ -9465,11 +9291,6 @@ msgstr "Sobrescribir Borrador"
msgid "Overview"
msgstr "Resumen"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Número de teléfono copiado al portapapeles"
msgid "Pick a {objectLabel} record"
msgstr "Selecciona un registro de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconectar"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "registro"
@@ -10149,7 +9958,6 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -10352,11 +10160,6 @@ msgstr "Eliminar filtro Eliminado"
msgid "Remove from favorites"
msgstr "Quitar de favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Buscar un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Buscar un rol..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Buscar un miembro del equipo..."
msgid "Search a type"
msgstr "Buscar un tipo"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Buscar un índice..."
msgid "Search an object"
msgstr "Buscar un objeto"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Opciones de búsqueda"
msgid "Search records"
msgstr "Buscar registros"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Seleccione un campo de un paso anterior"
msgid "Select a field to display in this widget"
msgstr "Selecciona un campo para mostrar en este widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr "Objetos del sistema"
@@ -12849,7 +12612,6 @@ msgstr "Activa la función con solicitud Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Tipo"
msgid "Type anything..."
msgstr "Escribe cualquier cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Subir archivos"
msgid "Upload the XML file with your connection infos"
msgstr "Suba el archivo XML con su información de conexión"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "Vietnamita"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -13513,11 +13263,6 @@ msgstr "Ver registro existente"
msgid "view field"
msgstr "campo de vista"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Tipo de vista"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Lisää solmu"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Lisää kohde"
msgid "Add Item"
msgstr "Lisää kohde"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Kaikki objektit"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Kaikki roolit"
msgid "All set!"
msgstr "Valmista!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Saatavilla"
msgid "Available tools"
msgstr "Saatavilla olevat työkalut"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Et voi skannata? Kopioi"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Mukauttaminen"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Koontinäytöt"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Lataa esimerkkitiedosto"
msgid "Drag and Drop Here"
msgstr "Vedä ja pudota tähän"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Muokkaa kentän arvoja"
msgid "Edit Fields"
msgstr "Muokkaa kenttiä"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Muokkaa iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Muokkaa alasivustosi nimeä tai aseta mukautettu verkkotunnus."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Kuvan poistaminen epäonnistui"
msgid "Failed to retry jobs. Please try again later."
msgstr "Epäonnistui uusien tehtävien yrittämisessä. Yritä myöhemmin uudelleen."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Epäonnistumisprosentti"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Etunimi ei saa olla tyhjä"
msgid "Flow"
msgstr "Virtaus"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Kansiot"
@@ -7451,11 +7372,6 @@ msgstr "Käynnistä manuaalisesti"
msgid "Layout"
msgstr "Ulkoasu"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Viivakaavio"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Linkki kopioitu leikepöydälle"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Hallitse sovellustasi"
msgid "Manage your internet accounts."
msgstr "Hallitse internet-tilejäsi."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Lisää toimintoja"
msgid "More options"
msgstr "Lisää valintoja"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Siirrä vasemmalle"
msgid "Move right"
msgstr "Siirrä oikealle"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Uusi sähköpostitoimialue"
msgid "New Field"
msgstr "Uusi kenttä"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Uusi salasana"
msgid "New record"
msgstr "Uusi tietue"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Ei maata"
msgid "No currency"
msgstr "Ei valuuttaa"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Ei tiedostoja"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Ei kansiota"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Malitavoa ei ole saatavilla. Konfiguroi AI-mallit työtilan asetuksista.
msgid "No notes"
msgstr "Ei muistiinpanoja"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Ei tuloksia"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Tuloksia ei löytynyt"
@@ -8894,16 +8740,6 @@ msgstr "Ei rivejä, joissa on virheitä"
msgid "No Select field"
msgstr "Ei valintakenttää"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekti"
@@ -9081,7 +8916,6 @@ msgstr "objekti"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekti"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objektit"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisaatio"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Muu"
@@ -9465,11 +9291,6 @@ msgstr "Ohita luonnos"
msgid "Overview"
msgstr "Yleiskatsaus"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Puhelinnumero kopioitu leikepöydälle"
msgid "Pick a {objectLabel} record"
msgstr "Valitse {objectLabel} tietue"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Yhdistä uudelleen"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "tietue"
@@ -10149,7 +9958,6 @@ msgstr "tietue"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Tietue"
@@ -10352,11 +10160,6 @@ msgstr "Poista Poistetut-suodatin"
msgid "Remove from favorites"
msgstr "Poista suosikeista"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Tulos"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Tulokset"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Etsi kenttää..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Etsi roolia..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Etsi tiimin jäsentä..."
msgid "Search a type"
msgstr "Etsi tyyppiä"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Etsi indeksi..."
msgid "Search an object"
msgstr "Etsi objekti"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Hakuvaihtoehdot"
msgid "Search records"
msgstr "Hae tietueita"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Valitse kenttä aiemmasta vaiheesta"
msgid "Select a field to display in this widget"
msgstr "Valitse kenttä, joka näytetään tässä widgetissä"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Aktivoi toiminnon Http-pyynnöllä"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tyyppi"
msgid "Type anything..."
msgstr "Kirjoita jotain..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Lataa tiedostoja"
msgid "Upload the XML file with your connection infos"
msgstr "Lataa XML-tiedosto sisältäen yhteystietosi"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnam"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "näkymä"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Näkymä"
@@ -13511,11 +13261,6 @@ msgstr "Näytä olemassa oleva tietue"
msgid "view field"
msgstr "näkymän kenttä"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Näkymän tyyppi"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Ajouter un nœud"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Ajouter un article"
msgid "Add Item"
msgstr "Ajouter un élément"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Tous les objets"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Tous les rôles"
msgid "All set!"
msgstr "Tout est prêt !"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponible"
msgid "Available tools"
msgstr "Outils disponibles"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Impossible de scanner ? Copiez le"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personnalisation"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Tableaux de bord"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Données"
@@ -4460,11 +4422,6 @@ msgstr "Télécharger l'exemple"
msgid "Drag and Drop Here"
msgstr "Glissez-déposez ici"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Modifier les valeurs des champs"
msgid "Edit Fields"
msgstr "Modifier les champs"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Modifier le cadre iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Modifier le nom de votre sous-domaine ou définir un domaine personnalis
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Échec de la suppression de l'image"
msgid "Failed to retry jobs. Please try again later."
msgstr "Échec du réessai des tâches. Veuillez réessayer plus tard."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Taux d'échec"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Le prénom ne peut pas être vide"
msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Dossiers"
@@ -7451,11 +7372,6 @@ msgstr "Lancer manuellement"
msgid "Layout"
msgstr "Disposition"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr ""
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Lien copié dans le presse-papiers"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gérez votre application"
msgid "Manage your internet accounts."
msgstr "Gérez vos comptes internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Plus d'actions"
msgid "More options"
msgstr "Plus d'options"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Déplacer à gauche"
msgid "Move right"
msgstr "Déplacer à droite"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nouveau domaine d'envoi d'e-mail"
msgid "New Field"
msgstr "Nouveau champ"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nouveau mot de passe"
msgid "New record"
msgstr "Nouvel enregistrement"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Aucun pays"
msgid "No currency"
msgstr "Aucune devise"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Aucun fichier"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Aucun dossier"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Aucun modèle disponible. Veuillez configurer les modèles IA dans les p
msgid "No notes"
msgstr "Aucune note"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Aucun résultat"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Aucun résultat trouvé"
@@ -8894,16 +8740,6 @@ msgstr "Aucun ligne avec des erreurs"
msgid "No Select field"
msgstr "Aucun champ de sélection"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objet"
@@ -9081,7 +8916,6 @@ msgstr "objet"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objet"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objets"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisation"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Autres"
@@ -9465,11 +9291,6 @@ msgstr "Remplacer le brouillon"
msgid "Overview"
msgstr "Vue d'ensemble"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Numéro de téléphone copié dans le presse-papiers"
msgid "Pick a {objectLabel} record"
msgstr "Choisissez un enregistrement de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconnecter"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "enregistrement"
@@ -10149,7 +9958,6 @@ msgstr "enregistrement"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Enregistrer"
@@ -10352,11 +10160,6 @@ msgstr "Supprimer le filtre supprimé"
msgid "Remove from favorites"
msgstr "Retirer des favoris"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Résultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Résultats"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Rechercher un champ..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Rechercher un rôle..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Rechercher un membre de l'équipe..."
msgid "Search a type"
msgstr "Rechercher un type"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Rechercher un index..."
msgid "Search an object"
msgstr "Rechercher un objet"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Options de recherche"
msgid "Search records"
msgstr "Rechercher des enregistrements"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Sélectionner un champ à partir d'une étape précédente"
msgid "Select a field to display in this widget"
msgstr "Sélectionnez un champ à afficher dans ce widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12849,7 +12612,6 @@ msgstr "Déclenche la fonction avec une requête HTTP"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Type"
msgid "Type anything..."
msgstr "Tapez n'importe quoi..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Téléverser les fichiers"
msgid "Upload the XML file with your connection infos"
msgstr "Téléverser le fichier XML avec vos informations de connexion"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "Vietnamien"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vue"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vue"
@@ -13513,11 +13263,6 @@ msgstr "Voir l'enregistrement existant"
msgid "view field"
msgstr "champ de vue"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Type de vue"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
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
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "הוסף צומת"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "הוסף פריט"
msgid "Add Item"
msgstr "הוסף פריט"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "כל האובייקטים"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "כל התפקידים"
msgid "All set!"
msgstr "הכול מוכן!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "זמין"
msgid "Available tools"
msgstr "כלים זמינים"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "לא ניתן לסרוק? העתק את"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "התאמה אישית"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "לוחות בקרה"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "מידע"
@@ -4460,11 +4422,6 @@ msgstr "הורד קובץ לדוגמה"
msgid "Drag and Drop Here"
msgstr "גרור ושחרר כאן"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "ערוך ערכי שדה"
msgid "Edit Fields"
msgstr "עריכת שדות"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "ערוך את ה-iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "ערוך את שם התת-דומיין שלך או הגדר תחום מ
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "הסרת התמונה נכשלה"
msgid "Failed to retry jobs. Please try again later."
msgstr "נכשל בהפעלה מחדש של עבודות. נא לנסות שוב מאוחר יותר."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "שיעור כשל"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "שם פרטי לא יכול להיות ריק"
msgid "Flow"
msgstr "זרם"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "תיקיות"
@@ -7451,11 +7372,6 @@ msgstr "הפעל ידנית"
msgid "Layout"
msgstr "פריסה"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "תרשים קו"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "הקישור הועתק ללוח הגזירים"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "נהל את היישום שלך"
msgid "Manage your internet accounts."
msgstr "נהל את חשבונות האינטרנט שלך."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "פעולות נוספות"
msgid "More options"
msgstr "אופציות נוספות"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "הזזה שמאלה"
msgid "Move right"
msgstr "הזזה ימינה"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "<span dir=\"rtl\">דומיין חדש לשליחת מיילים</span>"
msgid "New Field"
msgstr "שדה חדש"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "סיסמה חדשה"
msgid "New record"
msgstr "רשומה חדשה"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "אין מדינה"
msgid "No currency"
msgstr "אין מטבע"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "אין קבצים"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "אין תיקייה"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "אין מודלים זמינים. נא להגדיר מודלים לבי
msgid "No notes"
msgstr "אין הערות"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "אין תוצאות"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "לא נמצאו תוצאות"
@@ -8894,16 +8740,6 @@ msgstr "אין שורות עם שגיאות"
msgid "No Select field"
msgstr "אין שדה בחירה"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "אובייקט"
@@ -9081,7 +8916,6 @@ msgstr "אובייקט"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "אובייקט"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "אובייקטים"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "ארגון"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "אחר"
@@ -9465,11 +9291,6 @@ msgstr "עקוף טיוטה"
msgid "Overview"
msgstr "סקירה כללית"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "מספר הטלפון הועתק ללוח הגזירים"
msgid "Pick a {objectLabel} record"
msgstr "בחר רשומת {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "התחבר מחדש"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "רשומה"
@@ -10149,7 +9958,6 @@ msgstr "רשומה"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "רשומה"
@@ -10352,11 +10160,6 @@ msgstr "הסר מסנן נמחקים"
msgid "Remove from favorites"
msgstr "\\"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "תוצאה"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "\\"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "חפש שדה..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "חפש תפקיד..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "חיפוש חבר צוות..."
msgid "Search a type"
msgstr "חפש סוג"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "חפש אינדקס..."
msgid "Search an object"
msgstr "חפש אובייקט"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "אפשרויות חיפוש"
msgid "Search records"
msgstr "\\"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "בחר שדה משלב קודם"
msgid "Select a field to display in this widget"
msgstr "בחר/י שדה להצגה בווידג'ט הזה"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "מפעיל את הפונקציה עם בקשת Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "סוג"
msgid "Type anything..."
msgstr "הקלד כל דבר..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "העלאת קבצים"
msgid "Upload the XML file with your connection infos"
msgstr "העלה את קובץ ה-XML עם המידע על החיבור שלך"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "וייטנאמית"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "תצוגה"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "תצוגה"
@@ -13511,11 +13261,6 @@ msgstr "הצג רשומה קיימת"
msgid "view field"
msgstr "שדה תצוגה"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "סוג תצוגה"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Csomópont hozzáadása"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Tétel hozzáadása"
msgid "Add Item"
msgstr "Tétel hozzáadása"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Összes Objektum"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Minden szerepkör"
msgid "All set!"
msgstr "Minden kész!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Elérhető"
msgid "Available tools"
msgstr "Elérhető eszközök"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Nem tud beolvasni? Másolja a"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Testreszabás"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Irányítópultok"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Adat"
@@ -4460,11 +4422,6 @@ msgstr "Minta letöltése"
msgid "Drag and Drop Here"
msgstr "Húzza ide és ejtse le"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Mezőérték szerkesztése"
msgid "Edit Fields"
msgstr "Mezők szerkesztése"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFrame szerkesztése"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Szerkeszd az aldomain nevét vagy állíts be egyedi domaint."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Nem sikerült eltávolítani a képet"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nem sikerült újraindítani az állásokat. Kérjük, próbálja meg újra később."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Hibaarány"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "A keresztnév nem lehet üres"
msgid "Flow"
msgstr "Folyamat"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Mappák"
@@ -7451,11 +7372,6 @@ msgstr "Indítás manuálisan"
msgid "Layout"
msgstr "Elrendezés"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Vonaldiagram"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "A link vágólapra másolva"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Alkalmazás kezelése"
msgid "Manage your internet accounts."
msgstr "Kezeld az internetes fiókjaid."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "További műveletek"
msgid "More options"
msgstr "További opciók"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Mozgatás balra"
msgid "Move right"
msgstr "Mozgatás jobbra"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Új Emailküldési Tartomány"
msgid "New Field"
msgstr "Új mező"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Új Jelszó"
msgid "New record"
msgstr "Új rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Nincs ország"
msgid "No currency"
msgstr "Nincs pénznem"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Nincsenek fájlok"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Nincs mappa"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nincsenek elérhető modellek. Kérjük, állítsa be a MI modelleket a
msgid "No notes"
msgstr "Nincsenek jegyzetek"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Nincs találat"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nincs találat"
@@ -8894,16 +8740,6 @@ msgstr "Nincsenek hibás sorok"
msgid "No Select field"
msgstr "Nincs Választó mező"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objektum"
@@ -9081,7 +8916,6 @@ msgstr "objektum"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objektum"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objektumok"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Szervezet"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Egyéb"
@@ -9465,11 +9291,6 @@ msgstr "Vázlat felülírása"
msgid "Overview"
msgstr "Áttekintés"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefonszám vágólapra másolva"
msgid "Pick a {objectLabel} record"
msgstr "Válasszon egy {objectLabel} rekordot"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Újracsatlakozás"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "rekord"
@@ -10149,7 +9958,6 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -10352,11 +10160,6 @@ msgstr "Törölt szűrő eltávolítása"
msgid "Remove from favorites"
msgstr "Eltávolítás a kedvencek közül"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Eredmény"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Találatok"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Mező keresése..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Szerepkör keresése..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Csapattag keresése..."
msgid "Search a type"
msgstr "Típus keresése"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Index keresése..."
msgid "Search an object"
msgstr "Objektum keresése"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Keresési beállítások"
msgid "Search records"
msgstr "Rekordok keresése"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Válasszon ki egy mezőt egy előző lépésből"
msgid "Select a field to display in this widget"
msgstr "Válasszon egy mezőt a widgetben való megjelenítéshez"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "A funkciót Http kéréssel indítja el"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Típus"
msgid "Type anything..."
msgstr "Írjon be bármit..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Fájlok feltöltése"
msgid "Upload the XML file with your connection infos"
msgstr "Töltse fel az XML fájlt a kapcsolati információival"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnámi"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "nézet"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Nézet"
@@ -13511,11 +13261,6 @@ msgstr "Meglévő rekord megtekintése"
msgid "view field"
msgstr "nézet mező"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Nézet típus"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Aggiungi un nodo"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Aggiungi elemento"
msgid "Add Item"
msgstr "Aggiungi elemento"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Tutti gli oggetti"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Tutti i ruoli"
msgid "All set!"
msgstr "Tutto pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponibile"
msgid "Available tools"
msgstr "Strumenti disponibili"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Non puoi scansionare? Copia il"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalizzazione"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Cruscotti"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dati"
@@ -4460,11 +4422,6 @@ msgstr "Scarica file di esempio"
msgid "Drag and Drop Here"
msgstr "Trascina e rilascia qui"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Modifica valori dei campi"
msgid "Edit Fields"
msgstr "Modifica campi"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Modifica iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Modifica il nome del sottodominio o imposta un dominio personalizzato."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Impossibile rimuovere l'immagine"
msgid "Failed to retry jobs. Please try again later."
msgstr "Impossibile riprovare i lavori. Per favore riprova più tardi."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Tasso di errore"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Il nome non può essere vuoto"
msgid "Flow"
msgstr "Flusso"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Cartelle"
@@ -7451,11 +7372,6 @@ msgstr "Avvia manualmente"
msgid "Layout"
msgstr "Disposizione"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Grafico a Linea"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link copiato negli appunti"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gestisci la tua app"
msgid "Manage your internet accounts."
msgstr "Gestisci i tuoi account Internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Altre azioni"
msgid "More options"
msgstr "Altre opzioni"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Sposta a sinistra"
msgid "Move right"
msgstr "Sposta a destra"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nuovo dominio di email"
msgid "New Field"
msgstr "Nuovo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nuova password"
msgid "New record"
msgstr "Nuovo record"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Nessun paese"
msgid "No currency"
msgstr "Nessuna valuta"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Nessun file"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Nessuna cartella"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nessun modello disponibile. Configurare i modelli AI nelle impostazioni
msgid "No notes"
msgstr "Nessuna nota"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Nessun risultato"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nessun risultato trovato"
@@ -8894,16 +8740,6 @@ msgstr "Nessuna riga con errori"
msgid "No Select field"
msgstr "Nessun campo di selezione"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "oggetto"
@@ -9081,7 +8916,6 @@ msgstr "oggetto"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Oggetto"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Oggetti"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organizzazione"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Altro"
@@ -9465,11 +9291,6 @@ msgstr "Sostituisci Bozza"
msgid "Overview"
msgstr "Panoramica"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Numero di telefono copiato negli appunti"
msgid "Pick a {objectLabel} record"
msgstr "Seleziona un record di {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Riconnessione"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "record"
@@ -10149,7 +9958,6 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -10352,11 +10160,6 @@ msgstr "Rimuovi filtro eliminato"
msgid "Remove from favorites"
msgstr "Rimuovi dai preferiti"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Risultato"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Risultati"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Cerca un campo..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Cerca un ruolo..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Cerca un membro del team..."
msgid "Search a type"
msgstr "Cerca un tipo"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Cerca un indice..."
msgid "Search an object"
msgstr "Cerca un oggetto"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Cerca opzioni"
msgid "Search records"
msgstr "Cerca record"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Seleziona un campo da un passaggio precedente"
msgid "Select a field to display in this widget"
msgstr "Seleziona un campo da visualizzare in questo widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12849,7 +12612,6 @@ msgstr "Attiva la funzione con richiesta Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Tipo"
msgid "Type anything..."
msgstr "Digita qualsiasi cosa..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Carica file"
msgid "Upload the XML file with your connection infos"
msgstr "Carica il file XML con le tue informazioni di connessione"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "Vietnamita"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -13513,11 +13263,6 @@ msgstr "Visualizza record esistente"
msgid "view field"
msgstr "campo vista"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Tipo vista"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "ノードを追加する"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "アイテムを追加"
msgid "Add Item"
msgstr "アイテムを追加"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "すべてのオブジェクト"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "すべてのロール"
msgid "All set!"
msgstr "準備完了!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "利用可能"
msgid "Available tools"
msgstr "利用可能なツール"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "スキャンできませんか? コピーしてください"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "カスタマイズ"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "ダッシュボード"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "データ"
@@ -4460,11 +4422,6 @@ msgstr "サンプルファイルをダウンロード"
msgid "Drag and Drop Here"
msgstr "ここにドラッグ&ドロップ"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "フィールド値を編集"
msgid "Edit Fields"
msgstr "フィールドを編集"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFrameを編集する"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "サブドメイン名を編集するか、カスタムドメインを設
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "画像を削除できませんでした"
msgid "Failed to retry jobs. Please try again later."
msgstr "ジョブの再試行に失敗しました。後でもう一度お試しください。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "失敗率"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "名は空にできません"
msgid "Flow"
msgstr "フロー"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "フォルダー"
@@ -7451,11 +7372,6 @@ msgstr "手動で起動"
msgid "Layout"
msgstr "レイアウト"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "ラインチャート"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "リンクがクリップボードにコピーされました"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "アプリを管理"
msgid "Manage your internet accounts."
msgstr "インターネットアカウントを管理"
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "その他のアクション"
msgid "More options"
msgstr "その他のオプション"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "左に移動"
msgid "Move right"
msgstr "右に移動"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "新しいメール送信ドメイン"
msgid "New Field"
msgstr "新規フィールド"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "新しいパスワード"
msgid "New record"
msgstr "新しいレコード"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "国なし"
msgid "No currency"
msgstr "通貨なし"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "ファイルなし"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "フォルダーなし"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "モデルが利用可能ではありません。ワークスペース設
msgid "No notes"
msgstr "ノートなし"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "結果なし"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "結果が見つかりません"
@@ -8894,16 +8740,6 @@ msgstr "エラーのある行はありません"
msgid "No Select field"
msgstr "選択フィールドなし"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "オブジェクト"
@@ -9081,7 +8916,6 @@ msgstr "オブジェクト"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "オブジェクト"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "オブジェクト"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "組織"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "その他"
@@ -9465,11 +9291,6 @@ msgstr "下書きを上書き"
msgid "Overview"
msgstr "概要"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "電話番号がクリップボードにコピーされました"
msgid "Pick a {objectLabel} record"
msgstr "{objectLabel}レコードを選択する"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "再接続"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "レコード"
@@ -10149,7 +9958,6 @@ msgstr "レコード"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "記録"
@@ -10352,11 +10160,6 @@ msgstr "削除フィルターを削除"
msgid "Remove from favorites"
msgstr "お気に入りから削除"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "結果"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "フィールドを検索..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "役割を検索..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "メンバーを検索…"
msgid "Search a type"
msgstr "タイプを検索"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "インデックスを検索..."
msgid "Search an object"
msgstr "オブジェクトを検索"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "検索オプション"
msgid "Search records"
msgstr "レコードを検索"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "前のステップからフィールドを選択してください"
msgid "Select a field to display in this widget"
msgstr "このウィジェットに表示するフィールドを選択してください"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Httpリクエストで関数をトリガーします"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "タイプ"
msgid "Type anything..."
msgstr "何でも入力..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "ファイルをアップロード"
msgid "Upload the XML file with your connection infos"
msgstr "接続情報を含むXMLファイルをアップロードしてください"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "ベトナム語"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "ビュー"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "ビュー"
@@ -13511,11 +13261,6 @@ msgstr "既存のレコードを表示"
msgid "view field"
msgstr "ビューフィールド"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "ビューのタイプ"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "노드 추가"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "항목 추가"
msgid "Add Item"
msgstr "항목 추가"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "모든 개체"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "모든 역할"
msgid "All set!"
msgstr "준비 완료!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "사용 가능"
msgid "Available tools"
msgstr "사용 가능한 도구"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "스캔이 불가능합니까?"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "사용자 지정"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "대시보드"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "데이터"
@@ -4460,11 +4422,6 @@ msgstr "샘플 파일 다운로드"
msgid "Drag and Drop Here"
msgstr "여기로 드래그 앤 드롭"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "필드 값 수정"
msgid "Edit Fields"
msgstr "필드 수정"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFrame 편집"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "하위 도메인 이름을 편집하거나 사용자 지정 도메인을
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "사진 제거 실패"
msgid "Failed to retry jobs. Please try again later."
msgstr "작업 재시도 실패. 나중에 다시 시도하세요."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "실패율"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "이름은 비워 둘 수 없습니다"
msgid "Flow"
msgstr "흐름"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "폴더"
@@ -7451,11 +7372,6 @@ msgstr "수동 실행"
msgid "Layout"
msgstr "레이아웃"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "선형 차트"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "링크가 클립보드에 복사되었습니다"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "앱 관리"
msgid "Manage your internet accounts."
msgstr "인터넷 계정을 관리하세요."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "추가 작업"
msgid "More options"
msgstr "추가 옵션"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "왼쪽으로 이동"
msgid "Move right"
msgstr "오른쪽으로 이동"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "새 이메일 도메인"
msgid "New Field"
msgstr "새 필드"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "새 비밀번호"
msgid "New record"
msgstr "새 레코드"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "국가 없음"
msgid "No currency"
msgstr "통화 없음"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "파일 없음"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "폴더 없음"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "사용 가능한 모델이 없습니다. 작업 공간 설정에서 AI
msgid "No notes"
msgstr "메모 없음"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "결과 없음"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "결과를 찾을 수 없습니다"
@@ -8894,16 +8740,6 @@ msgstr "오류가 있는 행이 없습니다."
msgid "No Select field"
msgstr "선택 필드 없음"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "개체"
@@ -9081,7 +8916,6 @@ msgstr "개체"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "개체"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "개체"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "조직"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "기타"
@@ -9465,11 +9291,6 @@ msgstr "초안 덮어쓰기"
msgid "Overview"
msgstr "개요"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "전화번호가 클립보드에 복사되었습니다"
msgid "Pick a {objectLabel} record"
msgstr "{objectLabel} 기록을 선택하세요"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "다시 연결"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "기록"
@@ -10149,7 +9958,6 @@ msgstr "기록"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "기록"
@@ -10352,11 +10160,6 @@ msgstr "삭제된 필터 제거"
msgid "Remove from favorites"
msgstr "즐겨찾기에서 제거"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "결과"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "결과"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "필드 검색..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "역할 검색..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "팀원 검색..."
msgid "Search a type"
msgstr "유형 검색"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "색인 검색..."
msgid "Search an object"
msgstr "개체 검색"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "검색 옵션"
msgid "Search records"
msgstr "레코드 검색"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "이전 단계에서 필드를 선택하십시오"
msgid "Select a field to display in this widget"
msgstr "이 위젯에 표시할 필드를 선택하세요"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Http 요청으로 함수를 실행"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "유형"
msgid "Type anything..."
msgstr "아무거나 입력하세요..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "파일 업로드"
msgid "Upload the XML file with your connection infos"
msgstr "연결 정보가 포함된 XML 파일을 업로드하세요"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "베트남어"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "보기"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "보기"
@@ -13511,11 +13261,6 @@ msgstr "기존 레코드 보기"
msgid "view field"
msgstr "보기 필드"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "보기 유형"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Voeg een knooppunt toe"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Voeg item toe"
msgid "Add Item"
msgstr "Voeg item toe"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alle objecten"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alle rollen"
msgid "All set!"
msgstr "Alles klaar!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Beschikbaar"
msgid "Available tools"
msgstr "Beschikbare tools"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kan je niet scannen? Kopieer de"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Aanpassen"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Dashboards"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Voorbeeldbestand downloaden"
msgid "Drag and Drop Here"
msgstr "Sleep en zet hier neer"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Veldwaarden bewerken"
msgid "Edit Fields"
msgstr "Velden bewerken"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFrame bewerken"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Bewerk de naam van uw subdomein of stel een aangepast domein in."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Het verwijderen van de afbeelding is mislukt"
msgid "Failed to retry jobs. Please try again later."
msgstr "Fout bij het opnieuw proberen van taken. Probeer het later opnieuw."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Foutpercentage"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Voornaam mag niet leeg zijn"
msgid "Flow"
msgstr "Stroom"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Mappen"
@@ -7451,11 +7372,6 @@ msgstr "Handmatig starten"
msgid "Layout"
msgstr "Lay-out"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Lijngrafiek"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link gekopieerd naar klembord"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Beheer je toepassing"
msgid "Manage your internet accounts."
msgstr "Beheer uw internetaccounts."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Meer acties"
msgid "More options"
msgstr "Meer opties"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Verplaats naar links"
msgid "Move right"
msgstr "Verplaats naar rechts"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nieuw e-maildomein"
msgid "New Field"
msgstr "Nieuw veld"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nieuw wachtwoord"
msgid "New record"
msgstr "Nieuw record"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Geen land"
msgid "No currency"
msgstr "Geen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Geen bestanden"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Geen map"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Geen modellen beschikbaar. Configureer AI-modellen in je werkruimte-inst
msgid "No notes"
msgstr "Geen notities"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Geen resultaten"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Geen resultaten gevonden"
@@ -8894,16 +8740,6 @@ msgstr "Geen rijen met fouten"
msgid "No Select field"
msgstr "Geen selecteer veld"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "object"
@@ -9081,7 +8916,6 @@ msgstr "object"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Object"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objecten"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisatie"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Overige"
@@ -9465,11 +9291,6 @@ msgstr "Concept overschrijven"
msgid "Overview"
msgstr "Overzicht"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefoonnummer gekopieerd naar klembord"
msgid "Pick a {objectLabel} record"
msgstr "Kies een {objectLabel} record"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Opnieuw verbinden"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "record"
@@ -10149,7 +9958,6 @@ msgstr "record"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Record"
@@ -10352,11 +10160,6 @@ msgstr "Verwijder Verwijderd-filter"
msgid "Remove from favorites"
msgstr "Verwijderen uit favorieten"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultaat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultaten"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Zoek een veld..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Zoek een rol..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Zoek een teamlid..."
msgid "Search a type"
msgstr "Zoek een type"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Zoek een index..."
msgid "Search an object"
msgstr "Zoek een object"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Opties zoeken"
msgid "Search records"
msgstr "Records zoeken"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Selecteer een veld uit een vorige stap"
msgid "Select a field to display in this widget"
msgstr "Selecteer een veld om in deze widget weer te geven"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12849,7 +12612,6 @@ msgstr "Activeert de functie met een Http-verzoek"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Soort"
msgid "Type anything..."
msgstr "Typ iets..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Bestanden Uploaden"
msgid "Upload the XML file with your connection infos"
msgstr "Upload het XML-bestand met uw verbindingsinformatie"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "Vietnamees"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "weergave"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Weergave"
@@ -13513,11 +13263,6 @@ msgstr ""
msgid "view field"
msgstr "bekijk veld"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Bekijk type"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Legg til node"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Legg til element"
msgid "Add Item"
msgstr "Legg til element"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alle objekter"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alle roller"
msgid "All set!"
msgstr "Alt klart!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Tilgjengelig"
msgid "Available tools"
msgstr "Tilgjengelige verktøy"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kan ikke skanne? Kopier "
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Tilpasning"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr ""
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Last ned eksempelfil"
msgid "Drag and Drop Here"
msgstr "Dra og slipp her"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Rediger feltverdier"
msgid "Edit Fields"
msgstr "Rediger felt"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Rediger iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Rediger din underdomenenavn eller sett et tilpasset domene."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Kunne ikke fjerne bilde"
msgid "Failed to retry jobs. Please try again later."
msgstr "Mislyktes å prøve jobber på nytt. Vennligst prøv igjen senere."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Feilrate"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Fornavn kan ikke være tomt"
msgid "Flow"
msgstr "Flyt"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Mapper"
@@ -7451,11 +7372,6 @@ msgstr "Start manuelt"
msgid "Layout"
msgstr "Oppsett"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Linjediagram"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Lenke kopiert til utklippstavlen"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr ""
msgid "Manage your internet accounts."
msgstr "Administrer internett-kontoene dine."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Flere handlinger"
msgid "More options"
msgstr "Flere alternativer"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Flytt til venstre"
msgid "Move right"
msgstr "Flytt til høyre"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nytt e-postdomene"
msgid "New Field"
msgstr "Nytt felt"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nytt Passord"
msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Intet land"
msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Ingen filer"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Ingen mappe"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Ingen modeller tilgjengelig. Vennligst konfigurer AI-modeller i arbeidso
msgid "No notes"
msgstr "Ingen notater"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Ingen resultater"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Ingen resultater funnet"
@@ -8894,16 +8740,6 @@ msgstr "Ingen rader med feil"
msgid "No Select field"
msgstr "Ingen valgt felt"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekt"
@@ -9081,7 +8916,6 @@ msgstr "objekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekter"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisasjon"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Annen"
@@ -9465,11 +9291,6 @@ msgstr "Erstatt utkast"
msgid "Overview"
msgstr "Oversikt"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefonnummer kopiert til utklippstavlen"
msgid "Pick a {objectLabel} record"
msgstr "Velg en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Koble til igjen"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "oppføring"
@@ -10149,7 +9958,6 @@ msgstr "oppføring"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Oppføring"
@@ -10352,11 +10160,6 @@ msgstr "Fjern slettet filter"
msgid "Remove from favorites"
msgstr "Fjern fra favoritter"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultater"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Søk i et felt..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Søk etter en rolle..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Søk etter et teammedlem..."
msgid "Search a type"
msgstr "Søk etter en type"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Søk i et indeks..."
msgid "Search an object"
msgstr "Søk etter et objekt"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Søkealternativer"
msgid "Search records"
msgstr "Søk poster"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Velg et felt fra et tidligere trinn"
msgid "Select a field to display in this widget"
msgstr "Velg et felt som skal vises i denne widgeten"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Utløser funksjonen med Http-forespørsel"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Type"
msgid "Type anything..."
msgstr "Skriv hva som helst..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Last opp filer"
msgid "Upload the XML file with your connection infos"
msgstr "Last opp XML-filen med tilkoblingsinformasjonen din"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamesisk"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vis"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vis"
@@ -13511,11 +13261,6 @@ msgstr "Vis eksisterende oppføring"
msgid "view field"
msgstr "visningsfelt"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Type visning"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Dodaj węzeł"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Dodaj element"
msgid "Add Item"
msgstr "Dodaj element"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Wszystkie obiekty"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Wszystkie role"
msgid "All set!"
msgstr "Wszystko gotowe!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Dostępne"
msgid "Available tools"
msgstr "Dostępne narzędzia"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Nie można zeskanować? Skopiuj"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Dostosowywanie"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Pulpity nawigacyjne"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dane"
@@ -4460,11 +4422,6 @@ msgstr "Pobierz przykładowy plik"
msgid "Drag and Drop Here"
msgstr "Przeciągnij i upuść tutaj"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Edytuj wartości pól"
msgid "Edit Fields"
msgstr "Edytuj pola"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Edytuj ramkę iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Edytuj nazwę swojej subdomeny lub ustaw niestandardową domenę."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Nie udało się usunąć zdjęcia"
msgid "Failed to retry jobs. Please try again later."
msgstr "Nie udało się ponowić zadań. Proszę spróbować ponownie później."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Wskaźnik niepowodzeń"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Imię nie może być puste"
msgid "Flow"
msgstr "Przepływ"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Foldery"
@@ -7451,11 +7372,6 @@ msgstr "Uruchom ręcznie"
msgid "Layout"
msgstr "Układ"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Wykres liniowy"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link został skopiowany do schowka"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Zarządzaj swoją aplikacją"
msgid "Manage your internet accounts."
msgstr "Zarządzaj swoimi internetowymi kontami."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Więcej działań"
msgid "More options"
msgstr "Więcej opcji"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Przenieś w lewo"
msgid "Move right"
msgstr "Przenieś w prawo"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Nowa domena e-mailowa"
msgid "New Field"
msgstr "Nowe pole"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nowe Hasło"
msgid "New record"
msgstr "Nowy rekord"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Brak kraju"
msgid "No currency"
msgstr "Brak waluty"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Brak plików"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Brak folderu"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Brak dostępnych modeli. Skonfiguruj modele AI w ustawieniach przestrzen
msgid "No notes"
msgstr "Brak notatek"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Brak wyników"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nie znaleziono wyników"
@@ -8894,16 +8740,6 @@ msgstr "Brak wierszy z błędami"
msgid "No Select field"
msgstr "Brak pola wyboru"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "obiekt"
@@ -9081,7 +8916,6 @@ msgstr "obiekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Obiekt"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Obiekty"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organizacja"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Inne"
@@ -9465,11 +9291,6 @@ msgstr "Nadpisz roboczy"
msgid "Overview"
msgstr "Przegląd"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Numer telefonu został skopiowany do schowka"
msgid "Pick a {objectLabel} record"
msgstr "Wybierz rekord {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Ponów połączenie"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "rekord"
@@ -10149,7 +9958,6 @@ msgstr "rekord"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Rekord"
@@ -10352,11 +10160,6 @@ msgstr "Usuń filtr usuniętych"
msgid "Remove from favorites"
msgstr "Usuń z ulubionych"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Wynik"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Wyniki"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Wyszukaj pole..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Szukaj roli..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Szukaj członka zespołu..."
msgid "Search a type"
msgstr "Wyszukaj typ"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Wyszukaj indeks..."
msgid "Search an object"
msgstr "Szukaj obiektu"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Szukaj opcji"
msgid "Search records"
msgstr "Przeszukaj rekordy"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Wybierz pole z poprzedniego kroku"
msgid "Select a field to display in this widget"
msgstr "Wybierz pole do wyświetlenia w tym widżecie"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Wywołuje funkcję żądaniem Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Typ"
msgid "Type anything..."
msgstr "Wpisz cokolwiek..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Prześlij pliki"
msgid "Upload the XML file with your connection infos"
msgstr "Prześlij plik XML z informacjami o połączeniu"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "wietnamski"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "widok"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Widok"
@@ -13511,11 +13261,6 @@ msgstr "Wyświetl istniejący rekord"
msgid "view field"
msgstr "pole widoku"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Typ widoku"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -770,11 +770,6 @@ msgstr ""
msgid "Add a node"
msgstr ""
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -882,21 +877,6 @@ msgstr ""
msgid "Add Item"
msgstr ""
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1337,11 +1317,6 @@ msgstr ""
msgid "All Objects"
msgstr ""
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1352,11 +1327,6 @@ msgstr ""
msgid "All set!"
msgstr ""
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2056,11 +2026,6 @@ msgstr ""
msgid "Available tools"
msgstr ""
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2367,7 +2332,6 @@ msgstr ""
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3630,7 +3594,6 @@ msgstr ""
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3712,7 +3675,6 @@ msgstr ""
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr ""
@@ -4455,11 +4417,6 @@ msgstr ""
msgid "Drag and Drop Here"
msgstr ""
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4590,13 +4547,6 @@ msgstr ""
msgid "Edit Fields"
msgstr ""
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4612,13 +4562,6 @@ msgstr ""
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4659,11 +4602,6 @@ msgstr ""
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5739,11 +5677,6 @@ msgstr ""
msgid "Failed to retry jobs. Please try again later."
msgstr ""
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5823,7 +5756,6 @@ msgstr ""
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6091,19 +6023,8 @@ msgstr ""
msgid "Flow"
msgstr ""
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr ""
@@ -7446,11 +7367,6 @@ msgstr ""
msgid "Layout"
msgstr ""
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7535,16 +7451,6 @@ msgstr ""
msgid "Line Chart"
msgstr ""
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7556,15 +7462,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr ""
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7815,6 +7712,11 @@ msgstr ""
msgid "Manage your internet accounts."
msgstr ""
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8109,11 +8011,6 @@ msgstr ""
msgid "More options"
msgstr ""
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8128,21 +8025,6 @@ msgstr ""
msgid "Move right"
msgstr ""
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8366,13 +8248,6 @@ msgstr ""
msgid "New Field"
msgstr ""
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8403,12 +8278,6 @@ msgstr ""
msgid "New record"
msgstr ""
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8585,11 +8454,6 @@ msgstr ""
msgid "No currency"
msgstr ""
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8694,15 +8558,9 @@ msgstr ""
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr ""
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8786,11 +8644,6 @@ msgstr ""
msgid "No notes"
msgstr ""
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8858,13 +8711,6 @@ msgid "No Results"
msgstr ""
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr ""
@@ -8889,16 +8735,6 @@ msgstr ""
msgid "No Select field"
msgstr ""
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9063,7 +8899,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr ""
@@ -9076,7 +8911,6 @@ msgstr ""
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr ""
@@ -9133,8 +8967,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr ""
@@ -9376,11 +9208,6 @@ msgstr ""
msgid "Organization"
msgstr ""
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9389,7 +9216,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr ""
@@ -9460,11 +9286,6 @@ msgstr ""
msgid "Overview"
msgstr ""
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9693,17 +9514,6 @@ msgstr ""
msgid "Pick a {objectLabel} record"
msgstr ""
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10136,7 +9946,6 @@ msgstr ""
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr ""
@@ -10144,7 +9953,6 @@ msgstr ""
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr ""
@@ -10347,11 +10155,6 @@ msgstr ""
msgid "Remove from favorites"
msgstr ""
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10550,7 +10353,6 @@ msgid "Result"
msgstr ""
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr ""
@@ -10815,11 +10617,6 @@ msgstr ""
msgid "Search a field..."
msgstr ""
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10830,12 +10627,6 @@ msgstr ""
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10846,11 +10637,6 @@ msgstr ""
msgid "Search a type"
msgstr ""
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10882,12 +10668,6 @@ msgstr ""
msgid "Search an object"
msgstr ""
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10971,11 +10751,6 @@ msgstr ""
msgid "Search records"
msgstr ""
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11160,11 +10935,6 @@ msgstr ""
msgid "Select a field to display in this widget"
msgstr ""
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12123,13 +11893,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12842,7 +12605,6 @@ msgstr ""
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12962,11 +12724,6 @@ msgstr ""
msgid "Type anything..."
msgstr ""
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13258,11 +13015,6 @@ msgstr ""
msgid "Upload the XML file with your connection infos"
msgstr ""
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13456,13 +13208,11 @@ msgstr ""
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr ""
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr ""
@@ -13506,11 +13256,6 @@ msgstr ""
msgid "view field"
msgstr ""
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13569,11 +13314,6 @@ msgstr ""
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Adicionar nó"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Adicionar item"
msgid "Add Item"
msgstr "Adicionar item"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Todos os Objetos"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Todas as Funções"
msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponível"
msgid "Available tools"
msgstr "Ferramentas disponíveis"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Não consegue escanear? Copie o"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Painéis"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Baixar arquivo de exemplo"
msgid "Drag and Drop Here"
msgstr "Arraste e solte aqui"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Editar valores dos campos"
msgid "Edit Fields"
msgstr "Editar Campos"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Editar iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Edite o nome do seu subdomínio ou defina um domínio personalizado."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Falha ao remover imagem"
msgid "Failed to retry jobs. Please try again later."
msgstr "Falha ao repetir trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Taxa de falhas"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "O nome não pode estar vazio"
msgid "Flow"
msgstr "Fluxo"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Pastas"
@@ -7451,11 +7372,6 @@ msgstr "Executar manualmente"
msgid "Layout"
msgstr "Disposição"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Gráfico de Linhas"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link copiado para a área de transferência"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gerencie seu aplicativo"
msgid "Manage your internet accounts."
msgstr "Gerencie suas contas de internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Mais ações"
msgid "More options"
msgstr "Mais opções"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Mover para a esquerda"
msgid "Move right"
msgstr "Mover para a direita"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Novo Domínio de E-mail"
msgid "New Field"
msgstr "Novo campo"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nova Senha"
msgid "New record"
msgstr "Novo registro"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Sem país"
msgid "No currency"
msgstr "Nenhuma moeda"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nenhum modelo disponível. Por favor, configure modelos de IA nas config
msgid "No notes"
msgstr "Nenhuma nota"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Nenhum resultado"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -8894,16 +8740,6 @@ msgstr "Sem linhas com erros"
msgid "No Select field"
msgstr "Sem campo de seleção"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objeto"
@@ -9081,7 +8916,6 @@ msgstr "objeto"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organização"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Outros"
@@ -9465,11 +9291,6 @@ msgstr "Sobrescrever Rascunho"
msgid "Overview"
msgstr "Visão geral"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Número de telefone copiado para a área de transferência"
msgid "Pick a {objectLabel} record"
msgstr "Escolha um registro {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconectar"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "registro"
@@ -10149,7 +9958,6 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Gravação"
@@ -10352,11 +10160,6 @@ msgstr "Remover filtro Excluído"
msgid "Remove from favorites"
msgstr "Remover dos favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Pesquise um papel..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Pesquisar um membro da equipe..."
msgid "Search a type"
msgstr "Pesquisar um tipo"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Pesquisar um índice..."
msgid "Search an object"
msgstr "Pesquisar um objeto"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Pesquisar opções"
msgid "Search records"
msgstr "Pesquisar registros"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Selecione um campo de uma etapa anterior"
msgid "Select a field to display in this widget"
msgstr "Selecione um campo para exibir neste widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Aciona a função com solicitação Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tipo"
msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Fazer upload de Arquivos"
msgid "Upload the XML file with your connection infos"
msgstr "Fazer upload do arquivo XML com suas infos de conexão"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamita"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "visualização"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Visualização"
@@ -13511,11 +13261,6 @@ msgstr "Ver registro existente"
msgid "view field"
msgstr "campo de visualização"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Tipo de visualização"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Adicionar nó"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Adicionar item"
msgid "Add Item"
msgstr "Adicionar item"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Todos os Objetos"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Todos os papéis"
msgid "All set!"
msgstr "Tudo pronto!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponível"
msgid "Available tools"
msgstr "Ferramentas disponíveis"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Não consegue escanear? Copie o"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalização"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Painéis"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Transferir exemplo"
msgid "Drag and Drop Here"
msgstr "Arraste e largue aqui"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Editar valores de campo"
msgid "Edit Fields"
msgstr "Editar Campos"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Editar iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Edite o nome do seu subdomínio ou defina um domínio personalizado."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Falha ao remover a imagem"
msgid "Failed to retry jobs. Please try again later."
msgstr "Falha ao reiniciar trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Taxa de falhas"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "O primeiro nome não pode estar vazio"
msgid "Flow"
msgstr "Fluxo"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Pastas"
@@ -7451,11 +7372,6 @@ msgstr "Iniciar manualmente"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Gráfico de linha"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link copiado para a área de transferência"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gerencie sua aplicação"
msgid "Manage your internet accounts."
msgstr "Gerir as suas contas de internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Mais ações"
msgid "More options"
msgstr "Mais opções"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Mover para a esquerda"
msgid "Move right"
msgstr "Mover para a direita"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Novo Domínio de Email"
msgid "New Field"
msgstr "Novo Campo"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Nova Palavra-passe"
msgid "New record"
msgstr "Novo registo"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Sem país"
msgid "No currency"
msgstr "Sem moeda"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Nenhum arquivo"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Nenhuma pasta"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nenhum modelo disponível. Por favor, configure modelos de IA nas config
msgid "No notes"
msgstr "Sem notas"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Sem Resultados"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nenhum resultado encontrado"
@@ -8894,16 +8740,6 @@ msgstr "Nenhuma linha com erros"
msgid "No Select field"
msgstr "Sem campo de seleção"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objeto"
@@ -9081,7 +8916,6 @@ msgstr "objeto"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objeto"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objetos"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organização"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Outros"
@@ -9465,11 +9291,6 @@ msgstr "Sobrescrever Rascunho"
msgid "Overview"
msgstr "Visão Geral"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Número de telefone copiado para a área de transferência"
msgid "Pick a {objectLabel} record"
msgstr "Selecione um registro de {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconectar"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "registro"
@@ -10149,7 +9958,6 @@ msgstr "registro"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Registro"
@@ -10352,11 +10160,6 @@ msgstr "Remover filtro de Excluídos"
msgid "Remove from favorites"
msgstr "Remover dos favoritos"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Resultado"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultados"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Pesquisar um campo..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Procure uma função..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Pesquisar um membro da equipe..."
msgid "Search a type"
msgstr "Pesquisar um tipo"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Pesquisar um índice..."
msgid "Search an object"
msgstr "Pesquisar um objeto"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Opções de pesquisa"
msgid "Search records"
msgstr "Pesquisar registos"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Selecione um campo de uma etapa anterior"
msgid "Select a field to display in this widget"
msgstr "Selecione um campo para apresentar neste widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Aciona a função com solicitação Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tipo"
msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Carregar arquivos"
msgid "Upload the XML file with your connection infos"
msgstr "Envie o arquivo XML com suas informações de conexão"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamita"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vista"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vista"
@@ -13511,11 +13261,6 @@ msgstr "Ver registro existente"
msgid "view field"
msgstr "campo de visualização"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Tipo de Vista"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Adaugă nod"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Adaugă element"
msgid "Add Item"
msgstr "Adaugă element"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Toate obiectele"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Toate rolurile"
msgid "All set!"
msgstr "Gata!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Disponibil"
msgid "Available tools"
msgstr "Instrumente disponibile"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Nu poți scana? Copiază"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Personalizare"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Tablouri de Bord"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Date"
@@ -4460,11 +4422,6 @@ msgstr "Descarcă fișierul de mostră"
msgid "Drag and Drop Here"
msgstr "Glisați și plasați aici"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Editați valorile câmpului"
msgid "Edit Fields"
msgstr "Editați câmpurile"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Editare iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Editează numele subdomeniului tău sau setează un domeniu personalizat
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Nu s-a reușit eliminarea imaginii"
msgid "Failed to retry jobs. Please try again later."
msgstr "Eșuat la reîncercarea locurilor de muncă. Încercați din nou mai târziu."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Rată de eșec"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Prenumele nu poate fi gol"
msgid "Flow"
msgstr "Flux"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Foldere"
@@ -7451,11 +7372,6 @@ msgstr "Lansează manual"
msgid "Layout"
msgstr "Aspect"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Grafic liniar"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link-ul a fost copiat în clipboard"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Gestionați aplicația dvs."
msgid "Manage your internet accounts."
msgstr "Gestionează-ți conturile de internet."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Mai multe acțiuni"
msgid "More options"
msgstr "Mai multe opțiuni"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Mută la stânga"
msgid "Move right"
msgstr "Mută la dreapta"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Domeniu nou de email"
msgid "New Field"
msgstr "Câmp nou"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Parolă nouă"
msgid "New record"
msgstr "Înregistrare nouă"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Fără țară"
msgid "No currency"
msgstr "Fără monedă"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Niciun Fișier"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Niciun folder"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Nu există modele disponibile. Vă rugăm să configurați modelele AI
msgid "No notes"
msgstr "Nicio notă"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Niciun rezultat"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Nu s-au găsit rezultate"
@@ -8894,16 +8740,6 @@ msgstr "Nu există rânduri cu erori"
msgid "No Select field"
msgstr "Fără câmp selectabil"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "obiect"
@@ -9081,7 +8916,6 @@ msgstr "obiect"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Obiect"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Obiecte"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Organizație"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Altul"
@@ -9465,11 +9291,6 @@ msgstr "Suprascrie Schița"
msgid "Overview"
msgstr "Prezentare generală"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Număr de telefon copiat în clipboard"
msgid "Pick a {objectLabel} record"
msgstr "Alege un înregistrare {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Reconectare"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "înregistrare"
@@ -10149,7 +9958,6 @@ msgstr "înregistrare"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Înregistrare"
@@ -10352,11 +10160,6 @@ msgstr "Elimină filtrul de ștergere"
msgid "Remove from favorites"
msgstr "Elimină din favorite"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Rezultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Rezultate"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Caută un câmp..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Căutați un rol..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Caută un membru al echipei..."
msgid "Search a type"
msgstr "Căutați un tip"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Caută un index..."
msgid "Search an object"
msgstr "Caută un obiect"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Opțiuni de căutare"
msgid "Search records"
msgstr "Caută înregistrări"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Selectați un câmp dintr-un pas anterior"
msgid "Select a field to display in this widget"
msgstr "Selectați un câmp pentru afișare în acest widget"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Declanșează funcția cu cerere Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tip"
msgid "Type anything..."
msgstr "Tastează orice..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Încărcați fișiere"
msgid "Upload the XML file with your connection infos"
msgstr "Încărcați fișierul XML cu informațiile conexiunii"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnameză"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vizualizare"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vizualizare"
@@ -13511,11 +13261,6 @@ msgstr "Vezi înregistrarea existentă"
msgid "view field"
msgstr "câmpul vizualizării"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Tip de vizualizare"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
Binary file not shown.
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Додај чвор"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Додај ставку"
msgid "Add Item"
msgstr "Додај ставку"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Сви објекти"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Све улоге"
msgid "All set!"
msgstr "Све је спремно!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Доступно"
msgid "Available tools"
msgstr "Доступни алати"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Не можете да скенирате? Копирајте"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Прилагођавање"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Контролне табле"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Подаци"
@@ -4460,11 +4422,6 @@ msgstr "Преузми пример"
msgid "Drag and Drop Here"
msgstr "Превуците и отпустите овде"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Измените вредности поља"
msgid "Edit Fields"
msgstr "Измените поља"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Уредите иФрејм"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Уредите назив свог потдомена или поста
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Није успело уклањање слике"
msgid "Failed to retry jobs. Please try again later."
msgstr "Није успело понављање послова. Покушајте поново касније."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Стопа неуспеха"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Име не може бити празно"
msgid "Flow"
msgstr "Ток"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Фасцикле"
@@ -7451,11 +7372,6 @@ msgstr "Покрени ручно"
msgid "Layout"
msgstr "Изглед"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Дијаграм линија"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Веза копирана у клипборд"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Управљајте својом апликацијом"
msgid "Manage your internet accounts."
msgstr "Управљање вашим интернетским налозима."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Још радњи"
msgid "More options"
msgstr "Више опција"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Помери улево"
msgid "Move right"
msgstr "Помери удесно"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Нови имејл домен"
msgid "New Field"
msgstr "Ново поље"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Нова лозинка"
msgid "New record"
msgstr "Нови запис"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Нема земље"
msgid "No currency"
msgstr "Нема валуте"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Нема фајлова"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Нема фасцикле"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Нема доступних модела. Молимо вас, конф
msgid "No notes"
msgstr "Нема белешки"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Нема резултата"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Нема резултата"
@@ -8894,16 +8740,6 @@ msgstr "Нема редова са грешкама"
msgid "No Select field"
msgstr "Нема Изабери поља"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "објекат"
@@ -9081,7 +8916,6 @@ msgstr "објекат"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Објекат"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Објекти"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Организација"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Остало"
@@ -9465,11 +9291,6 @@ msgstr "Замени нацрт"
msgid "Overview"
msgstr "Преглед"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Број телефона копиран у клипборд"
msgid "Pick a {objectLabel} record"
msgstr "Изаберите запис за {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Поново повежи"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "запис"
@@ -10149,7 +9958,6 @@ msgstr "запис"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Запис"
@@ -10352,11 +10160,6 @@ msgstr "Уклони филтер избрисаних"
msgid "Remove from favorites"
msgstr "Уклоните из фаворита"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Резултат"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Резултати"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Претражите поље..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Претражите улогу..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Претражите члана тима..."
msgid "Search a type"
msgstr "Претражите тип"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Претражите индекс..."
msgid "Search an object"
msgstr "Претражите објекат"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Претражите опције"
msgid "Search records"
msgstr "Тражите записе"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Изаберите поље из претходног корака"
msgid "Select a field to display in this widget"
msgstr "Изаберите поље за приказ у овом виџету"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Активирање функције Хттп захтевом"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Тип"
msgid "Type anything..."
msgstr "Укуцајте било шта..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Отпремите датотеке"
msgid "Upload the XML file with your connection infos"
msgstr "Отпремите XML датотеку са информацијама о вашој вези"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Вијетнамски"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "преглед"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Преглед"
@@ -13511,11 +13261,6 @@ msgstr "Прикажи постојећи запис"
msgid "view field"
msgstr "поље прегледа"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Тип приказа"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Lägg till en nod"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Lägg till objekt"
msgid "Add Item"
msgstr "Lägg till objekt"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Alla objekt"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Alla roller"
msgid "All set!"
msgstr "Klart!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Tillgänglig"
msgid "Available tools"
msgstr "Tillgängliga verktyg"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Kan inte skanna? Kopiera "
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Anpassning"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Instrumentpaneler"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Data"
@@ -4460,11 +4422,6 @@ msgstr "Ladda ner exempel"
msgid "Drag and Drop Here"
msgstr "Dra och släpp här"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Redigera fältvärden"
msgid "Edit Fields"
msgstr "Redigera fält"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Redigera iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Redigera ditt subdomännamn eller ange en anpassad domän."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Misslyckades med att ta bort bild"
msgid "Failed to retry jobs. Please try again later."
msgstr "Det gick inte att återsöka jobben. Försök igen senare."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Felfrekvens"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Förnamn får inte vara tomt"
msgid "Flow"
msgstr "Flöde"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Mappar"
@@ -7451,11 +7372,6 @@ msgstr "Starta manuellt"
msgid "Layout"
msgstr "Layout"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Linjediagram"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Länk kopierad till urklipp"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Hantera din app"
msgid "Manage your internet accounts."
msgstr "Hantera dina internetkonton."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8116,11 +8018,6 @@ msgstr "Fler åtgärder"
msgid "More options"
msgstr "Fler alternativ"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8135,21 +8032,6 @@ msgstr "Flytta åt vänster"
msgid "Move right"
msgstr "Flytta åt höger"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8373,13 +8255,6 @@ msgstr "Ny e-postdomän"
msgid "New Field"
msgstr "Nytt fält"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8410,12 +8285,6 @@ msgstr "Nytt Lösenord"
msgid "New record"
msgstr "Ny post"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8592,11 +8461,6 @@ msgstr "Inget land"
msgid "No currency"
msgstr "Ingen valuta"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8701,15 +8565,9 @@ msgstr "Inga filer"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Ingen mapp"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8793,11 +8651,6 @@ msgstr "Inga modeller tillgängliga. Vänligen konfigurera AI-modeller i dina ar
msgid "No notes"
msgstr "Inga anteckningar"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8865,13 +8718,6 @@ msgid "No Results"
msgstr "Inga resultat"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Inga resultat hittades"
@@ -8896,16 +8742,6 @@ msgstr "Inga rader med fel"
msgid "No Select field"
msgstr "Inget valfält"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9070,7 +8906,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "objekt"
@@ -9083,7 +8918,6 @@ msgstr "objekt"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Objekt"
@@ -9140,8 +8974,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Objekt"
@@ -9383,11 +9215,6 @@ msgstr ""
msgid "Organization"
msgstr "Organisation"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9396,7 +9223,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Annat"
@@ -9467,11 +9293,6 @@ msgstr "Åsidosätt Utkast"
msgid "Overview"
msgstr "Översikt"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9700,17 +9521,6 @@ msgstr "Telefonnummer kopierat till urklipp"
msgid "Pick a {objectLabel} record"
msgstr "Välj en {objectLabel} post"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10143,7 +9953,6 @@ msgstr "Återanslut"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "post"
@@ -10151,7 +9960,6 @@ msgstr "post"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Post"
@@ -10354,11 +10162,6 @@ msgstr "Ta bort Raderade filter"
msgid "Remove from favorites"
msgstr "Ta bort från favoriter"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10557,7 +10360,6 @@ msgid "Result"
msgstr "Resultat"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Resultat"
@@ -10824,11 +10626,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Sök ett fält..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10839,12 +10636,6 @@ msgstr "Sök en roll..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10855,11 +10646,6 @@ msgstr "Sök en teammedlem..."
msgid "Search a type"
msgstr "Sök en typ"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10891,12 +10677,6 @@ msgstr "Sök ett index..."
msgid "Search an object"
msgstr "Sök efter ett objekt"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10980,11 +10760,6 @@ msgstr "Sök alternativ"
msgid "Search records"
msgstr "Sök poster"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11169,11 +10944,6 @@ msgstr "Välj ett fält från ett tidigare steg"
msgid "Select a field to display in this widget"
msgstr "Välj ett fält som ska visas i den här widgeten"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12134,13 +11904,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12861,7 +12624,6 @@ msgstr "Utlöser funktionen med Http-begäran"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12981,11 +12743,6 @@ msgstr "Typ"
msgid "Type anything..."
msgstr "Skriv något..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13277,11 +13034,6 @@ msgstr "Ladda upp filer"
msgid "Upload the XML file with your connection infos"
msgstr "Ladda upp XML-filen med dina anslutningsuppgifter"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13475,13 +13227,11 @@ msgstr "Vietnamese"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "vy"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Vy"
@@ -13525,11 +13275,6 @@ msgstr "Visa befintlig post"
msgid "view field"
msgstr "vyfält"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13588,11 +13333,6 @@ msgstr "Visa typ"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Bir düğüm ekle"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Öğe ekle"
msgid "Add Item"
msgstr "Öğe ekle"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Tüm Nesneler"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Tüm roller"
msgid "All set!"
msgstr "Her şey hazır!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Mevcut"
msgid "Available tools"
msgstr "Kullanılabilir araçlar"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Tarayamaz mısınız? Kopyalayın."
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Özelleştirme"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Gösterge Panelleri"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Veri"
@@ -4460,11 +4422,6 @@ msgstr "Örnek dosyayı indir"
msgid "Drag and Drop Here"
msgstr "Buraya sürükleyip bırakın"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Alan değerlerini düzenle"
msgid "Edit Fields"
msgstr "Alanları Düzenle"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "iFramei Düzenle"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Alt alan adınızı düzenleyin veya özel bir domain ayarlayın."
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Resim kaldırılamadı"
msgid "Failed to retry jobs. Please try again later."
msgstr "İşleri yeniden deneme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Başarısızlık Oranı"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Ad boş olamaz"
msgid "Flow"
msgstr "Akış"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Klasörler"
@@ -7451,11 +7372,6 @@ msgstr "Manuel olarak başlat"
msgid "Layout"
msgstr "Düzen"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Çizgi Grafiği"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Link panoya kopyalandı"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Uygulamanızı yönetin"
msgid "Manage your internet accounts."
msgstr "İnternet hesaplarınızı yönetin."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Daha fazla işlem"
msgid "More options"
msgstr "Daha fazla seçenek"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Sola taşı"
msgid "Move right"
msgstr "Sağa taşı"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Yeni E-posta Alan Adı"
msgid "New Field"
msgstr "Yeni Alan"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Yeni Parola"
msgid "New record"
msgstr "Yeni kayıt"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Ülke yok"
msgid "No currency"
msgstr "Para birimi yok"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Dosya Yok"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Klasör yok"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Model yok. Lütfen iş yeri ayarlarında AI modellerini yapılandırın.
msgid "No notes"
msgstr "Not yok"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Sonuç Yok"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Sonuç bulunamadı"
@@ -8894,16 +8740,6 @@ msgstr "Hatalı satır yok"
msgid "No Select field"
msgstr "Seçim alanı yok"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "nesne"
@@ -9081,7 +8916,6 @@ msgstr "nesne"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Nesne"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Nesneler"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Kuruluş"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Diğer"
@@ -9465,11 +9291,6 @@ msgstr "Taslağı Geçersiz Kıl"
msgid "Overview"
msgstr "Genel Bakış"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Telefon numarası panoya kopyalandı"
msgid "Pick a {objectLabel} record"
msgstr "Bir {objectLabel} kaydı seç"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Yeniden Bağlan"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "kayıt"
@@ -10149,7 +9958,6 @@ msgstr "kayıt"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Kayıt"
@@ -10352,11 +10160,6 @@ msgstr "Silinmiş filtreyi kaldır"
msgid "Remove from favorites"
msgstr "Favorilerden çıkar"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Sonuç"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Sonuçlar"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Bir alan ara..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Bir rol ara..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Bir ekip üyesi ara..."
msgid "Search a type"
msgstr "Bir tür arayın"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Bir indeks ara..."
msgid "Search an object"
msgstr "Bir nesne ara"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Seçenekleri ara"
msgid "Search records"
msgstr "Kayıtları ara"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Önceki adımda bir alan seçin"
msgid "Select a field to display in this widget"
msgstr "Bu widget'ta görüntülenecek bir alan seçin"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Http isteği ile fonksiyonu tetikler"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Tür"
msgid "Type anything..."
msgstr "Bir şeyler yazın..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Dosyaları Yükle"
msgid "Upload the XML file with your connection infos"
msgstr "XML dosyanızı bağlantı bilgilerinizle yükleyin"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Vietnamca"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "görünüm"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Görünüm"
@@ -13511,11 +13261,6 @@ msgstr "Mevcut kaydı görüntüle"
msgid "view field"
msgstr "görünüm alanı"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Görünüm tipi"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Додати вузол"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Додати елемент"
msgid "Add Item"
msgstr "Додати елемент"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Всі об'єкти"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Всі ролі"
msgid "All set!"
msgstr "Готово!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Доступно"
msgid "Available tools"
msgstr "Доступні інструменти"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Не можете сканувати? Скопіюйте"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Налаштування"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Інформаційні панелі"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Дані"
@@ -4460,11 +4422,6 @@ msgstr "Завантажити зразок"
msgid "Drag and Drop Here"
msgstr "Перетягніть і відпустіть тут"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Редагувати значення полів"
msgid "Edit Fields"
msgstr "Редагувати поля"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Редагувати iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Редагуйте назву вашого субдомену або в
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Не вдалося видалити зображення"
msgid "Failed to retry jobs. Please try again later."
msgstr "Не вдалося повторити завдання. Будь ласка, спробуйте пізніше."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Частота збоїв"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Ім’я не може бути порожнім"
msgid "Flow"
msgstr "Потік"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Папки"
@@ -7451,11 +7372,6 @@ msgstr "Запустити вручну"
msgid "Layout"
msgstr "Макет"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Лінійна діаграма"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Посилання скопійовано в буфер обміну"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Керуйте своїм застосунком"
msgid "Manage your internet accounts."
msgstr "Управління своїми інтернет-акаунтами."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Більше дій"
msgid "More options"
msgstr "Більше опцій"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Перемістити вліво"
msgid "Move right"
msgstr "Перемістити вправо"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Новий домен для відправки електронної
msgid "New Field"
msgstr "Нове поле"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Новий пароль"
msgid "New record"
msgstr "Новий запис"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Немає країни"
msgid "No currency"
msgstr "Без валюти"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Нема файлів"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Немає папки"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "Немає доступних моделей. Увімкніть кон
msgid "No notes"
msgstr "Немає приміток"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Немає результатів"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Результатів не знайдено"
@@ -8894,16 +8740,6 @@ msgstr "Немає рядків з помилками"
msgid "No Select field"
msgstr "Немає поля вибору"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "об'єкт"
@@ -9081,7 +8916,6 @@ msgstr "об'єкт"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Об'єкт"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Об'єкти"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Організація"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Інший"
@@ -9465,11 +9291,6 @@ msgstr "Перезаписати нарис"
msgid "Overview"
msgstr "Огляд"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Номер телефону скопійовано в буфер обм
msgid "Pick a {objectLabel} record"
msgstr "Виберіть запис {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Перепідключити"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "запис"
@@ -10149,7 +9958,6 @@ msgstr "запис"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Запис"
@@ -10352,11 +10160,6 @@ msgstr "Видалити фільтр видалених"
msgid "Remove from favorites"
msgstr "Вилучити з обраного"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Результат"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Результати"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Пошук поля..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Знайти роль..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Шукати учасника команди..."
msgid "Search a type"
msgstr "Пошук типу"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Пошук індексу..."
msgid "Search an object"
msgstr "Пошук об’єкта"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Параметри пошуку"
msgid "Search records"
msgstr "Пошук записів"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Виберіть поле з попереднього кроку"
msgid "Select a field to display in this widget"
msgstr "Виберіть поле для відображення в цьому віджеті"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12849,7 +12612,6 @@ msgstr "Запускає функцію через Http-запит"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12969,11 +12731,6 @@ msgstr "Тип"
msgid "Type anything..."
msgstr "Наберіть щось..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13265,11 +13022,6 @@ msgstr "Завантажити файли"
msgid "Upload the XML file with your connection infos"
msgstr "Завантажте XML файл з інформацією вашого з'єднання"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13463,13 +13215,11 @@ msgstr "В'єтнамська"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "перегляд"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Перегляд"
@@ -13513,11 +13263,6 @@ msgstr "Переглянути наявний запис"
msgid "view field"
msgstr "поле перегляду"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13576,11 +13321,6 @@ msgstr "Тип перегляду"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "Thêm nút"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "Thêm mục"
msgid "Add Item"
msgstr "Thêm mục"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "Tất cả đối tượng"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "Tất cả vai trò"
msgid "All set!"
msgstr "Mọi thứ đã sẵn sàng!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "Có sẵn"
msgid "Available tools"
msgstr "Công cụ có sẵn"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "Không thể quét? Sao chép"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "Tùy chỉnh"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "Bảng điều khiển"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "Dữ liệu"
@@ -4460,11 +4422,6 @@ msgstr "Tải tệp mẫu"
msgid "Drag and Drop Here"
msgstr "Kéo và thả vào đây"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "Chỉnh sửa giá trị trường"
msgid "Edit Fields"
msgstr "Chỉnh sửa trường"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "Chỉnh sửa iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "Chỉnh sửa tên miền phụ của bạn hoặc thiết lập một t
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "Không thể xóa ảnh"
msgid "Failed to retry jobs. Please try again later."
msgstr "Không thể thử lại các công việc. Vui lòng thử lại sau."
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "Tỉ lệ thất bại"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "Tên không được để trống"
msgid "Flow"
msgstr "Dòng chảy"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "Thư mục"
@@ -7451,11 +7372,6 @@ msgstr "Khởi chạy thủ công"
msgid "Layout"
msgstr "Bố cục"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "Biểu đồ đường"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "Đã sao chép đường dẫn vào bảng tạm"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "Quản lý ứng dụng của bạn"
msgid "Manage your internet accounts."
msgstr "Quản lý các tài khoản internet của bạn."
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "Hành động khác"
msgid "More options"
msgstr "Thêm lựa chọn"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "Di chuyển sang trái"
msgid "Move right"
msgstr "Di chuyển sang phải"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "Tên miền Email mới"
msgid "New Field"
msgstr "Trường mới"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "Mật khẩu Mới"
msgid "New record"
msgstr "Bản ghi mới"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "Không có quốc gia"
msgid "No currency"
msgstr "Không có tiền tệ"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "Không có tệp"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "Không có thư mục"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ 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: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "Không có kết quả"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "Không tìm thấy kết quả"
@@ -8894,16 +8740,6 @@ msgstr "Không có hàng nào có lỗi"
msgid "No Select field"
msgstr "Không có trường chọn"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "đối tượng"
@@ -9081,7 +8916,6 @@ msgstr "đối tượng"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "Đối tượng"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "Các đối tượng"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "Tổ chức"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "Khác"
@@ -9465,11 +9291,6 @@ msgstr "Ghi đè bản thảo"
msgid "Overview"
msgstr "Tổng quan"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "Đã sao chép số điện thoại vào bảng tạm"
msgid "Pick a {objectLabel} record"
msgstr "Chọn một bản ghi {objectLabel}"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "Kết nối lại"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "bản ghi"
@@ -10149,7 +9958,6 @@ msgstr "bản ghi"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "Ghi lại"
@@ -10352,11 +10160,6 @@ msgstr "Gỡ bỏ bộ lọc đã xóa"
msgid "Remove from favorites"
msgstr "Loại bỏ khỏi mục yêu thích"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "Kết quả"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "Kết quả"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "Tìm một trường..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "Tìm kiếm một vai trò..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "Tìm kiếm một thành viên..."
msgid "Search a type"
msgstr "Tìm kiếm một loại"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "Tìm một chỉ mục..."
msgid "Search an object"
msgstr "Tìm kiếm một đối tượng"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "Tùy chọn tìm kiếm"
msgid "Search records"
msgstr "Tìm kiếm hồ sơ"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "Chọn một trường từ một bước trước đó"
msgid "Select a field to display in this widget"
msgstr "Chọn một trường để hiển thị trong tiện ích này"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "Kích hoạt chức năng với yêu cầu Http"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "Loại"
msgid "Type anything..."
msgstr "Gõ bất cứ thứ gì..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "Tải lên tệp"
msgid "Upload the XML file with your connection infos"
msgstr "Tải lên tập tin XML với thông tin kết nối của bạn"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "Tiếng Việt"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "xem"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "Xem"
@@ -13511,11 +13261,6 @@ msgstr "Xem bản ghi hiện có"
msgid "view field"
msgstr "trường xem"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "Loại xem"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "添加节点"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "添加项目"
msgid "Add Item"
msgstr "添加项目"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "所有对象"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "所有角色"
msgid "All set!"
msgstr "一切就绪!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "可用"
msgid "Available tools"
msgstr "可用工具"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "无法扫描?复制"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "自定义"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "仪表板"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "数据"
@@ -4460,11 +4422,6 @@ msgstr "下载示例文件"
msgid "Drag and Drop Here"
msgstr "拖放到此处"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "编辑字段值"
msgid "Edit Fields"
msgstr "编辑字段"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "编辑 iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "编辑子域名或设置自定义域名。"
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "移除图片失败"
msgid "Failed to retry jobs. Please try again later."
msgstr "重试任务失败。请稍后再试。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "失败率"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "名不能为空"
msgid "Flow"
msgstr "流程"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "文件夹"
@@ -7451,11 +7372,6 @@ msgstr "手动启动"
msgid "Layout"
msgstr "布局"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "折线图"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "链接已复制到剪贴板"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "管理您的应用程序"
msgid "Manage your internet accounts."
msgstr "管理您的互联网账户。"
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "更多操作"
msgid "More options"
msgstr "更多选项"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "左移"
msgid "Move right"
msgstr "右移"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "新电子邮件发送域名"
msgid "New Field"
msgstr "新字段"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "新密码"
msgid "New record"
msgstr "新记录"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "无国家"
msgid "No currency"
msgstr "无货币"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "无文件"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "无文件夹"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "没有可用的模型。请在工作区设置中配置 AI 模型。"
msgid "No notes"
msgstr "无笔记"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "无结果"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "未找到结果"
@@ -8894,16 +8740,6 @@ msgstr "没有错误的行"
msgid "No Select field"
msgstr "无选择字段"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "对象"
@@ -9081,7 +8916,6 @@ msgstr "对象"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "对象"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "对象"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "组织"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "其他"
@@ -9465,11 +9291,6 @@ msgstr "覆盖草稿"
msgid "Overview"
msgstr "概览"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "电话号码已复制到剪贴板"
msgid "Pick a {objectLabel} record"
msgstr "选择一个 {objectLabel} 记录"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "重新连接"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "记录"
@@ -10149,7 +9958,6 @@ msgstr "记录"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "记录"
@@ -10352,11 +10160,6 @@ msgstr "移除已删除过滤器"
msgid "Remove from favorites"
msgstr "从收藏中移除"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "结果"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "结果"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "搜索角色..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "搜索一个团队成员……"
msgid "Search a type"
msgstr "搜索类型"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "搜索索引..."
msgid "Search an object"
msgstr "搜索对象"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "搜索选项"
msgid "Search records"
msgstr "搜索记录"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "从上一步选择一个字段"
msgid "Select a field to display in this widget"
msgstr "选择要在此小部件中显示的字段"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "通过Http请求触发功能"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "类型"
msgid "Type anything..."
msgstr "输入任何内容..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "上传文件"
msgid "Upload the XML file with your connection infos"
msgstr "上传包含连接信息的 XML 文件"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "越南语"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "视图"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "视图"
@@ -13511,11 +13261,6 @@ msgstr "查看现有记录"
msgid "view field"
msgstr "视图字段"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "视图类型"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
+5 -265
View File
@@ -775,11 +775,6 @@ msgstr ""
msgid "Add a node"
msgstr "添加節點"
#. js-lingui-id: nGv1DN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Add a record"
msgstr ""
#. js-lingui-id: eMc2xs
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
msgid "Add a step"
@@ -887,21 +882,6 @@ msgstr "添加項目"
msgid "Add Item"
msgstr "新增項目"
#. js-lingui-id: gaZXkv
#: src/modules/object-metadata/components/NavigationDrawerSectionForWorkspaceItems.tsx
msgid "Add menu item"
msgstr ""
#. js-lingui-id: JbORSt
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item after"
msgstr ""
#. js-lingui-id: DKlI/M
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Add menu item before"
msgstr ""
#. js-lingui-id: Hkobke
#: src/modules/object-record/record-table/record-table-section/components/RecordTableRecordGroupSectionAddNew.tsx
msgid "Add new"
@@ -1342,11 +1322,6 @@ msgstr ""
msgid "All Objects"
msgstr "所有對象"
#. js-lingui-id: RoFE84
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
msgid "All objects are already in the sidebar"
msgstr ""
#. js-lingui-id: Hm90t3
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "All roles"
@@ -1357,11 +1332,6 @@ msgstr "所有角色"
msgid "All set!"
msgstr "一切就緒!"
#. js-lingui-id: CHvT6e
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemObjectFlow.tsx
msgid "All system objects are already in the sidebar"
msgstr ""
#. js-lingui-id: p+lpde
#: src/modules/activities/tasks/components/TaskGroups.tsx
msgid "All tasks addressed. Maintain the momentum."
@@ -2061,11 +2031,6 @@ msgstr "可用"
msgid "Available tools"
msgstr "可用工具"
#. js-lingui-id: YzokLS
#: src/modules/object-record/record-show/hooks/usePersonAvatarUpload.ts
msgid "Avatar file field not found for person object"
msgstr ""
#. js-lingui-id: 3uQmjD
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -2372,7 +2337,6 @@ msgstr "無法掃描? 複製"
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/provider/components/SpreadsheetImport.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
#: src/modules/action-menu/actions/record-actions/constants/DashboardActionsConfig.tsx
@@ -3635,7 +3599,6 @@ msgstr "自定義"
#. js-lingui-id: srRMnJ
#: src/modules/command-menu/pages/page-layout/components/CommandMenuPageLayoutFieldsSettings.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditLinkItemView.tsx
msgid "Customize"
msgstr ""
@@ -3717,7 +3680,6 @@ msgstr "儀表板"
#: src/modules/command-menu/pages/workflow/trigger-type/components/CommandMenuWorkflowSelectTriggerTypeContent.tsx
#: src/modules/command-menu/pages/workflow/action/components/CommandMenuWorkflowSelectAction.tsx
#: src/modules/command-menu/pages/page-layout/constants/ChartSettingsHeadings.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Data"
msgstr "數據"
@@ -4460,11 +4422,6 @@ msgstr "下載範例檔案"
msgid "Drag and Drop Here"
msgstr "拖放到此處"
#. js-lingui-id: oSoaUV
#: src/modules/command-menu/components/CommandMenuItemWithAddToNavigationDrag.tsx
msgid "Drag to add to navbar"
msgstr ""
#. js-lingui-id: 6D/BnN
#: src/modules/spreadsheet-import/steps/components/UploadStep/components/DropZone.tsx
msgid "Drop file here..."
@@ -4595,13 +4552,6 @@ msgstr "編輯字段值"
msgid "Edit Fields"
msgstr "編輯字段"
#. js-lingui-id: uPHscS
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
msgid "Edit folder"
msgstr ""
#. js-lingui-id: JTcEch
#: src/modules/page-layout/hooks/useEditPageLayoutWidget.ts
msgid "Edit Graph"
@@ -4617,13 +4567,6 @@ msgstr "編輯 iFrame"
msgid "Edit Layout"
msgstr ""
#. js-lingui-id: /PoNoq
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
msgid "Edit link"
msgstr ""
#. js-lingui-id: IaSCqp
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useActionRolePermissionFlagConfig.ts
msgid "Edit own profile information"
@@ -4664,11 +4607,6 @@ msgstr "編輯您的子域名或設置自定義域名。"
msgid "Editable Profile Fields"
msgstr ""
#. js-lingui-id: uBAxNB
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
msgid "Editor"
msgstr ""
#. js-lingui-id: hpAStM
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Eighth"
@@ -5744,11 +5682,6 @@ msgstr "移除圖片失敗"
msgid "Failed to retry jobs. Please try again later."
msgstr "無法重試工作。請稍後重試。"
#. js-lingui-id: fuRtgB
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Failed to save navigation layout"
msgstr ""
#. js-lingui-id: y3HIOa
#: src/pages/settings/ai/SettingsAgentForm.tsx
#: src/pages/settings/ai/SettingsAgentForm.tsx
@@ -5828,7 +5761,6 @@ msgstr "失敗率"
#. js-lingui-id: ocUvR+
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -6096,19 +6028,8 @@ msgstr "名字不可為空"
msgid "Flow"
msgstr "流程"
#. js-lingui-id: kNqMMd
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Folder"
msgstr ""
#. js-lingui-id: cqQyPB
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "Folder name"
msgstr ""
#. js-lingui-id: HSh8u/
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Folders"
msgstr "資料夾"
@@ -7451,11 +7372,6 @@ msgstr "手動啟動"
msgid "Layout"
msgstr "版面設計"
#. js-lingui-id: W4nIBb
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
msgid "Layout customization"
msgstr ""
#. js-lingui-id: yU0QVO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Layouts"
@@ -7540,16 +7456,6 @@ msgstr ""
msgid "Line Chart"
msgstr "折線圖"
#. js-lingui-id: LdyooL
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "link"
msgstr ""
#. js-lingui-id: yzF66j
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Link"
msgstr ""
#. js-lingui-id: pQjjYo
#: src/pages/onboarding/InviteTeam.tsx
#: src/modules/workspace/components/WorkspaceInviteLink.tsx
@@ -7561,15 +7467,6 @@ msgstr ""
msgid "Link copied to clipboard"
msgstr "鏈接已複製到剪貼板"
#. js-lingui-id: vH3ZQY
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
#: src/modules/command-menu/components/CommandMenuLinkInfo.tsx
msgid "Link label"
msgstr ""
#. js-lingui-id: JYFFGu
#: src/modules/activities/timeline-activities/rows/calendar/components/EventRowCalendarEvent.tsx
msgid "linked a calendar event with {labelIdentifierValue}"
@@ -7820,6 +7717,11 @@ msgstr "管理您的應用程式"
msgid "Manage your internet accounts."
msgstr "管理您的互聯網帳戶"
#. js-lingui-id: D1bqKd
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionCodeEditorTab.tsx
msgid "Managed logic functions are not editable"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/command-menu/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/command-menu/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8114,11 +8016,6 @@ msgstr "更多動作"
msgid "More options"
msgstr "更多選項"
#. js-lingui-id: 3Ib6FN
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move down"
msgstr ""
#. js-lingui-id: iSLA/r
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
@@ -8133,21 +8030,6 @@ msgstr "向左移動"
msgid "Move right"
msgstr "向右移動"
#. js-lingui-id: 6qDVmw
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Move to a folder"
msgstr ""
#. js-lingui-id: JCPOml
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move to folder"
msgstr ""
#. js-lingui-id: QyioBP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Move up"
msgstr ""
#. js-lingui-id: asWVA5
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid "must be a number"
@@ -8371,13 +8253,6 @@ msgstr "新電子郵件域名"
msgid "New Field"
msgstr "新字段"
#. js-lingui-id: 96G6Re
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenuFolderInfo.tsx
msgid "New folder"
msgstr ""
#. js-lingui-id: o8MyXb
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
msgid "New key"
@@ -8408,12 +8283,6 @@ msgstr "新密碼"
msgid "New record"
msgstr "新記錄"
#. js-lingui-id: x6Ckh1
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
#: src/modules/command-menu/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
msgid "New sidebar item"
msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
@@ -8590,11 +8459,6 @@ msgstr "無國家"
msgid "No currency"
msgstr "無貨幣"
#. js-lingui-id: DKVJFE
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "No custom views available"
msgstr ""
#. js-lingui-id: plhHQt
#: src/modules/page-layout/widgets/graph/graphWidgetPieChart/components/PieChartCenterMetricLayer.tsx
#: src/modules/page-layout/widgets/graph/components/NoDataLayer.tsx
@@ -8699,15 +8563,9 @@ msgstr "無檔案"
#. js-lingui-id: pYblOw
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folder"
msgstr "沒有資料夾"
#. js-lingui-id: 6XMhqL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "No folders available"
msgstr ""
#. js-lingui-id: aywdyd
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
msgid "No folders found"
@@ -8791,11 +8649,6 @@ msgstr "無模型可用。請在工作區設置中配置AI模型。"
msgid "No notes"
msgstr "沒有筆記"
#. js-lingui-id: YFHO2u
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "No objects with views found"
msgstr ""
#. js-lingui-id: daCzI1
#: src/modules/ui/field/input/components/MultiSelectInput.tsx
msgid "No option found"
@@ -8863,13 +8716,6 @@ msgid "No Results"
msgstr "沒有結果"
#. js-lingui-id: AxPAXW
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
#: src/modules/command-menu/components/CommandMenuList.tsx
msgid "No results found"
msgstr "找不到結果"
@@ -8894,16 +8740,6 @@ msgstr "沒有錯誤的行"
msgid "No Select field"
msgstr "無選擇字段"
#. js-lingui-id: RQ6tfU
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
msgid "No system objects available"
msgstr ""
#. js-lingui-id: Yf4rVG
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "No system objects with views found"
msgstr ""
#. js-lingui-id: fBsRs5
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
msgid "No triggers configured for this function."
@@ -9068,7 +8904,6 @@ msgstr ""
#. js-lingui-id: pNEViR
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "object"
msgstr "對象"
@@ -9081,7 +8916,6 @@ msgstr "對象"
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
#: src/modules/settings/components/SettingsDatabaseEventsForm.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
#: src/modules/command-menu/components/CommandMenu.tsx
msgid "Object"
msgstr "對象"
@@ -9138,8 +8972,6 @@ msgstr ""
#: src/pages/settings/applications/tabs/SettingsApplicationDetailContentTab.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/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Objects"
msgstr "對象"
@@ -9381,11 +9213,6 @@ msgstr ""
msgid "Organization"
msgstr "組織"
#. js-lingui-id: nV6twc
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Organize"
msgstr ""
#. js-lingui-id: /IX/7x
#: src/pages/settings/updates/SettingsUpdates.tsx
#: src/pages/settings/security/SettingsSecurity.tsx
@@ -9394,7 +9221,6 @@ msgstr ""
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
#: src/modules/page-layout/hooks/useTemporaryFieldsConfiguration.ts
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Other"
msgstr "其他"
@@ -9465,11 +9291,6 @@ msgstr "覆寫草稿"
msgid "Overview"
msgstr "概覽"
#. js-lingui-id: LtI9AS
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOwnerSection.tsx
msgid "Owner"
msgstr ""
#. js-lingui-id: y3tCDg
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "p"
@@ -9698,17 +9519,6 @@ msgstr "電話號碼已複製到剪貼板"
msgid "Pick a {objectLabel} record"
msgstr "選擇一個{objectLabel}記錄"
#. js-lingui-id: JqqNlC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Pick a view"
msgstr ""
#. js-lingui-id: Wlba2h
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Pick an object"
msgstr ""
#. js-lingui-id: N0+GsR
#: src/pages/settings/SettingsWorkspace.tsx
#: src/pages/settings/SettingsProfile.tsx
@@ -10141,7 +9951,6 @@ msgstr "重新連接"
#. js-lingui-id: hVS0gK
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsRecordPicker.tsx
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "record"
msgstr "紀錄"
@@ -10149,7 +9958,6 @@ msgstr "紀錄"
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "Record"
msgstr "紀錄"
@@ -10352,11 +10160,6 @@ msgstr "移除已刪除的篩選器"
msgid "Remove from favorites"
msgstr "從收藏中移除"
#. js-lingui-id: 9VZ6f0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditOrganizeActions.tsx
msgid "Remove from sidebar"
msgstr ""
#. js-lingui-id: 99VIgC
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
msgid "Remove member"
@@ -10555,7 +10358,6 @@ msgid "Result"
msgstr "結果"
#. js-lingui-id: kx0s+n
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
#: src/modules/command-menu/hooks/useCommandMenuSearchRecords.tsx
msgid "Results"
msgstr "結果"
@@ -10820,11 +10622,6 @@ msgstr ""
msgid "Search a field..."
msgstr "搜索字段..."
#. js-lingui-id: ITQFzL
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuEditFolderPickerSubView.tsx
msgid "Search a folder..."
msgstr ""
#. js-lingui-id: WXvlVa
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "Search a role..."
@@ -10835,12 +10632,6 @@ msgstr "搜尋角色..."
msgid "Search a skill..."
msgstr ""
#. js-lingui-id: hVJ1MP
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
msgid "Search a system object..."
msgstr ""
#. js-lingui-id: xdl79x
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
msgid "Search a team member..."
@@ -10851,11 +10642,6 @@ msgstr "搜索團隊成員……"
msgid "Search a type"
msgstr "搜索類型"
#. js-lingui-id: +MhOVB
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Search a view..."
msgstr ""
#. js-lingui-id: +7s4fw
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
msgid "Search agents"
@@ -10887,12 +10673,6 @@ msgstr "搜索索引..."
msgid "Search an object"
msgstr "搜索對象"
#. js-lingui-id: BoNHR0
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "Search an object..."
msgstr ""
#. js-lingui-id: S+MGem
#: src/modules/views/hooks/useOpenAnyFieldSearchFilterFromViewBar.ts
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchInputDropdownHeader.tsx
@@ -10976,11 +10756,6 @@ msgstr "搜尋選項"
msgid "Search records"
msgstr "搜索記錄"
#. js-lingui-id: rRklUH
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Search records..."
msgstr ""
#. js-lingui-id: 8sgZS9
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month"
@@ -11165,11 +10940,6 @@ msgstr "從之前的步驟中選擇一個字段"
msgid "Select a field to display in this widget"
msgstr "選取要在此小工具中顯示的欄位"
#. js-lingui-id: dtAvBz
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNavigationMenuItemEditPage.tsx
msgid "Select a navigation item to edit"
msgstr ""
#. js-lingui-id: jL3gox
#: src/modules/object-record/record-field/ui/form-types/components/FormBooleanFieldInput.tsx
msgid "Select a value"
@@ -12128,13 +11898,6 @@ msgstr ""
#. js-lingui-id: 0apULK
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuSystemObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuObjectPickerSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewSystemSubView.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewObjectPickerSubView.tsx
msgid "System objects"
msgstr ""
@@ -12847,7 +12610,6 @@ msgstr "使用Http請求觸發功能"
#. js-lingui-id: c+xCSz
#: src/modules/ui/field/display/components/BooleanDisplay.tsx
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
#: src/modules/settings/data-model/fields/forms/boolean/constants/BooleanDataModelSelectOptions.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/object-filter-dropdown/components/ObjectFilterDropdownBooleanSelect.tsx
@@ -12967,11 +12729,6 @@ msgstr "類型"
msgid "Type anything..."
msgstr "輸入任何內容..."
#. js-lingui-id: UhqKcC
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemRecordSubView.tsx
msgid "Type to search records"
msgstr ""
#. js-lingui-id: V9+2pH
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Ukrainian"
@@ -13263,11 +13020,6 @@ msgstr "上傳文件"
msgid "Upload the XML file with your connection infos"
msgstr "上傳包含連接信息的 XML 文件"
#. js-lingui-id: XzIB4l
#: src/modules/apollo/services/apollo.factory.ts
msgid "Uploaded content is too large."
msgstr ""
#. js-lingui-id: GxkJXS
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
msgid "Uploading..."
@@ -13461,13 +13213,11 @@ msgstr "越南語"
#. js-lingui-id: jUNY/d
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
#: src/modules/command-menu/components/CommandMenuObjectViewRecordInfo.tsx
msgid "view"
msgstr "視圖"
#. js-lingui-id: jpctdh
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemMainMenu.tsx
msgid "View"
msgstr "視圖"
@@ -13511,11 +13261,6 @@ msgstr "檢視現有記錄"
msgid "view field"
msgstr "視圖字段"
#. js-lingui-id: MvRxYh
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view field group"
msgstr ""
#. js-lingui-id: BA3jId
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "view filter"
@@ -13574,11 +13319,6 @@ msgstr "視圖類型"
msgid "View workspace activity logs"
msgstr ""
#. js-lingui-id: 1I6UoR
#: src/modules/command-menu/pages/navigation-menu-item/components/CommandMenuNewSidebarItemViewPickerSubView.tsx
msgid "Views"
msgstr ""
#. js-lingui-id: eedtPL
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Violet"
@@ -1,18 +0,0 @@
import { type Locale } from 'date-fns';
import { enUS } from 'date-fns/locale';
import { type APP_LOCALES } from 'twenty-shared/translations';
import { createStateV2 } from '@/ui/utilities/state/jotai/utils/createStateV2';
type DateLocaleState = {
locale?: keyof typeof APP_LOCALES;
localeCatalog: Locale;
};
export const dateLocaleStateV2 = createStateV2<DateLocaleState>({
key: 'dateLocaleStateV2',
defaultValue: {
locale: undefined,
localeCatalog: enUS,
},
});
@@ -1,4 +1,4 @@
import { type ConnectionParameters } from '~/generated-metadata/graphql';
import { type ConnectionParameters } from '~/generated/graphql';
export type ImapSmtpCaldavAccount = {
IMAP?: ConnectionParameters;
@@ -66,10 +66,8 @@ import {
} from 'twenty-ui/display';
import { isDefined } from 'twenty-shared/utils';
import {
PermissionFlagType,
FeatureFlagKey,
} from '~/generated-metadata/graphql';
import { PermissionFlagType } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const DEFAULT_RECORD_ACTIONS_CONFIG: Record<
| NoSelectionRecordActionKeys
@@ -7,7 +7,7 @@ import { recordStoreFamilyState } from '@/object-record/record-store/states/reco
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useRecoilValue } from 'recoil';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const AddToFavoritesSingleRecordAction = () => {
const { objectMetadataItem } = useContextStoreObjectMetadataItemOrThrow();
@@ -10,7 +10,7 @@ import { useRecordIndexIdFromCurrentContextStore } from '@/object-record/record-
import { useResetTableRowSelection } from '@/object-record/record-table/hooks/internal/useResetTableRowSelection';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const DeleteSingleRecordAction = () => {
const { recordIndexId, objectMetadataItem } =
@@ -7,7 +7,7 @@ import { useDeleteNavigationMenuItem } from '@/navigation-menu-item/hooks/useDel
import { usePrefetchedNavigationMenuItemsData } from '@/navigation-menu-item/hooks/usePrefetchedNavigationMenuItemsData';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const RemoveFromFavoritesSingleRecordAction = () => {
const recordId = useSelectedRecordIdOrThrow();
@@ -2,7 +2,7 @@ import { RECORD_AGNOSTIC_ACTIONS_CONFIG } from '@/action-menu/actions/record-agn
import { RecordAgnosticActionsKeys } from '@/action-menu/actions/record-agnostic-actions/types/RecordAgnosticActionsKeys';
import { type ActionConfig } from '@/action-menu/actions/types/ActionConfig';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const useRecordAgnosticActions = () => {
const isAiEnabled = useIsFeatureEnabled(FeatureFlagKey.IS_AI_ENABLED);
@@ -4,7 +4,7 @@ import { type RecordFilter } from '@/object-record/record-filter/types/RecordFil
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
import { type WorkflowWithCurrentVersion } from '@/workflow/types/Workflow';
import { type ObjectPermissions } from 'twenty-shared/types';
import { type FeatureFlagKey } from '~/generated-metadata/graphql';
import { type FeatureFlagKey } from '~/generated/graphql';
export type ShouldBeRegisteredFunctionParams = {
objectMetadataItem?: ObjectMetadataItem;
@@ -20,7 +20,7 @@ import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useContext, useMemo } from 'react';
import { useRecoilCallback, useRecoilValue } from 'recoil';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const useShouldActionBeRegisteredParams = ({
objectMetadataItem,
@@ -2,7 +2,7 @@ import { type CalendarEventParticipant } from '@/activities/calendar/types/Calen
import { isTimelineCalendarEventParticipant } from '@/activities/calendar/types/guards/IsTimelineCalendarEventParticipant';
import { isDefined } from 'twenty-shared/utils';
import { Avatar, AvatarGroup } from 'twenty-ui/display';
import { type TimelineCalendarEventParticipant } from '~/generated/graphql';
import { type TimelineCalendarEventParticipant } from '~/generated-metadata/graphql';
type CalendarEventParticipantsAvatarGroupProps = {
participants: CalendarEventParticipant[] | TimelineCalendarEventParticipant[];
@@ -3,10 +3,6 @@ import styled from '@emotion/styled';
import { t } from '@lingui/core/macro';
import { format } from 'date-fns';
import { useRecoilValue } from 'recoil';
import {
CalendarChannelVisibility,
type TimelineCalendarEvent,
} from '~/generated/graphql';
import { CalendarEventNotSharedContent } from '@/activities/calendar/components/CalendarEventNotSharedContent';
import { CalendarEventParticipantsAvatarGroup } from '@/activities/calendar/components/CalendarEventParticipantsAvatarGroup';
@@ -16,6 +12,10 @@ import { hasCalendarEventEnded } from '@/activities/calendar/utils/hasCalendarEv
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
import { useOpenCalendarEventInCommandMenu } from '@/command-menu/hooks/useOpenCalendarEventInCommandMenu';
import { IconArrowRight } from 'twenty-ui/display';
import {
CalendarChannelVisibility,
type TimelineCalendarEvent,
} from '~/generated-metadata/graphql';
type CalendarEventRowProps = {
calendarEvent: TimelineCalendarEvent;
@@ -7,7 +7,7 @@ import { getTimelineCalendarEventsFromCompanyId } from '@/activities/calendar/gr
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { LayoutRenderingProvider } from '@/ui/layout/contexts/LayoutRenderingContext';
import { ComponentDecorator } from 'twenty-ui/testing';
import { PageLayoutType } from '~/generated-metadata/graphql';
import { PageLayoutType } from '~/generated/graphql';
import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator';
import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator';
import { graphqlMocks } from '~/testing/graphqlMocks';
@@ -1,5 +1,5 @@
import { type CalendarEventParticipant } from '@/activities/calendar/types/CalendarEventParticipant';
import { type TimelineCalendarEventParticipant } from '~/generated/graphql';
import { type TimelineCalendarEventParticipant } from '~/generated-metadata/graphql';
export const isTimelineCalendarEventParticipant = (
participant: CalendarEventParticipant | TimelineCalendarEventParticipant,
@@ -42,7 +42,7 @@ import '@blocknote/mantine/style.css';
import { useCreateBlockNote } from '@blocknote/react';
import '@blocknote/react/style.css';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
type ActivityRichTextEditorProps = {
activityId: string;
@@ -20,10 +20,8 @@ import { ScrollWrapper } from '@/ui/utilities/scroll/components/ScrollWrapper';
import { assertIsDefinedOrThrow } from 'twenty-shared/utils';
import { IconDownload, IconX } from 'twenty-ui/display';
import { IconButton } from 'twenty-ui/input';
import {
PermissionFlagType,
FeatureFlagKey,
} from '~/generated-metadata/graphql';
import { PermissionFlagType } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
import { AttachmentRow } from './AttachmentRow';
const DocumentViewer = lazy(() =>
@@ -22,10 +22,8 @@ import { useHasPermissionFlag } from '@/settings/roles/hooks/useHasPermissionFla
import { t } from '@lingui/core/macro';
import { IconCalendar, OverflowingTextWithTooltip } from 'twenty-ui/display';
import { isNavigationModifierPressed } from 'twenty-ui/utilities';
import {
PermissionFlagType,
FeatureFlagKey,
} from '~/generated-metadata/graphql';
import { PermissionFlagType } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
import { formatToHumanReadableDate } from '~/utils/date-utils';
import { getFileNameAndExtension } from '~/utils/file/getFileNameAndExtension';
@@ -4,7 +4,7 @@ import { getActivityTargetObjectFieldIdName } from '@/activities/utils/getActivi
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const useAttachments = (targetableObject: ActivityTargetableObject) => {
const isAttachmentMigrated = useIsFeatureEnabled(
@@ -2,26 +2,25 @@ import { type Attachment } from '@/activities/files/types/Attachment';
import { getFileType } from '@/activities/files/utils/getFileType';
import { type ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
import { getActivityTargetObjectFieldIdName } from '@/activities/utils/getActivityTargetObjectFieldIdName';
import { useApolloCoreClient } from '@/object-metadata/hooks/useApolloCoreClient';
import { useObjectMetadataItem } from '@/object-metadata/hooks/useObjectMetadataItem';
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { useCreateOneRecord } from '@/object-record/hooks/useCreateOneRecord';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useApolloClient } from '@apollo/client';
import { t } from '@lingui/core/macro';
import { assertIsDefinedOrThrow, isDefined } from 'twenty-shared/utils';
import {
FeatureFlagKey,
FieldMetadataType,
FileFolder,
useUploadFileMutation,
useUploadFilesFieldFileMutation,
} from '~/generated-metadata/graphql';
import { FeatureFlagKey, FieldMetadataType } from '~/generated/graphql';
export const useUploadAttachmentFile = () => {
const apolloClient = useApolloClient();
const [uploadFile] = useUploadFileMutation({ client: apolloClient });
const coreClient = useApolloCoreClient();
const [uploadFile] = useUploadFileMutation({ client: coreClient });
const [uploadFilesFieldFile] = useUploadFilesFieldFileMutation({
client: apolloClient,
client: coreClient,
});
const isAttachmentMigrated = useIsFeatureEnabled(
FeatureFlagKey.IS_ATTACHMENT_MIGRATED,
@@ -12,7 +12,7 @@ import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataI
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
export const useActivityTargetsForTargetableObjects = ({
objectNameSingular,
@@ -7,7 +7,6 @@ import {
import { useState } from 'react';
import { type ActivityTargetableObject } from '@/activities/types/ActivityTargetableEntity';
import { useApolloCoreClient } from '@/object-metadata/hooks/useApolloCoreClient';
import { CoreObjectNameSingular } from '@/object-metadata/types/CoreObjectNameSingular';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
@@ -38,7 +37,6 @@ export const useCustomResolver = <
fetchMoreRecords: () => Promise<void>;
} => {
const { enqueueErrorSnackBar } = useSnackBar();
const apolloCoreClient = useApolloCoreClient();
const [page, setPage] = useState({
pageNumber: 1,
@@ -64,7 +62,6 @@ export const useCustomResolver = <
loading: firstQueryLoading,
fetchMore,
} = useQuery<CustomResolverQueryResult<T>>(query, {
client: apolloCoreClient,
variables: queryVariables,
onError: (error) => {
enqueueErrorSnackBar({
@@ -15,7 +15,7 @@ import { useObjectPermissions } from '@/object-record/hooks/useObjectPermissions
import { type ObjectRecord } from '@/object-record/types/ObjectRecord';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
import { sortByAscString } from '~/utils/array/sortByAscString';
export const usePrepareFindManyActivitiesQuery = ({
@@ -15,7 +15,7 @@ import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useRecoilCallback, useSetRecoilState } from 'recoil';
import { isDefined } from 'twenty-shared/utils';
import { v4 } from 'uuid';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { FeatureFlagKey } from '~/generated/graphql';
type UpdateActivityTargetFromCellProps = {
recordPickerInstanceId: string;

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