Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 236901d12c refreshHostname throws generic "Value not defined" when custom domain missing from Cloudflare
https://sonarly.com/issue/6662?type=bug

When a user checks DNS records for their custom domain, the server crashes with a generic "Value not defined" error because the hostname doesn't exist in Cloudflare's custom hostnames, despite being set in the workspace database.

Fix: The fix replaces the bare `assertIsDefinedOrThrow(publicDomainWithRecords)` call in `refreshHostname()` with one that passes a proper `DnsManagerException` as the second argument.

Previously, when `getHostnameWithRecords()` returned `undefined` (because the hostname wasn't found in Cloudflare), the assertion threw the default `Error("Value not defined")`. Now it throws a `DnsManagerException` with:
- Code `HOSTNAME_NOT_REGISTERED` (already defined in the exception enum)
- A user-friendly message `"Domain is not registered in Cloudflare"`

This matches the existing pattern used throughout the same service (e.g., `HOSTNAME_ALREADY_REGISTERED` in `registerHostname()`) and uses the already-imported `msg`, `DnsManagerException`, and `DnsManagerExceptionCode` symbols — no new imports or files needed.

```typescript file=packages/twenty-server/src/engine/core-modules/dns-manager/services/dns-manager.service.ts lines=141-150
    assertIsDefinedOrThrow(
      publicDomainWithRecords,
      new DnsManagerException(
        'Hostname not found in Cloudflare',
        DnsManagerExceptionCode.HOSTNAME_NOT_REGISTERED,
        {
          userFriendlyMessage: msg`Domain is not registered in Cloudflare`,
        },
      ),
    );
```
2026-03-05 04:18:36 +00:00
967 changed files with 5211 additions and 15592 deletions
-1
View File
@@ -48,7 +48,6 @@
"search.exclude": {
"**/.yarn": true
},
"eslint.useFlatConfig": true,
"eslint.debug": true,
"files.associations": {
".cursorrules": "markdown"
+14 -14
View File
@@ -46,7 +46,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.30.3",
"react-router-dom": "^6.4.4",
"react-tooltip": "^5.13.1",
"remark-gfm": "^4.0.1",
"rxjs": "^7.2.0",
@@ -72,14 +72,14 @@
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@nx/eslint": "22.5.4",
"@nx/eslint-plugin": "22.5.4",
"@nx/jest": "22.5.4",
"@nx/js": "22.5.4",
"@nx/react": "22.5.4",
"@nx/storybook": "22.5.4",
"@nx/vite": "22.5.4",
"@nx/web": "22.5.4",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/react": "22.3.3",
"@nx/storybook": "22.3.3",
"@nx/vite": "22.3.3",
"@nx/web": "22.3.3",
"@sentry/types": "^8",
"@storybook-community/storybook-addon-cookie": "^5.0.0",
"@storybook/addon-coverage": "^3.0.0",
@@ -90,10 +90,10 @@
"@storybook/react-vite": "^10.2.13",
"@storybook/test-runner": "^0.24.2",
"@stylistic/eslint-plugin": "^1.5.0",
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.11",
"@swc/helpers": "~0.5.19",
"@swc-node/register": "1.11.1",
"@swc/cli": "^0.3.12",
"@swc/core": "1.15.11",
"@swc/helpers": "~0.5.18",
"@swc/jest": "^0.2.39",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
@@ -170,7 +170,7 @@
"jsdom": "~22.1.0",
"msw": "^2.12.7",
"msw-storybook-addon": "^2.0.6",
"nx": "22.5.4",
"nx": "22.3.3",
"prettier": "^3.1.1",
"raw-loader": "^4.0.2",
"rimraf": "^5.0.5",
@@ -1,6 +1,7 @@
import { defineLogicFunction, RoutePayload } from "twenty-sdk";
import { MetadataApiClient } from 'twenty-sdk/generated';
export const OAUTH_TOKEN_PAIRS_PATH = '/oauth/token-pairs';
type ApolloTokenResponse = {
@@ -52,8 +53,16 @@ const handler = async (event: RoutePayload): Promise<any> => {
const apolloClientSecret = process.env.APOLLO_CLIENT_SECRET ?? '';
const applicationId = process.env.APPLICATION_ID ?? '';
const metadataClient = new MetadataApiClient({});
const tokenPairs = await getAuthenticationTokenPairs(
code,
apolloClientId,
@@ -5,6 +5,8 @@ import {
} from 'twenty-sdk';
import { CoreApiClient } from 'twenty-sdk/generated';
type CompanyRecord = {
id: string;
name?: string;
@@ -36,6 +38,8 @@ type ApolloEnrichResponse = {
organization?: ApolloOrganization;
};
const extractDomain = (
domainName?: CompanyRecord['domainName'],
): string | undefined => {
@@ -168,6 +172,7 @@ const updateCompanyInTwenty = async (
}
};
type CompanyUpdateEvent = DatabaseEventPayload<
ObjectRecordUpdateEvent<CompanyRecord>
>;
@@ -176,6 +181,7 @@ const handler = async (
event: CompanyUpdateEvent,
): Promise<object | undefined> => {
const { recordId, properties } = event;
const { after: companyAfter } = properties;
@@ -200,6 +206,7 @@ const handler = async (
return { skipped: true, reason: 'no enrichment data to apply' };
}
await updateCompanyInTwenty(recordId, updateData);
const result = {
@@ -219,3 +219,4 @@ main().catch((error) => {
process.exit(1);
});
@@ -81,3 +81,4 @@ describe('HistoricalImporter', () => {
});
});
@@ -158,3 +158,4 @@ export class HistoricalImporter {
}
}
@@ -1,2 +1,3 @@
export { Meeting } from './meeting';
@@ -330,6 +330,7 @@ export class WebhookHandler {
}
}
private async createFailedMeetingRecord(params: unknown, error: string): Promise<void> {
try {
const twentyApiKey = process.env.TWENTY_API_KEY || '';
@@ -43,6 +43,7 @@ export default defineContentScript({
},
});
ctx.addEventListener(window, 'wxt:locationchange', ({newUrl, }) => {
const injectedBtn = document.querySelector('[data-id="twenty-btn"]');
if(personPattern.includes(newUrl) && !injectedBtn) ui.mount();
@@ -8,6 +8,7 @@ const StyledButton = styled.button`
--text-color: #0a66c2;
--bg-color: #00000000;
font-size: ${({theme}) => theme.spacing(3.5)};
font-weight: ${({theme}) => theme.font.weight.semiBold};
font-family: ${({theme}) => theme.font.family};
@@ -25,6 +26,7 @@ const StyledButton = styled.button`
transition-timing-function: cubic-bezier(.4, 0, .2, 1);
transition-duration: 167ms;
&:hover {
background-color: var(--hover-bg-color);
color: var(--hover-color);
@@ -1,5 +1,6 @@
import { ThemeProvider } from '@emotion/react';
import type React from 'react';
import { ColorSchemeProvider } from 'twenty-ui/theme-constants';
import { THEME_DARK, ThemeContextProvider } from 'twenty-ui/theme';
type ThemeContextProps = {
children: React.ReactNode;
@@ -7,6 +8,10 @@ type ThemeContextProps = {
export const ThemeContext = ({ children }: ThemeContextProps) => {
return (
<ColorSchemeProvider colorScheme="dark">{children}</ColorSchemeProvider>
<ThemeProvider theme={THEME_DARK}>
<ThemeContextProvider theme={THEME_DARK}>
{children}
</ThemeContextProvider>
</ThemeProvider>
);
};
@@ -0,0 +1,5 @@
import type { ThemeType } from 'twenty-ui/theme';
declare module '@emotion/react' {
export interface Theme extends ThemeType {}
}
@@ -1,6 +1,6 @@
{
"name": "@twentyhq/hello-world",
"version": "0.2.2",
"name": "hello-world",
"version": "0.1.0",
"license": "MIT",
"engines": {
"node": "^24.5.0",
+17 -17
View File
@@ -1591,22 +1591,6 @@ __metadata:
languageName: node
linkType: hard
"@twentyhq/hello-world@workspace:.":
version: 0.0.0-use.local
resolution: "@twentyhq/hello-world@workspace:."
dependencies:
"@types/node": "npm:^24.7.2"
"@types/react": "npm:^18.2.0"
eslint: "npm:^9.32.0"
react: "npm:^18.2.0"
twenty-sdk: "npm:0.6.3"
typescript: "npm:^5.9.3"
typescript-eslint: "npm:^8.50.0"
vite-tsconfig-paths: "npm:^4.2.1"
vitest: "npm:^3.1.1"
languageName: unknown
linkType: soft
"@types/chai@npm:^5.2.2":
version: 5.2.3
resolution: "@types/chai@npm:5.2.3"
@@ -1620,7 +1604,7 @@ __metadata:
"@types/deep-eql@npm:*":
version: 4.0.2
resolution: "@types/deep-eql@npm:4.0.2"
checksum: 10c0-bf3f811843117900d7084b9d0c852da9a044d12eb40e6de73b552598a6843c21291a8a381b0532644574beecd5e3491c5ff3a0365ab86b15d59862c025384844
checksum: 10c0/bf3f811843117900d7084b9d0c852da9a044d12eb40e6de73b552598a6843c21291a8a381b0532644574beecd5e3491c5ff3a0365ab86b15d59862c025384844
languageName: node
linkType: hard
@@ -4692,6 +4676,22 @@ __metadata:
languageName: node
linkType: hard
"hello-world@workspace:.":
version: 0.0.0-use.local
resolution: "hello-world@workspace:."
dependencies:
"@types/node": "npm:^24.7.2"
"@types/react": "npm:^18.2.0"
eslint: "npm:^9.32.0"
react: "npm:^18.2.0"
twenty-sdk: "npm:0.6.3"
typescript: "npm:^5.9.3"
typescript-eslint: "npm:^8.50.0"
vite-tsconfig-paths: "npm:^4.2.1"
vitest: "npm:^3.1.1"
languageName: unknown
linkType: soft
"hoist-non-react-statics@npm:^3.3.1":
version: 3.3.2
resolution: "hoist-non-react-statics@npm:3.3.2"
+13 -5
View File
@@ -2,7 +2,9 @@ import { i18n } from '@lingui/core';
import { I18nProvider } from '@lingui/react';
import { type Preview } from '@storybook/react-vite';
import { initialize, mswLoader } from 'msw-storybook-addon';
import { useEffect } from 'react';
import { SOURCE_LOCALE } from 'twenty-shared/translations';
//import { useDarkMode } from 'storybook-dark-mode';
// eslint-disable-next-line no-restricted-imports
import { RootDecorator } from '../src/testing/decorators/RootDecorator';
@@ -11,9 +13,7 @@ import { resetJotaiStore } from '../src/modules/ui/utilities/state/jotai/jotaiSt
import 'react-loading-skeleton/dist/skeleton.css';
import 'twenty-ui/style.css';
import 'twenty-ui/theme-light.css';
import 'twenty-ui/theme-dark.css';
import { ThemeProvider } from 'twenty-ui/theme-constants';
import { THEME_LIGHT, ThemeContextProvider } from 'twenty-ui/theme';
// eslint-disable-next-line no-restricted-imports
import { messages as enMessages } from '../src/locales/generated/en';
@@ -60,15 +60,23 @@ initialize({
const preview: Preview = {
decorators: [
(Story) => {
// const theme = useDarkMode() ? THEME_DARK : THEME_LIGHT;
const theme = THEME_LIGHT;
useEffect(() => {
document.documentElement.className =
theme.name === 'dark' ? 'dark' : 'light';
}, [theme]);
return (
<I18nProvider i18n={i18n}>
<ThemeProvider colorScheme="light">
<ThemeContextProvider theme={theme}>
<ClickOutsideListenerContext.Provider
value={{ excludedClickOutsideId: undefined }}
>
<Story />
</ClickOutsideListenerContext.Provider>
</ThemeProvider>
</ThemeContextProvider>
</I18nProvider>
);
},
+5 -5
View File
@@ -31,13 +31,13 @@
"dependencies": {
"@ai-sdk/react": "3.0.99",
"@apollo/client": "^3.7.17",
"@blocknote/mantine": "^0.47.1",
"@blocknote/react": "^0.47.1",
"@blocknote/xl-docx-exporter": "^0.47.1",
"@blocknote/xl-pdf-exporter": "^0.47.1",
"@blocknote/mantine": "0.47.0",
"@blocknote/react": "0.47.0",
"@blocknote/xl-docx-exporter": "0.47.0",
"@blocknote/xl-pdf-exporter": "0.47.0",
"@calcom/embed-react": "^1.5.3",
"@cyntler/react-doc-viewer": "^1.17.0",
"@dagrejs/dagre": "^1.1.8",
"@dagrejs/dagre": "^1.1.2",
"@floating-ui/react": "^0.24.3",
"@graphiql/plugin-explorer": "^1.0.2",
"@graphiql/react": "^0.23.0",
File diff suppressed because one or more lines are too long
@@ -2,7 +2,8 @@ import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { useLingui } from '@lingui/react/macro';
import { IconCopy, IconExclamationCircle } from 'twenty-ui/display';
import { useContext } from 'react';
import { ThemeContext } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
export const useCopyToClipboard = () => {
const { theme } = useContext(ThemeContext);
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
@@ -5,9 +5,9 @@ import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
import { NAVIGATION_DRAWER_CONSTRAINTS } from '@/ui/layout/resizable-panel/constants/NavigationDrawerConstraints';
import { useIsMobile } from '@/ui/utilities/responsive/hooks/useIsMobile';
import { MainNavigationDrawerItemsSkeletonLoader } from '~/loading/components/MainNavigationDrawerItemsSkeletonLoader';
import { useContext } from 'react';
import { ThemeContext } from 'twenty-ui/theme-constants';
import { ANIMATION, ThemeContext } from 'twenty-ui/theme';
import { MainNavigationDrawerItemsSkeletonLoader } from '~/loading/components/MainNavigationDrawerItemsSkeletonLoader';
const StyledAnimatedContainer = styled(motion.div)`
align-items: center;
@@ -47,8 +47,9 @@ const StyledSkeletonTitleContainer = styled.div`
`;
export const LeftPanelSkeletonLoader = () => {
const { theme } = useContext(ThemeContext);
const isMobile = useIsMobile();
const { theme } = useContext(ThemeContext);
return (
<StyledAnimatedContainer
initial={false}
@@ -56,9 +57,7 @@ export const LeftPanelSkeletonLoader = () => {
width: isMobile ? 0 : NAVIGATION_DRAWER_CONSTRAINTS.default,
opacity: isMobile ? 0 : 1,
}}
transition={{
duration: theme.animation.duration.fast,
}}
transition={{ duration: ANIMATION.duration.fast }}
>
<StyledItemsContainer>
<StyledSkeletonTitleContainer>
@@ -2,7 +2,7 @@ import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLo
import { styled } from '@linaria/react';
import { useContext } from 'react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { ThemeContext } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
const StyledSkeletonContainer = styled.div`
align-items: flex-start;
@@ -22,6 +22,7 @@ export const MainNavigationDrawerItemsSkeletonLoader = ({
length: number;
}) => {
const { theme } = useContext(ThemeContext);
return (
<StyledSkeletonContainer>
<SkeletonTheme
@@ -2,7 +2,8 @@ import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLo
import { styled } from '@linaria/react';
import { useContext } from 'react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledRightDrawerContainer = styled.div`
display: flex;
@@ -13,6 +14,7 @@ const StyledRightDrawerContainer = styled.div`
const StyledSkeletonLoader = () => {
const { theme } = useContext(ThemeContext);
return (
<SkeletonTheme
baseColor={theme.background.tertiary}
@@ -2,11 +2,8 @@ import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLo
import { styled } from '@linaria/react';
import { useContext } from 'react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import {
MOBILE_VIEWPORT,
ThemeContext,
themeCssVariables,
} from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { MOBILE_VIEWPORT, themeCssVariables } from 'twenty-ui/theme-constants';
const StyledMainContainer = styled.div`
background: ${themeCssVariables.background.noisy};
@@ -54,6 +51,7 @@ const StyledRightPanelFlexContainer = styled.div`
const StyledSkeletonHeaderLoader = () => {
const { theme } = useContext(ThemeContext);
return (
<StyledHeaderContainer>
<SkeletonTheme
@@ -72,6 +70,7 @@ const StyledSkeletonHeaderLoader = () => {
const StyledSkeletonAddLoader = () => {
const { theme } = useContext(ThemeContext);
return (
<SkeletonTheme
baseColor={theme.background.tertiary}
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "toepassing se detailbladsy"
msgid "Application details"
msgstr "Toepassing besonderhede"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kan nie skandeer nie? Kopieer die"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Kies tussen OIDC en SAML protokolle"
msgid "Choose between Short and Full"
msgstr "Kies tussen Kort en Volledig"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicasies"
msgid "Dutch"
msgstr "Nederlands"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Voer die geloofsbriewe in om die verbinding te stel"
msgid "Enter the infos to set the connection"
msgstr "Voer die inligting in om die verbinding te stel"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Kon nie antwoord kry nie"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Kon nie gebruiker naboots nie. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Kon nie rol opdateer nie"
msgid "Failed to update variable"
msgstr "Kon nie veranderlike opdateer nie"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Kon nie lêer oplaaai nie: {fileName}"
msgid "Failed to upload picture"
msgstr "Kon nie prent oplaai nie"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Voer 'n JSON-invoer in, druk dan \"Run\" om jou funksie te toets."
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installeer en bestuur toepassings"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Geïnstalleerde toepassings"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Laaste betaling het misluk. Kontak asseblief u admin."
msgid "Last payment failed. Please update your billing details."
msgstr "Laaste betaling het misluk. Werk asseblief u faktureringsbesonderhede by."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Sien werksvloei"
msgid "See Workflows"
msgstr "Sien werkvloeie"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Instellings toestemming"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "opdateer"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Opgradering"
msgid "Upgrade Plan"
msgstr "Gradeer plan op"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Laai op"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Laai .xlsx, .xls of .csv lêer op"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Laai lêers op"
msgid "Upload Files"
msgstr "Laai lêers op"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verifieer die kode vanaf die app"
msgid "Version"
msgstr "Weergawe"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "صفحة تفاصيل التطبيق"
msgid "Application details"
msgstr "تفاصيل التطبيق"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "هل لا يمكنك المسح؟ انسخ الـ"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "اختر بين بروتوكولات OIDC و SAML"
msgid "Choose between Short and Full"
msgstr "اختر بين قصير وكامل"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "النسخ المكررة"
msgid "Dutch"
msgstr "الهولندية"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "أدخل بيانات الاعتماد لتعيين الاتصال"
msgid "Enter the infos to set the connection"
msgstr "أدخل المعلومات لتعيين الاتصال"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "فشل في الحصول على رد"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "فشل في انتحال شخصية المستخدم. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "فشل في تحديث الدور"
msgid "Failed to update variable"
msgstr "فشل في تحديث المتغير"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "فشل في تحميل الملف: {fileName}"
msgid "Failed to upload picture"
msgstr "فشل في تحميل الصورة"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "أدخل إدخال JSON ، ثم اضغط على \"تشغيل\" لاخت
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "تثبيت وإدارة التطبيقات"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "التطبيقات المثبتة"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "فشلت الدفع الأخيرة. يرجى الاتصال بالمسؤ
msgid "Last payment failed. Please update your billing details."
msgstr "فشلت الدفع الأخيرة. يرجى تحديث تفاصيل الفوترة الخاصة بك."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "انظر دورة العمل"
msgid "See Workflows"
msgstr "اطّلع على سير العمل"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "أذونات الإعدادات"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "تحديث"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "تحديث"
msgid "Upgrade Plan"
msgstr "ترقية الخطة"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "رفع"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "تحميل ملف .xlsx أو .xls أو .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "رفع الملفات"
msgid "Upload Files"
msgstr "رفع الملفات"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "تحقق من الرمز من التطبيق"
msgid "Version"
msgstr "الإصدار"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "pàgina de detalls de l'aplicació"
msgid "Application details"
msgstr "Detalls de l'aplicació"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "No pots escanejar? Copia la"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Tria entre protocols OIDC i SAML"
msgid "Choose between Short and Full"
msgstr "Tria entre Curt i Complet"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicats"
msgid "Dutch"
msgstr "Holandès"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Introdueix les credencials per establir la connexió"
msgid "Enter the infos to set the connection"
msgstr "Introdueix la informació per establir la connexió"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "No s'ha pogut obtenir la resposta"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "No s'ha pogut suplantar l'usuari. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Ha fallat l'actualització del rol"
msgid "Failed to update variable"
msgstr "Ha fallat l'actualització de la variable"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "No s'ha pogut carregar el fitxer: {fileName}"
msgid "Failed to upload picture"
msgstr "No s'ha pogut carregar la imatge"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Insereix una entrada JSON, després prem \"Executar\" per provar la teva
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instal·la i gestiona aplicacions"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Aplicacions instal·lades"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "L'últim pagament va fallar. Si us plau, contacta amb el teu administrad
msgid "Last payment failed. Please update your billing details."
msgstr "L'últim pagament va fallar. Si us plau, actualitza les teves dades de facturació."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Veure el flux de treball"
msgid "See Workflows"
msgstr "Veure els fluxos de treball"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Permisos de configuració"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "actualitza"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Actualitzar"
msgid "Upgrade Plan"
msgstr "Actualitza el pla"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Pujada"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Carrega un fitxer .xlsx, .xls o .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Carrega fitxers"
msgid "Upload Files"
msgstr "Carregar Arxius"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verifica el codi de l'aplicació"
msgid "Version"
msgstr "Versió"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "stránka s podrobnostmi aplikace"
msgid "Application details"
msgstr "Podrobnosti aplikace"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Nemůžete skenovat? Zkopírujte"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Vyberte mezi protokoly OIDC a SAML"
msgid "Choose between Short and Full"
msgstr "Vyberte mezi Krátkým a Plným"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicity"
msgid "Dutch"
msgstr "Holandština"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Zadejte údaje pro nastavení připojení"
msgid "Enter the infos to set the connection"
msgstr "Zadejte informace pro nastavení připojení"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Nepodařilo se získat odpověď"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Nepodařilo se vydávat za uživatele. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Nepodařilo se aktualizovat roli"
msgid "Failed to update variable"
msgstr "Nepodařilo se aktualizovat proměnnou"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Nepodařilo se nahrát soubor: {fileName}"
msgid "Failed to upload picture"
msgstr "Nepodařilo se nahrát obrázek"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Vložte vstup JSON a pak stiskněte \"Spustit\" pro testování vaší f
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instalace a správa aplikací"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Nainstalované aplikace"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Poslední platba selhala. Prosím, kontaktujte svého správce."
msgid "Last payment failed. Please update your billing details."
msgstr "Poslední platba selhala. Prosím, aktualizujte své fakturační údaje."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Zobrazit pracovní postup"
msgid "See Workflows"
msgstr "Zobrazit pracovní postupy"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Nastavení oprávnění"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "aktualizovat"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Upgradovat plán"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Nahrát"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Nahrát soubor .xlsx, .xls nebo .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Nahrát soubory"
msgid "Upload Files"
msgstr "Nahrát soubory"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Ověřte kód z aplikace"
msgid "Version"
msgstr "Verze"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "applikationens detaljeside"
msgid "Application details"
msgstr "Applikationsdetaljer"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kan ikke scanne? Kopier"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Vælg mellem OIDC og SAML protokoller"
msgid "Choose between Short and Full"
msgstr "Vælg mellem Kort og Fuld"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplikater"
msgid "Dutch"
msgstr "Hollandsk"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Indtast legitimationsoplysningerne for at indstille forbindelsen"
msgid "Enter the infos to set the connection"
msgstr "Indtast oplysningerne for at indstille forbindelsen"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Kunne ikke få svar"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Kunne ikke logge ind som bruger. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Kunne ikke ændre rollen"
msgid "Failed to update variable"
msgstr "Kunne ikke opdatere variabel"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Kunne ikke uploade fil: {fileName}"
msgid "Failed to upload picture"
msgstr "Kunne ikke uploade billede"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Indsæt en JSON input, og tryk derefter på \"Kør\" for at teste din fu
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installer og administrer applikationer"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Installerede applikationer"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Sidste betaling mislykkedes. Kontakt venligst din administrator."
msgid "Last payment failed. Please update your billing details."
msgstr "Sidste betaling mislykkedes. Opdater venligst dine faktureringsoplysninger."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Se arbejdsproces"
msgid "See Workflows"
msgstr "Se arbejdsprocesser"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Indstillinger for tilladelser"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "opdater"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Opgrader"
msgid "Upgrade Plan"
msgstr "Opgrader planen"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Upload"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Upload .xlsx, .xls eller .csv fil"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Upload filer"
msgid "Upload Files"
msgstr "Upload filer"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Bekræft koden fra appen"
msgid "Version"
msgstr "Version"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "Seite mit Anwendungsdetails"
msgid "Application details"
msgstr "Anwendungsdetails"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kann nicht gescannt werden? Kopieren Sie das"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Wählen Sie zwischen OIDC- und SAML-Protokollen"
msgid "Choose between Short and Full"
msgstr "Wählen Sie zwischen Kurz und Voll"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplikate"
msgid "Dutch"
msgstr "Niederländisch"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Geben Sie die Anmeldedaten ein, um die Verbindung herzustellen"
msgid "Enter the infos to set the connection"
msgstr "Geben Sie die Informationen ein, um die Verbindung herzustellen"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Antwort konnte nicht abgerufen werden"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Fehler beim Übernehmen der Benutzeridentität. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Fehler beim Aktualisieren der Rolle"
msgid "Failed to update variable"
msgstr "Fehler beim Aktualisieren der Variablen"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Datei konnte nicht hochgeladen werden: {fileName}"
msgid "Failed to upload picture"
msgstr "Bild konnte nicht hochgeladen werden"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Geben Sie eine JSON-Eingabe ein und drücken Sie \"Ausführen\", um Ihre
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installieren und Verwalten von Anwendungen"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Installierte Anwendungen"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Letzte Zahlung fehlgeschlagen. Bitte kontaktieren Sie Ihren Administrato
msgid "Last payment failed. Please update your billing details."
msgstr "Letzte Zahlung fehlgeschlagen. Bitte aktualisieren Sie Ihre Rechnungsdaten."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Workflow anzeigen"
msgid "See Workflows"
msgstr "Workflows anzeigen"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Einstellungen Berechtigungen"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "aktualisieren"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Tarif upgraden"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Hochladen"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Hochladen von .xlsx, .xls oder .csv Datei"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Dateien hochladen"
msgid "Upload Files"
msgstr "Dateien hochladen"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Bestätigen Sie den Code von der App"
msgid "Version"
msgstr "Version"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "σελίδα λεπτομερειών εφαρμογής"
msgid "Application details"
msgstr "Λεπτομέρειες εφαρμογής"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Επιλέξτε μεταξύ των πρωτοκόλλων OIDC και
msgid "Choose between Short and Full"
msgstr "Επιλέξτε μεταξύ Συντόμου και Πλήρους"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Διπλότυπα"
msgid "Dutch"
msgstr "Ολλανδικά"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Εισάγετε τα διαπιστευτήρια για να ρυθμ
msgid "Enter the infos to set the connection"
msgstr "Εισάγετε τις πληροφορίες για να ρυθμίσετε τη σύνδεση"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Αποτυχία λήψης απάντησης"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Αποτυχία προσωποποίησης χρήστη. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Αποτυχία ενημέρωσης ρόλου"
msgid "Failed to update variable"
msgstr "Αποτυχία ενημέρωσης μεταβλητής"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Απέτυχε η μεταφόρτωση αρχείου: {fileName}"
msgid "Failed to upload picture"
msgstr "Αποτυχία μεταφόρτωσης εικόνας"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Εισάγετε μια είσοδο JSON και, στη συνέχει
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Εγκατάσταση και διαχείριση εφαρμογών"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Εγκατεστημένες εφαρμογές"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Η τελευταία πληρωμή απέτυχε. Παρακαλώ ε
msgid "Last payment failed. Please update your billing details."
msgstr "Η τελευταία πληρωμή απέτυχε. Παρακαλώ ενημερώστε τα στοιχεία χρέωσής σας."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Δείτε τη ροή εργασίας"
msgid "See Workflows"
msgstr "Δείτε τις ροές εργασίας"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Δικαιώματα ρυθμίσεων"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13896,7 +13812,6 @@ msgid "update"
msgstr "ενημέρωση"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13958,11 +13873,6 @@ msgstr "Αναβάθμιση"
msgid "Upgrade Plan"
msgstr "Αναβάθμιση προγράμματος"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13973,11 +13883,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13988,11 +13893,6 @@ msgstr "Ανέβασμα"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Μεταφόρτωση αρχείων τύπου .xlsx, .xls ή .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14016,12 +13916,6 @@ msgstr "Ανέβασμα αρχείων"
msgid "Upload Files"
msgstr "Ανέβασμα αρχείων"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14232,11 +14126,6 @@ msgstr "Επαληθεύστε τον κωδικό από την εφαρμογ
msgid "Version"
msgstr "Έκδοση"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1778,21 +1778,11 @@ msgstr "application detail page"
msgid "Application details"
msgstr "Application details"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr "Application installed successfully."
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr "Application successfully uninstalled."
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr "Application upgraded successfully."
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2497,8 +2487,6 @@ msgid "Can't scan? Copy the"
msgstr "Can't scan? Copy the"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2715,11 +2703,6 @@ msgstr "Choose between OIDC and SAML protocols"
msgid "Choose between Short and Full"
msgstr "Choose between Short and Full"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr "Choose file"
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4744,11 +4727,6 @@ msgstr "Duplicates"
msgid "Dutch"
msgstr "Dutch"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr "e.g. @twentyhq/hello-world"
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5338,11 +5316,6 @@ msgstr "Enter the credentials to set the connection"
msgid "Enter the infos to set the connection"
msgstr "Enter the infos to set the connection"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr "Enter the npm package name of the application you want to install."
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5994,11 +5967,6 @@ msgstr "Failed to get response"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Failed to impersonate user. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr "Failed to install the application."
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6101,11 +6069,6 @@ msgstr "Failed to update role"
msgid "Failed to update variable"
msgstr "Failed to update variable"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr "Failed to upgrade the application."
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6127,11 +6090,6 @@ msgstr "Failed to upload file: {fileName}"
msgid "Failed to upload picture"
msgstr "Failed to upload picture"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr "Failed to upload tarball."
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7242,7 +7200,6 @@ msgstr "Insert a JSON input, then press \"Run\" to test your function."
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr "Install"
@@ -7251,17 +7208,6 @@ msgstr "Install"
msgid "Install and manage applications"
msgstr "Install and manage applications"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr "Install app"
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr "Install from npm"
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7277,11 +7223,6 @@ msgstr "Installed"
msgid "Installed applications"
msgstr "Installed applications"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr "Installing..."
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7780,11 +7721,6 @@ msgstr "Last payment failed. Please contact your admin."
msgid "Last payment failed. Please update your billing details."
msgstr "Last payment failed. Please update your billing details."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr "latest"
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -9999,11 +9935,6 @@ msgstr "Owner"
msgid "p"
msgstr "p"
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr "Package name"
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11754,11 +11685,6 @@ msgstr "See workflow"
msgid "See Workflows"
msgstr "See Workflows"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11776,11 +11702,6 @@ msgstr "Select 1 {fieldTypeLabelLowercase} field"
msgid "Select 1 field"
msgstr "Select 1 field"
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr "Select a .tar.gz application package to upload and install."
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12102,11 +12023,6 @@ msgstr "Settings permissions"
msgid "Settings tab"
msgstr "Settings tab"
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr "Setup a tailor-made workspace"
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13889,7 +13805,6 @@ msgid "update"
msgstr "update"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13951,11 +13866,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Upgrade Plan"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr "Upgrade to {latestAvailableVersion}"
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13966,11 +13876,6 @@ msgstr "Upgrade to access"
msgid "Upgrade to Enterprise to access audit logs"
msgstr "Upgrade to Enterprise to access audit logs"
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr "Upgrading..."
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13981,11 +13886,6 @@ msgstr "Upload"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Upload .xlsx, .xls or .csv file"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr "Upload failed."
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14009,12 +13909,6 @@ msgstr "Upload files"
msgid "Upload Files"
msgstr "Upload Files"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr "Upload tarball"
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14225,11 +14119,6 @@ msgstr "Verify the code from the app"
msgid "Version"
msgstr "Version"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr "Version (optional)"
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "página de detalles de la aplicación"
msgid "Application details"
msgstr "Detalles de la aplicación"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "¿No puedes escanear? Copia el"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Elija entre los protocolos OIDC y SAML"
msgid "Choose between Short and Full"
msgstr "Elige entre Corto y Completo"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicados"
msgid "Dutch"
msgstr "Holandés"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Ingrese las credenciales para establecer la conexión"
msgid "Enter the infos to set the connection"
msgstr "Ingrese la información para establecer la conexión"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "No se pudo obtener respuesta"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "No se pudo suplantar al usuario. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Error al actualizar el rol"
msgid "Failed to update variable"
msgstr "Error al actualizar la variable"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Falló al subir el archivo: {fileName}"
msgid "Failed to upload picture"
msgstr "Error al subir la imagen"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Inserte una entrada JSON, luego presione \"Ejecutar\" para probar su fun
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instalar y gestionar aplicaciones"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Aplicaciones instaladas"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "El último pago falló. Por favor, contacte a su administrador."
msgid "Last payment failed. Please update your billing details."
msgstr "El último pago falló. Por favor, actualice sus datos de facturación."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr "p"
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Ver flujo de trabajo"
msgid "See Workflows"
msgstr "Ver flujos de trabajo"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Permisos de configuración"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "actualizar"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Actualizar"
msgid "Upgrade Plan"
msgstr "Actualizar plan"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Subir"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Subir un archivo .xlsx, .xls o .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Subir archivos"
msgid "Upload Files"
msgstr "Subir archivos"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Verificar el código desde la aplicación"
msgid "Version"
msgstr "Versión"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "sovelluksen tietosivu"
msgid "Application details"
msgstr "Sovelluksen tiedot"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Et voi skannata? Kopioi"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Valitse OIDC- ja SAML-protokollien välillä"
msgid "Choose between Short and Full"
msgstr "Valitse lyhyen ja täyden välillä"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Kaksoiskappaleet"
msgid "Dutch"
msgstr "Hollanti"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Anna tunnistetiedot yhteyden muodostamiseksi"
msgid "Enter the infos to set the connection"
msgstr "Anna tiedot yhteyden luomiseksi"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Vastausta ei saatu"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Käyttäjän esittäminen epäonnistui. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Roolin päivitys epäonnistui"
msgid "Failed to update variable"
msgstr "Muuttujan päivitys epäonnistui"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Tiedostoa ei voitu ladata: {fileName}"
msgid "Failed to upload picture"
msgstr "Kuvan lähetys epäonnistui"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Lisää JSON-syöte ja paina sitten \"Suorita\" testataksesi toimintoasi
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Asenna ja hallinnoi sovelluksia"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Asennetut sovellukset"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Viimeinen maksu epäonnistui. Ota yhteyttä ylläpitäjääsi."
msgid "Last payment failed. Please update your billing details."
msgstr "Viimeinen maksu epäonnistui. Päivitä laskutustietosi."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Näytä työnkulku"
msgid "See Workflows"
msgstr "Näytä työnkulut"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Asetusten käyttöoikeudet"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "päivitä"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Päivitys"
msgid "Upgrade Plan"
msgstr "Päivitä tilaus"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Lataa"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Lataa .xlsx, .xls tai .csv tiedosto"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Lataa tiedostoja"
msgid "Upload Files"
msgstr "Lataa tiedostoja"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Vahvista koodi sovelluksesta"
msgid "Version"
msgstr "Versio"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "page des détails de l'application"
msgid "Application details"
msgstr "Détails de l'application"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Impossible de scanner ? Copiez le"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Choisissez entre les protocoles OIDC et SAML"
msgid "Choose between Short and Full"
msgstr "Choisir entre Court et Complet"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Doublons"
msgid "Dutch"
msgstr "Néerlandais"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Entrez les identifiants pour établir la connexion"
msgid "Enter the infos to set the connection"
msgstr "Entrez les informations pour établir la connexion"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Impossible d'obtenir une réponse"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Échec de l'usurpation d'identité de l'utilisateur. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Échec de la mise à jour du rôle"
msgid "Failed to update variable"
msgstr "Échec de la mise à jour de la variable"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Échec du téléchargement du fichier : {fileName}"
msgid "Failed to upload picture"
msgstr "Échec du téléversement de l'image"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Insérez une entrée JSON, puis appuyez sur « Exécuter » pour tester
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installer et gérer les applications"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Applications installées"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Le dernier paiement a échoué. Veuillez contacter votre administrateur.
msgid "Last payment failed. Please update your billing details."
msgstr "Le dernier paiement a échoué. Veuillez mettre à jour vos informations de facturation."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Voir le workflow"
msgid "See Workflows"
msgstr "Voir les workflows"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Autorisations des paramètres"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "mettre à jour"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Mettre à niveau"
msgid "Upgrade Plan"
msgstr "Mettre à niveau l'abonnement"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Téléverser"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Téléchargez le fichier .xlsx, .xls ou .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Téléverser des fichiers"
msgid "Upload Files"
msgstr "Téléverser les fichiers"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Vérifiez le code depuis l'application"
msgid "Version"
msgstr "Version"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "דף פרטי היישום"
msgid "Application details"
msgstr "פרטי היישום"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "לא ניתן לסרוק? העתק את"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "בחר בין פרוטוקולים OIDC ו-SAML"
msgid "Choose between Short and Full"
msgstr "בחר בין קצר למלא"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "שכפולים"
msgid "Dutch"
msgstr "הולנדית"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "הזן את הנתונים האישיים כדי להגדיר את הח
msgid "Enter the infos to set the connection"
msgstr "הזן את המידע כדי להגדיר את החיבור"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "התגובה נכשלה בקבלת"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "התחזות למשתמש נכשלה. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "העדכון של התפקיד נכשל"
msgid "Failed to update variable"
msgstr "העדכון של המשתנה נכשל"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "לא הצליח להעלות קובץ: {fileName}"
msgid "Failed to upload picture"
msgstr "העלאת התמונה נכשלה"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "הזן קלט JSON ולאחר מכן לחץ על \"הפעל\" כדי ל
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "התקן וניהול יישומים"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "יישומים מותקנים"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "התשלום האחרון נכשל. אנא צרו קשר עם המנהל
msgid "Last payment failed. Please update your billing details."
msgstr "התשלום האחרון נכשל. אנא עדכן את פרטי החיוב שלך."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "ראה תהליך עבודה"
msgid "See Workflows"
msgstr "ראה תהליכי עבודה"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "הרשאות הגדרות"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "עדכן"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "שדרוג"
msgid "Upgrade Plan"
msgstr "שדרג את התוכנית"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "העלה"
msgid "Upload .xlsx, .xls or .csv file"
msgstr ".xlsx, .xls או .csv העלה קובץ"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "העלה קבצים"
msgid "Upload Files"
msgstr "העלאת קבצים"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "אמת את הקוד מהאפליקציה"
msgid "Version"
msgstr "גרסה"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "alkalmazás részleteinek oldala"
msgid "Application details"
msgstr "Alkalmazás részletei"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Nem tud beolvasni? Másolja a"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "OIDC és SAML protokollok közötti választás"
msgid "Choose between Short and Full"
msgstr "Válasszon a Rövid és Teljes között"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplikátumok"
msgid "Dutch"
msgstr "Holland"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Adja meg a hitelesítési adatokat a kapcsolat beállításához"
msgid "Enter the infos to set the connection"
msgstr "Adja meg az információkat a kapcsolat beállításához"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Nem sikerült a válasz megszerzése"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Nem sikerült a felhasználó megszemélyesítése. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "A szerepkör frissítése sikertelen"
msgid "Failed to update variable"
msgstr "A változó frissítése sikertelen"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Fájl feltöltése nem sikerült: {fileName}"
msgid "Failed to upload picture"
msgstr "Nem sikerült feltölteni a képet"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Illessz be egy JSON bemenetet, majd kattints a \"Futtatás\" gombra a fu
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Alkalmazások telepítése és kezelése"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Telepített alkalmazások"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Az utolsó fizetés sikertelen volt. Kérjük, vegye fel a kapcsolatot a
msgid "Last payment failed. Please update your billing details."
msgstr "Az utolsó fizetés sikertelen volt. Kérjük, frissítse a számlázási adatait."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Workflow megtekintése"
msgid "See Workflows"
msgstr "Munkafolyamatok megtekintése"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Beállítási jogosultságok"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "frissítés"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Bővítés"
msgid "Upgrade Plan"
msgstr "Csomag frissítése"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Feltöltés"
msgid "Upload .xlsx, .xls or .csv file"
msgstr ".xlsx, .xls vagy .csv fájl feltöltése"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Fájlok feltöltése"
msgid "Upload Files"
msgstr "Fájlok feltöltése"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Ellenőrizze a kódot az alkalmazásból"
msgid "Version"
msgstr "Verzió"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "pagina dei dettagli dell'applicazione"
msgid "Application details"
msgstr "Dettagli dell'applicazione"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Non puoi scansionare? Copia il"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Scegli tra i protocolli OIDC e SAML"
msgid "Choose between Short and Full"
msgstr "Scegli tra Breve e Completo"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicati"
msgid "Dutch"
msgstr "Olandese"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Inserisci le credenziali per impostare la connessione"
msgid "Enter the infos to set the connection"
msgstr "Inserisci le informazioni per impostare la connessione"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Impossibile ottenere una risposta"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Impossibile assumere l'identità dell'utente. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Impossibile aggiornare il ruolo"
msgid "Failed to update variable"
msgstr "Impossibile aggiornare la variabile"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Caricamento del file {fileName} non riuscito"
msgid "Failed to upload picture"
msgstr "Caricamento dell'immagine non riuscito"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Inserisci un input JSON, quindi premi \"Esegui\" per testare la tua funz
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installa e gestisci applicazioni"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Applicazioni installate"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Ultimo pagamento non riuscito. Si prega di contattare l'amministratore."
msgid "Last payment failed. Please update your billing details."
msgstr "Ultimo pagamento non riuscito. Si prega di aggiornare i dettagli di fatturazione."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Vedi workflow"
msgid "See Workflows"
msgstr "Vedi workflow"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Autorizzazioni delle impostazioni"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "aggiorna"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Aggiorna"
msgid "Upgrade Plan"
msgstr "Aggiorna piano"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Carica"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Carica un file .xlsx, .xls o .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Carica file"
msgid "Upload Files"
msgstr "Carica file"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Verifica il codice dall'app"
msgid "Version"
msgstr "Versione"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "アプリケーション詳細ページ"
msgid "Application details"
msgstr "アプリケーション詳細"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "スキャンできませんか? コピーしてください"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "OIDCとSAMLプロトコルの中から選択"
msgid "Choose between Short and Full"
msgstr "ショートとフルの間で選択"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "重複"
msgid "Dutch"
msgstr "オランダ語"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "接続を設定するための資格情報を入力してください"
msgid "Enter the infos to set the connection"
msgstr "接続を設定するための情報を入力してください"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "応答の取得に失敗しました"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "ユーザーの代理ログインに失敗しました。{errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "ロールの更新に失敗しました。"
msgid "Failed to update variable"
msgstr "変数の更新に失敗しました"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "ファイルのアップロードに失敗しました: {fileName}"
msgid "Failed to upload picture"
msgstr "画像のアップロードに失敗しました"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "JSON入力を挿入し、「実行」を押して関数をテストし
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "アプリケーションのインストールと管理"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "インストール済みのアプリケーション"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "最終支払いは失敗しました。管理者に連絡してくださ
msgid "Last payment failed. Please update your billing details."
msgstr "最終支払いは失敗しました。請求先の詳細を更新してください。"
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "ワークフローを見る"
msgid "See Workflows"
msgstr "ワークフローを表示"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "設定の権限"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "更新"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "アップグレード"
msgid "Upgrade Plan"
msgstr "プランをアップグレード"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "アップロード"
msgid "Upload .xlsx, .xls or .csv file"
msgstr ".xlsx、.xls、または.csvファイルをアップロード"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "ファイルをアップロード"
msgid "Upload Files"
msgstr "ファイルをアップロード"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "アプリからのコードを確認"
msgid "Version"
msgstr "バージョン"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "애플리케이션 세부정보 페이지"
msgid "Application details"
msgstr "응용 프로그램 세부정보"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "스캔이 불가능합니까?"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "OIDC와 SAML 프로토콜 중 선택"
msgid "Choose between Short and Full"
msgstr "짧음과 긴 중에서 선택"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "중복 항목"
msgid "Dutch"
msgstr "네덜란드어"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "연결 설정을 위해 자격 증명을 입력하세요"
msgid "Enter the infos to set the connection"
msgstr "연결 설정을 위한 정보를 입력하세요"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "응답을 받지 못했습니다"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "사용자 가장에 실패했습니다. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "역할 업데이트 실패"
msgid "Failed to update variable"
msgstr "변수를 업데이트하지 못했습니다."
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "파일 업로드 실패: {fileName}"
msgid "Failed to upload picture"
msgstr "사진 업로드 실패"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "JSON 입력을 삽입한 후 \"실행\"을 눌러 기능을 테스트하
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "애플리케이션 설치 및 관리"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "설치된 애플리케이션"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "지난 결제에 실패했습니다. 관리자에게 문의하세요."
msgid "Last payment failed. Please update your billing details."
msgstr "지난 결제에 실패했습니다. 청구 정보를 업데이트하세요."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "워크플로우 보기"
msgid "See Workflows"
msgstr "워크플로우 보기"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "설정 권한"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "업데이트"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "업그레이드"
msgid "Upgrade Plan"
msgstr "요금제 업그레이드"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "업로드"
msgid "Upload .xlsx, .xls or .csv file"
msgstr ".xlsx, .xls 또는 .csv 파일 업로드"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "파일 업로드"
msgid "Upload Files"
msgstr "파일 업로드"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "앱에서 코드를 확인하세요"
msgid "Version"
msgstr "버전"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "pagina met applicatiedetails"
msgid "Application details"
msgstr "Applicatiedetails"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kan je niet scannen? Kopieer de"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Kies tussen OIDC- en SAML-protocollen"
msgid "Choose between Short and Full"
msgstr "Kies tussen Kort en Volledig"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicaten"
msgid "Dutch"
msgstr "Nederlands"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Voer de inloggegevens in om de verbinding in te stellen"
msgid "Enter the infos to set the connection"
msgstr "Voer de informatie in om de verbinding in te stellen"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Antwoord verkrijgen mislukt"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Kon gebruiker niet nabootsen. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Fout bij het bijwerken van de rol"
msgid "Failed to update variable"
msgstr "Fout bij het bijwerken van variabele"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Niet gelukt om bestand te uploaden: {fileName}"
msgid "Failed to upload picture"
msgstr "Afbeelding uploaden mislukt"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Voer een JSON-invoer in en druk op \"Uitvoeren\" om uw functie te testen
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installeer en beheer toepassingen"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Geïnstalleerde toepassingen"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Laatste betaling mislukt. Neem contact op met uw beheerder."
msgid "Last payment failed. Please update your billing details."
msgstr "Laatste betaling mislukt. Werk uw factureringsgegevens bij."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Zie workflow"
msgid "See Workflows"
msgstr "Bekijk workflows"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Instellingen toestemmingen"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "bijwerken"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Abonnement upgraden"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Uploaden"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Upload .xlsx, .xls of .csv bestand"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Bestanden uploaden"
msgid "Upload Files"
msgstr "Bestanden Uploaden"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Verifieer de code vanuit de app"
msgid "Version"
msgstr "Versie"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "applikasjonens detaljside"
msgid "Application details"
msgstr "Applikasjonsdetaljer"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kan ikke skanne? Kopier "
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Velg mellom OIDC og SAML protokoller"
msgid "Choose between Short and Full"
msgstr "Velg mellom Kort og Full"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplikater"
msgid "Dutch"
msgstr "Nederlandsk"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Skriv inn legitimasjonen for å sette opp tilkoblingen"
msgid "Enter the infos to set the connection"
msgstr "Skriv inn informasjonen for å sette opp tilkoblingen"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Kunne ikke få svar"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Kunne ikke utgi seg for bruker. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Kunne ikke oppdatere rolle"
msgid "Failed to update variable"
msgstr "Kunne ikke oppdatere variabel"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Kunne ikke laste opp fil: {fileName}"
msgid "Failed to upload picture"
msgstr "Kunne ikke laste opp bilde"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Sett inn en JSON-inndata, trykk så \"Kjør\" for å teste funksjonen di
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installer og administrer apper"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr ""
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Siste betaling mislyktes. Vennligst kontakt administratoren din."
msgid "Last payment failed. Please update your billing details."
msgstr "Siste betaling mislyktes. Vennligst oppdater faktureringsinformasjonen din."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Se arbeidsflyt"
msgid "See Workflows"
msgstr "Se arbeidsflyter"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Innstillingsrettigheter"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "oppdater"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Oppgrader"
msgid "Upgrade Plan"
msgstr ""
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Last opp"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Last opp .xlsx, .xls eller .csv fil"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Last opp filer"
msgid "Upload Files"
msgstr "Last opp filer"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verifiser koden fra appen"
msgid "Version"
msgstr "Versjon"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "strona szczegółów aplikacji"
msgid "Application details"
msgstr "Szczegóły aplikacji"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Nie można zeskanować? Skopiuj"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Wybierz pomiędzy protokołami OIDC a SAML"
msgid "Choose between Short and Full"
msgstr "Wybierz między Krótkim i Pełnym"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplikaty"
msgid "Dutch"
msgstr "holenderski"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Wprowadź dane uwierzytelniające, aby ustawić połączenie"
msgid "Enter the infos to set the connection"
msgstr "Wprowadź informacje, aby ustawić połączenie"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Nie udało się uzyskać odpowiedzi"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Nie udało się podszyć pod użytkownika. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Nie udało się zaktualizować roli"
msgid "Failed to update variable"
msgstr "Nie udało się zaktualizować zmiennej"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Nie udało się przesłać pliku: {fileName}"
msgid "Failed to upload picture"
msgstr "Nie udało się przesłać zdjęcia"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Wprowadź dane JSON, a następnie naciśnij \"Uruchom\", aby przetestowa
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Zainstaluj i zarządzaj aplikacjami"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Zainstalowane aplikacje"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Ostatnia płatność nie powiodła się. Proszę skontaktować się z ad
msgid "Last payment failed. Please update your billing details."
msgstr "Ostatnia płatność nie powiodła się. Proszę zaktualizować swoje dane rozliczeniowe."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Zobacz przepływ pracy"
msgid "See Workflows"
msgstr "Zobacz przepływy pracy"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Ustawienia uprawnień"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "zaktualizuj"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Aktualizacja"
msgid "Upgrade Plan"
msgstr "Zaktualizuj plan"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Prześlij"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Załaduj plik .xlsx, .xls lub .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Prześlij pliki"
msgid "Upload Files"
msgstr "Prześlij pliki"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Zweryfikuj kod z aplikacji"
msgid "Version"
msgstr "Wersja"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -1778,21 +1778,11 @@ msgstr ""
msgid "Application details"
msgstr ""
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2497,8 +2487,6 @@ msgid "Can't scan? Copy the"
msgstr ""
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2715,11 +2703,6 @@ msgstr ""
msgid "Choose between Short and Full"
msgstr ""
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4744,11 +4727,6 @@ msgstr ""
msgid "Dutch"
msgstr ""
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5338,11 +5316,6 @@ msgstr ""
msgid "Enter the infos to set the connection"
msgstr ""
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5994,11 +5967,6 @@ msgstr ""
msgid "Failed to impersonate user. {errorMessage}"
msgstr ""
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6101,11 +6069,6 @@ msgstr ""
msgid "Failed to update variable"
msgstr ""
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6127,11 +6090,6 @@ msgstr ""
msgid "Failed to upload picture"
msgstr ""
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7242,7 +7200,6 @@ msgstr ""
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7251,17 +7208,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr ""
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7277,11 +7223,6 @@ msgstr ""
msgid "Installed applications"
msgstr ""
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7780,11 +7721,6 @@ msgstr ""
msgid "Last payment failed. Please update your billing details."
msgstr ""
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -9999,11 +9935,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11754,11 +11685,6 @@ msgstr ""
msgid "See Workflows"
msgstr ""
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11776,11 +11702,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12102,11 +12023,6 @@ msgstr ""
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13887,7 +13803,6 @@ msgid "update"
msgstr ""
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13949,11 +13864,6 @@ msgstr ""
msgid "Upgrade Plan"
msgstr ""
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13964,11 +13874,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13979,11 +13884,6 @@ msgstr ""
msgid "Upload .xlsx, .xls or .csv file"
msgstr ""
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14007,12 +13907,6 @@ msgstr ""
msgid "Upload Files"
msgstr ""
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14223,11 +14117,6 @@ msgstr ""
msgid "Version"
msgstr ""
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "página de detalhes da aplicação"
msgid "Application details"
msgstr "Detalhes da aplicação"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr "Aplicação desinstalada com sucesso."
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Não consegue escanear? Copie o"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Escolha entre os protocolos OIDC e SAML"
msgid "Choose between Short and Full"
msgstr "Escolha entre Curto e Completo"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicatas"
msgid "Dutch"
msgstr "Holandês"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Insira as credenciais para configurar a conexão"
msgid "Enter the infos to set the connection"
msgstr "Insira as infos para configurar a conexão"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Falha ao obter resposta"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Falha ao assumir a identidade do usuário. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Falha ao atualizar a função"
msgid "Failed to update variable"
msgstr "Falha ao atualizar a variável"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Falha ao carregar arquivo: {fileName}"
msgid "Failed to upload picture"
msgstr "Falha ao carregar imagem"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Insira um JSON de entrada, então pressione \"Executar\" para testar sua
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instalar e gerenciar aplicativos"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Aplicativos instalados"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Último pagamento falhou. Por favor, entre em contato com o seu administ
msgid "Last payment failed. Please update your billing details."
msgstr "Último pagamento falhou. Por favor, atualize suas informações de faturamento."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Ver workflow"
msgid "See Workflows"
msgstr "Ver workflows"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Permissões de configurações"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "atualizar"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Atualizar plano"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Carregar"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Carregar arquivo .xlsx, .xls ou .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Fazer upload de arquivos"
msgid "Upload Files"
msgstr "Fazer upload de Arquivos"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verifique o código do app"
msgid "Version"
msgstr "Versão"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "página de detalhes da aplicação"
msgid "Application details"
msgstr "Detalhes da aplicação"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Não consegue escanear? Copie o"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Escolha entre os protocolos OIDC e SAML"
msgid "Choose between Short and Full"
msgstr "Escolha entre Curto e Completo"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicados"
msgid "Dutch"
msgstr "Holandês"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Insira as credenciais para configurar a conexão"
msgid "Enter the infos to set the connection"
msgstr "Insira as informações para configurar a conexão"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Falha ao obter resposta"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Falha ao personificar o utilizador. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Falha ao atualizar a função"
msgid "Failed to update variable"
msgstr "Falha ao atualizar a variável"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Falha ao carregar o arquivo: {fileName}"
msgid "Failed to upload picture"
msgstr "Falha ao carregar a imagem"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Insira uma entrada JSON, depois pressione \"Executar\" para testar sua f
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instalar e gerenciar aplicações"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Aplicações instaladas"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Último pagamento falhou. Por favor, contate o seu administrador."
msgid "Last payment failed. Please update your billing details."
msgstr "Último pagamento falhou. Por favor, atualize seus detalhes de cobrança."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Ver workflow"
msgid "See Workflows"
msgstr "Ver workflows"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Permissões de configurações"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "atualizar"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Upgrade"
msgid "Upgrade Plan"
msgstr "Atualizar plano"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Carregar"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Carregar arquivo .xlsx, .xls ou .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Carregar ficheiros"
msgid "Upload Files"
msgstr "Carregar arquivos"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verificar o código do aplicativo"
msgid "Version"
msgstr "Versão"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "pagina de detalii a aplicației"
msgid "Application details"
msgstr "Detalii aplicație"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Nu poți scana? Copiază"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Alegeți între protocoalele OIDC și SAML"
msgid "Choose between Short and Full"
msgstr "Alege între Redus și Complet"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Duplicat"
msgid "Dutch"
msgstr "Olandeză"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Introduceți acreditările pentru a stabili conexiunea"
msgid "Enter the infos to set the connection"
msgstr "Introduceți informațiile pentru a stabili conexiunea"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Nu s-a putut obține un răspuns"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Nu s-a putut impersona utilizatorul. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Eroare la actualizarea rolului"
msgid "Failed to update variable"
msgstr "Eroare la actualizarea variabilei"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Nu s-a reușit încărcarea fișierului: {fileName}"
msgid "Failed to upload picture"
msgstr "Nu s-a reușit încărcarea imaginii"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Introduceți o intrare JSON, apoi apăsați \"Execută\" pentru a testa
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Instalați și gestionați aplicațiile"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Aplicații instalate"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Ultima plată a eșuat. Vă rugăm să contactați administratorul dumne
msgid "Last payment failed. Please update your billing details."
msgstr "Ultima plată a eșuat. Vă rugăm să actualizați detaliile de facturare."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Vezi flux de lucru"
msgid "See Workflows"
msgstr "Vezi fluxuri de lucru"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Permisiuni pentru setări"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "actualizează"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Actualizare"
msgid "Upgrade Plan"
msgstr "Actualizați planul"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Încarcă"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Încarcă fișier .xlsx, .xls sau .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Încărcați fișiere"
msgid "Upload Files"
msgstr "Încărcați fișiere"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Verifică codul din aplicație"
msgid "Version"
msgstr "Versiune"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
Binary file not shown.
@@ -1783,21 +1783,11 @@ msgstr "страница са детаљима апликације"
msgid "Application details"
msgstr "Детаљи апликације"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Не можете да скенирате? Копирајте"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Изаберите између OIDC и SAML протокола"
msgid "Choose between Short and Full"
msgstr "Изаберите између кратке и пуне"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Дупликати"
msgid "Dutch"
msgstr "Холандски"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Унесите акредитиве за подешавање везе"
msgid "Enter the infos to set the connection"
msgstr "Унесите информације за подешавање везе"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Није могуће добити одговор"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Преузимање идентитета корисника није успело. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Није успело ажурирање улоге"
msgid "Failed to update variable"
msgstr "Није успело ажурирање променљиве"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Није успела отпремање датотеке: {fileName}"
msgid "Failed to upload picture"
msgstr "Није успело отпремање слике"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Унесите JSON унос, затим притисните \"Извр
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Инсталирајте и управљајте апликацијама"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Инсталиране апликације"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Последње плаћање није успело. Молимо ва
msgid "Last payment failed. Please update your billing details."
msgstr "Последње плаћање није успело. Молимо вас ажурирајте ваше податке о наплати."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Погледајте ток рада"
msgid "See Workflows"
msgstr "Погледајте токове рада"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Дозволе за подешавања"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "ажурирај"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Унапређење"
msgid "Upgrade Plan"
msgstr "Надоградите план"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Отпреми"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Отпремите .xlsx, .xls или .csv датотеку"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Отпремите датотеке"
msgid "Upload Files"
msgstr "Отпремите датотеке"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Проверите код из апликације"
msgid "Version"
msgstr "Верзија"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "applikationens detaljsida"
msgid "Application details"
msgstr "Applikationsdetaljer"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Kan inte skanna? Kopiera "
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Välj mellan OIDC och SAML-protokoll"
msgid "Choose between Short and Full"
msgstr "Välj mellan Kort och Fullständig"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Dubbletter"
msgid "Dutch"
msgstr "Dutch"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Ange autentiseringsuppgifterna för att ställa in anslutningen"
msgid "Enter the infos to set the connection"
msgstr "Ange informationen för att ställa in anslutningen"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Kunde inte få svar"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Misslyckades med att agera som användare. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Misslyckades med att uppdatera rollen"
msgid "Failed to update variable"
msgstr "Misslyckades med att uppdatera variabel"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Kunde inte ladda upp filen: {fileName}"
msgid "Failed to upload picture"
msgstr "Misslyckades med att ladda upp bild"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Sätt in en JSON-inmatning och tryck sedan på \"Kör\" för att testa d
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Installera och hantera applikationer"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Installerade applikationer"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Senaste betalningen misslyckades. Vänligen kontakta din administratör.
msgid "Last payment failed. Please update your billing details."
msgstr "Senaste betalningen misslyckades. Vänligen uppdatera dina faktureringsuppgifter."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10006,11 +9942,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11763,11 +11694,6 @@ msgstr "Se arbetsflöde"
msgid "See Workflows"
msgstr "Se arbetsflöden"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11785,11 +11711,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12111,11 +12032,6 @@ msgstr "Inställningsbehörigheter"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13906,7 +13822,6 @@ msgid "update"
msgstr "uppdatera"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13968,11 +13883,6 @@ msgstr "Uppgradera"
msgid "Upgrade Plan"
msgstr "Uppgradera planen"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13983,11 +13893,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13998,11 +13903,6 @@ msgstr "Ladda upp"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Ladda upp .xlsx, .xls eller .csv fil"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14026,12 +13926,6 @@ msgstr "Ladda upp filer"
msgid "Upload Files"
msgstr "Ladda upp filer"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14242,11 +14136,6 @@ msgstr "Verifiera koden från appen"
msgid "Version"
msgstr "Version"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "uygulama detay sayfası"
msgid "Application details"
msgstr "Uygulama detayları"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Tarayamaz mısınız? Kopyalayın."
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "OIDC ve SAML protokolleri arasında seçim yapın"
msgid "Choose between Short and Full"
msgstr "Kısa ve Tam seçenekleri arasında seçim yapın"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Çiftler"
msgid "Dutch"
msgstr "Flemenkçe"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Bağlantıyı ayarlamak için kimlik bilgilerini girin"
msgid "Enter the infos to set the connection"
msgstr "Bağlantıyı ayarlamak için bilgileri girin"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Yanıt alınamadı"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Kullanıcı adına işlem yapılamadı. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Rol güncellenemedi"
msgid "Failed to update variable"
msgstr "Değişken güncellenemedi"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Dosya yükleme başarısız: {fileName}"
msgid "Failed to upload picture"
msgstr "Resim yüklenemedi"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Bir JSON girişi girin, ardından işlevinizi test etmek için \"Çalı
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Uygulamaları yükle ve yönet"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Yüklü uygulamalar"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Son ödeme başarısız oldu. Lütfen yöneticinizle iletişime geçin."
msgid "Last payment failed. Please update your billing details."
msgstr "Son ödeme başarısız oldu. Lütfen fatura bilgilerinizi güncelleyin."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "İş akışını gör"
msgid "See Workflows"
msgstr "İş akışlarını gör"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Ayarlar izinleri"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "güncelle"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Yükselt"
msgid "Upgrade Plan"
msgstr "Planı Yükselt"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Yükle"
msgid "Upload .xlsx, .xls or .csv file"
msgstr ".xlsx, .xls veya .csv dosyası yükleyin"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Dosyaları yükle"
msgid "Upload Files"
msgstr "Dosyaları Yükle"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Uygulamadan kodu doğrulayın"
msgid "Version"
msgstr "Sürüm"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "сторінка деталей застосунку"
msgid "Application details"
msgstr "Деталі застосування"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Не можете сканувати? Скопіюйте"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Виберіть між протоколами OIDC та SAML"
msgid "Choose between Short and Full"
msgstr "Вибрати між скороченим та повним"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Дублети"
msgid "Dutch"
msgstr "Голландська"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Введіть облікові дані для налаштування
msgid "Enter the infos to set the connection"
msgstr "Введіть інформацію для налаштування з'єднання"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Не вдалося отримати відповідь"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Не вдалося увійти від імені користувача. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Не вдалося оновити роль"
msgid "Failed to update variable"
msgstr "Помилка при оновленні змінної"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Не вдалося завантажити файл: {fileName}"
msgid "Failed to upload picture"
msgstr "Не вдалося завантажити зображення"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Введіть JSON дані, а потім натисніть \"Зап
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Встановіть і керуйте застосунками"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Встановлені застосунки"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Останній платіж не вдався. Будь ласка, з
msgid "Last payment failed. Please update your billing details."
msgstr "Останній платіж не вдався. Будь ласка, оновіть свої платіжні дані."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Переглянути робочий процес"
msgid "See Workflows"
msgstr "Переглянути робочі процеси"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Налаштування дозволів"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13894,7 +13810,6 @@ msgid "update"
msgstr "оновити"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13956,11 +13871,6 @@ msgstr "Оновити"
msgid "Upgrade Plan"
msgstr "Оновити план"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13971,11 +13881,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13986,11 +13891,6 @@ msgstr "Завантажити"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Завантажити файл .xlsx, .xls або .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14014,12 +13914,6 @@ msgstr "Завантажити файли"
msgid "Upload Files"
msgstr "Завантажити файли"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14230,11 +14124,6 @@ msgstr "Перевірте код з додатку"
msgid "Version"
msgstr "Версія"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "trang chi tiết ứng dụng"
msgid "Application details"
msgstr "Chi tiết ứng dụng"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "Không thể quét? Sao chép"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "Chọn giữa giao thức OIDC và SAML"
msgid "Choose between Short and Full"
msgstr "Chọn giữa Ngắn và Đầy đủ"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "Trùng lặp"
msgid "Dutch"
msgstr "Tiếng Hà Lan"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "Nhập thông tin xác thực để thiết lập kết nối"
msgid "Enter the infos to set the connection"
msgstr "Nhập thông tin để thiết lập kết nối"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "Không thể lấy được phản hồi"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "Không thể mạo danh người dùng. {errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "Cập nhật vai trò thất bại"
msgid "Failed to update variable"
msgstr "Cập nhật biến thất bại"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "Không thể tải lên tệp: {fileName}"
msgid "Failed to upload picture"
msgstr "Không thể tải lên ảnh"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "Chèn đầu vào JSON, sau đó nhấn \"Chạy\" để kiểm tra ch
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "Cài đặt và quản lý ứng dụng"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "Ứng dụng đã cài đặt"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "Thanh toán gần nhất đã thất bại. Vui lòng liên hệ quản
msgid "Last payment failed. Please update your billing details."
msgstr "Thanh toán gần nhất đã thất bại. Vui lòng cập nhật chi tiết thanh toán của bạn."
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "Xem quy trình công việc"
msgid "See Workflows"
msgstr "Xem các quy trình công việc"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "Cài đặt quyền"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "cập nhật"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "Nâng cấp"
msgid "Upgrade Plan"
msgstr "Nâng cấp gói"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "Tải lên"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Tải lên tệp .xlsx, .xls hoặc .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "Tải lên tệp"
msgid "Upload Files"
msgstr "Tải lên tệp"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "Xác minh mã từ ứng dụng"
msgid "Version"
msgstr "Phiên bản"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "应用程序详细信息页面"
msgid "Application details"
msgstr "应用程序详情"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "无法扫描?复制"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "请选择 OIDC 与 SAML 协议中的一种"
msgid "Choose between Short and Full"
msgstr "选择简短或完整"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "重复项"
msgid "Dutch"
msgstr "荷兰语"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "输入凭据以设置连接"
msgid "Enter the infos to set the connection"
msgstr "输入信息以设置连接"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "未能获得响应"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "模拟用户失败。{errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "更新角色失败。"
msgid "Failed to update variable"
msgstr "更新变量失败"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "无法上传文件:{fileName}"
msgid "Failed to upload picture"
msgstr "上传图片失败"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "插入一个 JSON 输入,然后按“运行”测试您的功能。"
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "安装和管理应用程序"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "已安装的应用程序"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "上次付款失败。请联系您的管理员。"
msgid "Last payment failed. Please update your billing details."
msgstr "上次付款失败。请更新您的账单明细。"
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "查看工作流"
msgid "See Workflows"
msgstr "查看工作流"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "设置权限"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "更新"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "升级"
msgid "Upgrade Plan"
msgstr "升级套餐"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "上传"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "上传 .xlsx.xls 或 .csv 文件"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "上传文件"
msgid "Upload Files"
msgstr "上传文件"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "验证应用程序中的代码"
msgid "Version"
msgstr "版本"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
-111
View File
@@ -1783,21 +1783,11 @@ msgstr "應用程式詳細資料頁面"
msgid "Application details"
msgstr "應用程序詳細信息"
#. js-lingui-id: lGEBD4
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
#. js-lingui-id: +tE2x9
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
msgid "Application successfully uninstalled."
msgstr ""
#. js-lingui-id: V+GSWz
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Application upgraded successfully."
msgstr ""
#. js-lingui-id: fL7WXr
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
@@ -2502,8 +2492,6 @@ msgid "Can't scan? Copy the"
msgstr "無法掃描? 複製"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2720,11 +2708,6 @@ msgstr "選擇 OIDC 和 SAML 協議"
msgid "Choose between Short and Full"
msgstr "選擇簡短或完整"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -4749,11 +4732,6 @@ msgstr "副本"
msgid "Dutch"
msgstr "荷蘭語"
#. js-lingui-id: 3MYDWJ
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "e.g. @twentyhq/hello-world"
msgstr ""
#. js-lingui-id: QVVmxi
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
@@ -5343,11 +5321,6 @@ msgstr "輸入憑證以設置連接"
msgid "Enter the infos to set the connection"
msgstr "輸入信息以設置連接"
#. js-lingui-id: n1dNU/
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Enter the npm package name of the application you want to install."
msgstr ""
#. js-lingui-id: 3EF9HN
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
@@ -5999,11 +5972,6 @@ msgstr "獲取回應失敗"
msgid "Failed to impersonate user. {errorMessage}"
msgstr "模擬使用者失敗。{errorMessage}"
#. js-lingui-id: qZwtAi
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Failed to install the application."
msgstr ""
#. js-lingui-id: BTjpvA
#: src/modules/front-components/components/FrontComponentRenderer.tsx
msgid "Failed to load front component: {errorMessage}"
@@ -6106,11 +6074,6 @@ msgstr "更新角色失敗。"
msgid "Failed to update variable"
msgstr "更新變量失敗"
#. js-lingui-id: pBEL6J
#: src/modules/marketplace/hooks/useUpgradeApplication.ts
msgid "Failed to upgrade the application."
msgstr ""
#. js-lingui-id: jU/HbX
#: src/modules/object-record/record-field/ui/meta-types/hooks/useUploadFilesFieldFile.ts
#: src/modules/advanced-text-editor/hooks/useUploadWorkflowFile.ts
@@ -6132,11 +6095,6 @@ msgstr "檔案上傳失敗: {fileName}"
msgid "Failed to upload picture"
msgstr "上傳圖片失敗"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -7247,7 +7205,6 @@ msgstr "插入 JSON 輸入,然後按下「運行」以測試您的功能。"
#. js-lingui-id: TKQ7K+
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install"
msgstr ""
@@ -7256,17 +7213,6 @@ msgstr ""
msgid "Install and manage applications"
msgstr "安裝和管理應用程序"
#. js-lingui-id: gR90Vf
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
msgid "Install app"
msgstr ""
#. js-lingui-id: H3eHCv
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Install from npm"
msgstr ""
#. js-lingui-id: JXiMtM
#: src/pages/settings/applications/SettingsApplicationRegistrationDetails.tsx
msgid "Install Stats"
@@ -7282,11 +7228,6 @@ msgstr ""
msgid "Installed applications"
msgstr "已安裝的應用程式"
#. js-lingui-id: wJJ+Wy
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "Installing..."
msgstr ""
#. js-lingui-id: AwUsnG
#: src/pages/settings/data-model/constants/SettingsObjectTableMetadata.ts
msgid "Instances"
@@ -7785,11 +7726,6 @@ msgstr "最後一次付款失敗。請聯繫您的管理員。"
msgid "Last payment failed. Please update your billing details."
msgstr "最後一次付款失敗。請更新您的結算詳情。"
#. js-lingui-id: pJxM65
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "latest"
msgstr ""
#. js-lingui-id: wL3cK8
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
@@ -10004,11 +9940,6 @@ msgstr ""
msgid "p"
msgstr ""
#. js-lingui-id: VXyQnz
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Package name"
msgstr ""
#. js-lingui-id: 6WdDG7
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
msgid "Page"
@@ -11759,11 +11690,6 @@ msgstr "查看工作流程"
msgid "See Workflows"
msgstr "查看工作流程"
#. js-lingui-id: 2PIP/G
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Seed a demo workspace using the dedicated tool, ask me questions about my activity and goals to tailor the seeded data to my needs, and then help me explore the workspace and data you created."
msgstr ""
#. js-lingui-id: rG3WVm
#: src/modules/spreadsheet-import/steps/components/ValidationStep/components/columns.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/components/SelectColumn.tsx
@@ -11781,11 +11707,6 @@ msgstr ""
msgid "Select 1 field"
msgstr ""
#. js-lingui-id: YfBvUy
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Select a .tar.gz application package to upload and install."
msgstr ""
#. js-lingui-id: OMoA3j
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
msgid "Select a date"
@@ -12107,11 +12028,6 @@ msgstr "設定權限"
msgid "Settings tab"
msgstr ""
#. js-lingui-id: dIJGKR
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Setup a tailor-made workspace"
msgstr ""
#. js-lingui-id: Ue7X/E
#: src/modules/settings/accounts/components/SettingsAccountsConnectedAccountsRowRightContainer.tsx
msgid "Setup incomplete"
@@ -13892,7 +13808,6 @@ msgid "update"
msgstr "更新"
#. js-lingui-id: EkH9pt
#: src/pages/settings/applications/components/SettingsApplicationTableRow.tsx
#: src/modules/information-banner/components/billing/InformationBannerFailPaymentInfo.tsx
#: src/modules/information-banner/components/billing/InformationBannerBillingSubscriptionPaused.tsx
#: src/modules/action-menu/actions/record-actions/constants/DefaultRecordActionsConfig.tsx
@@ -13954,11 +13869,6 @@ msgstr "升級"
msgid "Upgrade Plan"
msgstr "升級方案"
#. js-lingui-id: pKCx2F
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrade to {latestAvailableVersion}"
msgstr ""
#. js-lingui-id: ggd+Ee
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
msgid "Upgrade to access"
@@ -13969,11 +13879,6 @@ msgstr ""
msgid "Upgrade to Enterprise to access audit logs"
msgstr ""
#. js-lingui-id: +Gi3x1
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
msgid "Upgrading..."
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -13984,11 +13889,6 @@ msgstr "上傳"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "上傳 .xlsx、.xls 或 .csv 文件"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14012,12 +13912,6 @@ msgstr "上傳檔案"
msgid "Upload Files"
msgstr "上傳文件"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsInstalledTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14228,11 +14122,6 @@ msgstr "驗證應用上的代碼"
msgid "Version"
msgstr "版本"
#. js-lingui-id: OVk6Na
#: src/pages/settings/applications/components/SettingsInstallNpmAppModal.tsx
msgid "Version (optional)"
msgstr ""
#. js-lingui-id: IHIWR4
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
@@ -3,7 +3,7 @@ import { ActionMenuContext } from '@/action-menu/contexts/ActionMenuContext';
import { styled } from '@linaria/react';
import { motion } from 'framer-motion';
import { useContext } from 'react';
import { ThemeContext } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
const StyledActionContainer = styled(motion.div)`
display: flex;
@@ -12,8 +12,9 @@ const StyledActionContainer = styled(motion.div)`
`;
export const PageHeaderActionMenuButtons = () => {
const { theme } = useContext(ThemeContext);
const { actions } = useContext(ActionMenuContext);
const { theme } = useContext(ThemeContext);
const pinnedActions = actions.filter((entry) => entry.isPinned).toReversed();
const actionsWithPositionForAnimation = pinnedActions.map(
@@ -1,67 +0,0 @@
import { ACTION_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME } from '@/action-menu/confirmation-modal/constants/ActionMenuConfirmationModalResultBrowserEventName';
import { ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID } from '@/action-menu/confirmation-modal/constants/ActionMenuConfirmationModalId';
import { actionMenuConfirmationModalConfigState } from '@/action-menu/confirmation-modal/states/actionMenuConfirmationModalState';
import {
type ActionMenuConfirmationModalResult,
type ActionMenuConfirmationModalResultBrowserEventDetail,
} from '@/action-menu/confirmation-modal/types/ActionMenuConfirmationModalResultBrowserEventDetail';
import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal';
import { isModalOpenedComponentState } from '@/ui/layout/modal/states/isModalOpenedComponentState';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
export const ActionMenuConfirmationModalManager = () => {
const actionMenuConfirmationModalConfig = useAtomStateValue(
actionMenuConfirmationModalConfigState,
);
const isModalOpened = useAtomComponentStateValue(
isModalOpenedComponentState,
ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID,
);
const setActionMenuConfirmationModalConfig = useSetAtomState(
actionMenuConfirmationModalConfigState,
);
const callerId = actionMenuConfirmationModalConfig?.frontComponentId;
const emitConfirmationResult = (
confirmationResult: ActionMenuConfirmationModalResult,
) => {
if (!callerId) {
return;
}
window.dispatchEvent(
new CustomEvent<ActionMenuConfirmationModalResultBrowserEventDetail>(
ACTION_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME,
{
detail: {
frontComponentId: callerId,
confirmationResult,
},
},
),
);
setActionMenuConfirmationModalConfig(null);
};
if (!actionMenuConfirmationModalConfig || !isModalOpened) {
return null;
}
return (
<ConfirmationModal
modalInstanceId={ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID}
title={actionMenuConfirmationModalConfig.title}
subtitle={actionMenuConfirmationModalConfig.subtitle}
onConfirmClick={() => emitConfirmationResult('confirm')}
onClose={() => emitConfirmationResult('cancel')}
confirmButtonText={actionMenuConfirmationModalConfig.confirmButtonText}
confirmButtonAccent={
actionMenuConfirmationModalConfig.confirmButtonAccent
}
/>
);
};
@@ -1,2 +0,0 @@
export const ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID =
'action-menu-confirmation-modal';
@@ -1,2 +0,0 @@
export const ACTION_MENU_CONFIRMATION_MODAL_RESULT_BROWSER_EVENT_NAME =
'action-menu-confirmation-modal-result';
@@ -1,48 +0,0 @@
import { useStore } from 'jotai';
import { useCallback } from 'react';
import { ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID } from '@/action-menu/confirmation-modal/constants/ActionMenuConfirmationModalId';
import {
type ActionMenuConfirmationModalConfig,
actionMenuConfirmationModalConfigState,
} from '@/action-menu/confirmation-modal/states/actionMenuConfirmationModalState';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { isModalOpenedComponentState } from '@/ui/layout/modal/states/isModalOpenedComponentState';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
export const useActionMenuConfirmationModal = () => {
const store = useStore();
const setActionMenuConfirmationModalConfig = useSetAtomState(
actionMenuConfirmationModalConfigState,
);
const { openModal } = useModal();
const openConfirmationModal = useCallback(
(config: ActionMenuConfirmationModalConfig) => {
const existingActionMenuConfirmationModalConfig = store.get(
actionMenuConfirmationModalConfigState.atom,
);
const isActionMenuConfirmationModalOpened = store.get(
isModalOpenedComponentState.atomFamily({
instanceId: ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID,
}),
);
if (
existingActionMenuConfirmationModalConfig !== null ||
isActionMenuConfirmationModalOpened
) {
throw new Error(
'Action menu confirmation modal is already active for another front component',
);
}
setActionMenuConfirmationModalConfig(config);
openModal(ACTION_MENU_CONFIRMATION_MODAL_INSTANCE_ID);
},
[store, setActionMenuConfirmationModalConfig, openModal],
);
return { openConfirmationModal };
};
@@ -1,18 +0,0 @@
import { type ReactNode } from 'react';
import { createAtomState } from '@/ui/utilities/state/jotai/utils/createAtomState';
import { type ButtonAccent } from 'twenty-ui/input';
export type ActionMenuConfirmationModalConfig = {
frontComponentId: string;
title: string;
subtitle: ReactNode;
confirmButtonText?: string;
confirmButtonAccent?: ButtonAccent;
};
export const actionMenuConfirmationModalConfigState =
createAtomState<ActionMenuConfirmationModalConfig | null>({
key: 'actionMenuConfirmationModalConfigState',
defaultValue: null,
});
@@ -1,6 +0,0 @@
export type ActionMenuConfirmationModalResult = 'confirm' | 'cancel';
export type ActionMenuConfirmationModalResultBrowserEventDetail = {
frontComponentId: string;
confirmationResult: ActionMenuConfirmationModalResult;
};
@@ -1,11 +1,12 @@
import { useContext } from 'react';
import { styled } from '@linaria/react';
import { differenceInSeconds, endOfDay, format } from 'date-fns';
import { useContext } from 'react';
import { CalendarEventRow } from '@/activities/calendar/components/CalendarEventRow';
import { getCalendarEventStartDate } from '@/activities/calendar/utils/getCalendarEventStartDate';
import { CardContent } from 'twenty-ui/layout';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { type TimelineCalendarEvent } from '~/generated/graphql';
type CalendarDayCardContentProps = {
@@ -53,6 +54,7 @@ export const CalendarDayCardContent = ({
divider,
}: CalendarDayCardContentProps) => {
const { theme } = useContext(ThemeContext);
const endOfDayDate = endOfDay(getCalendarEventStartDate(calendarEvents[0]));
const dayEndsIn = differenceInSeconds(endOfDayDate, Date.now());
@@ -61,9 +63,7 @@ export const CalendarDayCardContent = ({
const upcomingDayCardContentVariants = {
upcoming: {},
ended: {
backgroundColor: theme.background.primary,
},
ended: { backgroundColor: theme.background.primary },
};
return (
@@ -1,9 +1,10 @@
import { useContext } from 'react';
import { styled } from '@linaria/react';
import { Trans } from '@lingui/react/macro';
import { useContext } from 'react';
import { IconLock } from 'twenty-ui/display';
import { Card, CardContent } from 'twenty-ui/layout';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledVisibilityCard = styled(Card)`
color: ${themeCssVariables.font.color.light};
@@ -7,7 +7,8 @@ import { ParticipantChip } from '@/activities/components/ParticipantChip';
import { EllipsisDisplay } from '@/ui/field/display/components/EllipsisDisplay';
import { ExpandableList } from '@/ui/layout/expandable-list/components/ExpandableList';
import { IconCheck, IconQuestionMark, IconX } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledInlineCellBaseContainer = styled.div`
align-items: center;
@@ -1,3 +1,4 @@
import { useContext } from 'react';
import { styled } from '@linaria/react';
import { t } from '@lingui/core/macro';
import { format } from 'date-fns';
@@ -14,9 +15,9 @@ import { getCalendarEventStartDate } from '@/activities/calendar/utils/getCalend
import { hasCalendarEventEnded } from '@/activities/calendar/utils/hasCalendarEventEnded';
import { currentWorkspaceMemberState } from '@/auth/states/currentWorkspaceMemberState';
import { useOpenCalendarEventInCommandMenu } from '@/command-menu/hooks/useOpenCalendarEventInCommandMenu';
import { useContext } from 'react';
import { IconArrowRight } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
type CalendarEventRowProps = {
calendarEvent: TimelineCalendarEvent;
@@ -1,7 +1,8 @@
import { styled } from '@linaria/react';
import { useContext } from 'react';
import { styled } from '@linaria/react';
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledSkeletonContainer = styled.div`
align-items: center;
@@ -43,6 +44,7 @@ export const SKELETON_LOADER_HEIGHT_SIZES = {
const SkeletonColumnLoader = ({ height }: { height: number }) => {
const { theme } = useContext(ThemeContext);
return (
<SkeletonTheme
baseColor={theme.background.tertiary}
@@ -1,8 +1,9 @@
import { useContext } from 'react';
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { useContext } from 'react';
import { AppTooltip, IconLock, TooltipDelay } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { MessageChannelVisibility } from '~/generated/graphql';
const StyledContainer = styled.div<{ isCompact?: boolean }>`
@@ -33,8 +34,8 @@ type EmailThreadNotSharedProps = {
export const EmailThreadNotShared = ({
visibility,
}: EmailThreadNotSharedProps) => {
const { theme } = useContext(ThemeContext);
const { t } = useLingui();
const { theme } = useContext(ThemeContext);
const containerId = 'email-thread-not-shared';
const isCompact = visibility === MessageChannelVisibility.SUBJECT;
@@ -1,12 +1,12 @@
import { useContext } from 'react';
import { styled } from '@linaria/react';
import { ActivityRow } from '@/activities/components/ActivityRow';
import { EmailThreadNotShared } from '@/activities/emails/components/EmailThreadNotShared';
import { useOpenEmailThreadInCommandMenu } from '@/command-menu/hooks/useOpenEmailThreadInCommandMenu';
import { useContext } from 'react';
import { Avatar } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import {
MessageChannelVisibility,
type TimelineThread,
@@ -75,7 +75,6 @@ type EmailThreadPreviewProps = {
};
export const EmailThreadPreview = ({ thread }: EmailThreadPreviewProps) => {
const { theme } = useContext(ThemeContext);
const { openEmailThreadInCommandMenu } = useOpenEmailThreadInCommandMenu();
const visibility = thread.visibility;
@@ -108,6 +107,8 @@ export const EmailThreadPreview = ({ thread }: EmailThreadPreviewProps) => {
};
const isDisabled = visibility !== MessageChannelVisibility.SHARE_EVERYTHING;
const { theme } = useContext(ThemeContext);
return (
<ActivityRow onClick={handleThreadClick} disabled={isDisabled}>
<StyledHeading unread={!thread.read}>
@@ -10,7 +10,7 @@ import {
import { getFileCategoryFromExtension } from '@/object-record/record-field/ui/utils/getFileCategoryFromExtension';
import { SettingsTextInput } from '@/ui/input/components/SettingsTextInput';
import { styled } from '@linaria/react';
import { useState, useContext } from 'react';
import { useContext, useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { type AttachmentWithFile } from '@/activities/files/utils/filterAttachmentsWithFile';
@@ -18,7 +18,8 @@ import { FileIcon } from '@/file/components/FileIcon';
import { useHasPermissionFlag } from '@/settings/roles/hooks/useHasPermissionFlag';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { IconCalendar, OverflowingTextWithTooltip } from 'twenty-ui/display';
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
import { ThemeContext } from 'twenty-ui/theme';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { isNavigationModifierPressed } from 'twenty-ui/utilities';
import { PermissionFlagType } from '~/generated-metadata/graphql';
import { formatToHumanReadableDate } from '~/utils/date-utils';

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