@rebasepro/app 0.16.0 → 0.16.1-canary.g2d1aec8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.d.ts +4 -4
- package/dist/auth/types.d.ts +1 -1
- package/dist/auth/useRebaseAuthController.d.ts +1 -1
- package/dist/collections/index.d.ts +13 -13
- package/dist/components/Debug/collection-views/index.d.ts +3 -3
- package/dist/components/LoginView/index.d.ts +2 -2
- package/dist/components/common/index.d.ts +6 -6
- package/dist/components/common/useDataTableController.d.ts +1 -1
- package/dist/components/index.d.ts +18 -18
- package/dist/contexts/AdminModeController.d.ts +1 -1
- package/dist/contexts/ModeController.d.ts +1 -1
- package/dist/contexts/index.d.ts +18 -18
- package/dist/core/Rebase.d.ts +1 -1
- package/dist/core/index.d.ts +4 -4
- package/dist/hooks/index.d.ts +36 -36
- package/dist/hooks/useBridgeRegistration.d.ts +1 -1
- package/dist/hooks/useBuildAdminModeController.d.ts +1 -1
- package/dist/hooks/useBuildModeController.d.ts +1 -1
- package/dist/hooks/useUnsavedChangesDialog.d.ts +1 -1
- package/dist/index.d.ts +19 -19
- package/dist/index.es.js +20 -8
- package/dist/index.es.js.map +1 -1
- package/dist/util/index.d.ts +8 -8
- package/package.json +8 -8
- package/src/components/common/useDataTableController.tsx +20 -1
- package/src/locales/de.ts +0 -1
- package/src/locales/en.ts +0 -1
- package/src/locales/es.ts +0 -1
- package/src/locales/fr.ts +0 -1
- package/src/locales/hi.ts +0 -1
- package/src/locales/it.ts +0 -1
- package/src/locales/pt.ts +0 -1
package/dist/auth/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* controller are in `../components`. Both are re-exported from the package
|
|
9
9
|
* root, which is where applications should import them from.
|
|
10
10
|
*/
|
|
11
|
-
export type { RebaseAuthController, RebaseAuthControllerProps, User, AuthTokens, DeviceSession, AuthResponse, RefreshResponse } from "./types";
|
|
12
|
-
export { useRebaseAuthController } from "./useRebaseAuthController";
|
|
13
|
-
export { fetchAuthConfig, clearAuthConfigCache, createAuthConfigCache } from "./api";
|
|
14
|
-
export type { AuthConfigResponse, AuthConfigCache } from "./api";
|
|
11
|
+
export type { RebaseAuthController, RebaseAuthControllerProps, User, AuthTokens, DeviceSession, AuthResponse, RefreshResponse } from "./types.js";
|
|
12
|
+
export { useRebaseAuthController } from "./useRebaseAuthController.js";
|
|
13
|
+
export { fetchAuthConfig, clearAuthConfigCache, createAuthConfigCache } from "./api.js";
|
|
14
|
+
export type { AuthConfigResponse, AuthConfigCache } from "./api.js";
|
package/dist/auth/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { User, AuthTokens, DeviceSession, RebaseSession, AuthChangeEvent } from "@rebasepro/types";
|
|
2
2
|
import { AuthController } from "@rebasepro/admin-types";
|
|
3
|
-
import type { AuthConfigResponse } from "./api";
|
|
3
|
+
import type { AuthConfigResponse } from "./api.js";
|
|
4
4
|
export type { User, AuthTokens, DeviceSession };
|
|
5
5
|
/**
|
|
6
6
|
* Auth controller that extends the base AuthController
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export * from "./collection_view_config";
|
|
2
|
-
export * from "./entity_image_preview";
|
|
3
|
-
export * from "./entity-display";
|
|
4
|
-
export * from "./entity-display-cache";
|
|
5
|
-
export * from "./filter-operator-resolution";
|
|
6
|
-
export * from "./form-layout";
|
|
7
|
-
export * from "./navigation_from_path";
|
|
8
|
-
export * from "./navigation_utils";
|
|
9
|
-
export * from "./parent_references_from_path";
|
|
10
|
-
export * from "./property-path";
|
|
11
|
-
export * from "./property_presentation";
|
|
12
|
-
export * from "./summary-property";
|
|
13
|
-
export * from "./title-property";
|
|
1
|
+
export * from "./collection_view_config.js";
|
|
2
|
+
export * from "./entity_image_preview.js";
|
|
3
|
+
export * from "./entity-display.js";
|
|
4
|
+
export * from "./entity-display-cache.js";
|
|
5
|
+
export * from "./filter-operator-resolution.js";
|
|
6
|
+
export * from "./form-layout.js";
|
|
7
|
+
export * from "./navigation_from_path.js";
|
|
8
|
+
export * from "./navigation_utils.js";
|
|
9
|
+
export * from "./parent_references_from_path.js";
|
|
10
|
+
export * from "./property-path.js";
|
|
11
|
+
export * from "./property_presentation.js";
|
|
12
|
+
export * from "./summary-property.js";
|
|
13
|
+
export * from "./title-property.js";
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { CollectionTableDemo } from "./CollectionTableDemo";
|
|
2
|
-
export { CardViewDemo } from "./CardViewDemo";
|
|
3
|
-
export { KanbanBoardDemo } from "./KanbanBoardDemo";
|
|
1
|
+
export { CollectionTableDemo } from "./CollectionTableDemo.js";
|
|
2
|
+
export { CardViewDemo } from "./CardViewDemo.js";
|
|
3
|
+
export { KanbanBoardDemo } from "./KanbanBoardDemo.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { LoginView } from "./LoginView";
|
|
2
|
-
export type { LoginViewProps } from "./LoginView";
|
|
1
|
+
export { LoginView } from "./LoginView.js";
|
|
2
|
+
export type { LoginViewProps } from "./LoginView.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./types";
|
|
2
|
-
export * from "./useDebouncedData";
|
|
3
|
-
export * from "./useColumnsIds";
|
|
4
|
-
export * from "./useDataTableController";
|
|
5
|
-
export * from "./useScrollRestoration";
|
|
6
|
-
export * from "./table_height";
|
|
1
|
+
export * from "./types.js";
|
|
2
|
+
export * from "./useDebouncedData.js";
|
|
3
|
+
export * from "./useColumnsIds.js";
|
|
4
|
+
export * from "./useDataTableController.js";
|
|
5
|
+
export * from "./useScrollRestoration.js";
|
|
6
|
+
export * from "./table_height.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Entity, FilterValues, User } from "@rebasepro/types";
|
|
2
2
|
import { EntityTableController, AdminCollection } from "@rebasepro/admin-types";
|
|
3
|
-
import { ScrollRestorationController } from "./useScrollRestoration";
|
|
3
|
+
import { ScrollRestorationController } from "./useScrollRestoration.js";
|
|
4
4
|
export declare const DEFAULT_PAGE_SIZE = 50;
|
|
5
5
|
export type DataTableControllerProps<M extends Record<string, any> = any> = {
|
|
6
6
|
/**
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export type { ErrorViewProps } from "./ErrorView";
|
|
2
|
-
export { ErrorView } from "./ErrorView";
|
|
3
|
-
export * from "./common";
|
|
4
|
-
export * from "./NotFoundPage";
|
|
5
|
-
export * from "./ConfirmationDialog";
|
|
6
|
-
export * from "./ErrorTooltip";
|
|
7
|
-
export * from "./RebaseLogo";
|
|
8
|
-
export * from "./AIIcon";
|
|
9
|
-
export * from "./Debug/UIStyleGuide";
|
|
10
|
-
export * from "./Debug/UIReferenceView";
|
|
11
|
-
export { CrmDashboardDemo } from "./Debug/crm-dashboard/CrmDashboardDemo";
|
|
12
|
-
export * from "./UserSettingsView";
|
|
13
|
-
export * from "./LanguageToggle";
|
|
14
|
-
export * from "./UserSelectPopover";
|
|
15
|
-
export * from "./UserDisplay";
|
|
16
|
-
export * from "./LoginView";
|
|
17
|
-
export * from "./RebaseAuth";
|
|
18
|
-
export * from "./SchemaDriftBanner";
|
|
1
|
+
export type { ErrorViewProps } from "./ErrorView.js";
|
|
2
|
+
export { ErrorView } from "./ErrorView.js";
|
|
3
|
+
export * from "./common/index.js";
|
|
4
|
+
export * from "./NotFoundPage.js";
|
|
5
|
+
export * from "./ConfirmationDialog.js";
|
|
6
|
+
export * from "./ErrorTooltip.js";
|
|
7
|
+
export * from "./RebaseLogo.js";
|
|
8
|
+
export * from "./AIIcon.js";
|
|
9
|
+
export * from "./Debug/UIStyleGuide.js";
|
|
10
|
+
export * from "./Debug/UIReferenceView.js";
|
|
11
|
+
export { CrmDashboardDemo } from "./Debug/crm-dashboard/CrmDashboardDemo.js";
|
|
12
|
+
export * from "./UserSettingsView.js";
|
|
13
|
+
export * from "./LanguageToggle.js";
|
|
14
|
+
export * from "./UserSelectPopover.js";
|
|
15
|
+
export * from "./UserDisplay.js";
|
|
16
|
+
export * from "./LoginView/index.js";
|
|
17
|
+
export * from "./RebaseAuth.js";
|
|
18
|
+
export * from "./SchemaDriftBanner.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { AdminModeController } from "../hooks/useAdminModeController";
|
|
2
|
+
import type { AdminModeController } from "../hooks/useAdminModeController.js";
|
|
3
3
|
export declare const AdminModeControllerContext: React.Context<AdminModeController>;
|
|
4
4
|
export declare const AdminModeControllerProvider: React.Provider<AdminModeController>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
import type { ModeController } from "../hooks/useModeController";
|
|
2
|
+
import type { ModeController } from "../hooks/useModeController.js";
|
|
3
3
|
export declare const ModeControllerContext: React.Context<ModeController>;
|
|
4
4
|
export declare const ModeControllerProvider: React.Provider<ModeController>;
|
package/dist/contexts/index.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
export * from "./SnackbarProvider";
|
|
2
|
-
export * from "./ModeController";
|
|
3
|
-
export * from "./AdminModeController";
|
|
4
|
-
export * from "./EffectiveRoleController";
|
|
5
|
-
export * from "./AuthControllerContext";
|
|
6
|
-
export * from "./DataDriverContext";
|
|
7
|
-
export * from "./DataSourcesContext";
|
|
8
|
-
export * from "./RebaseDataContext";
|
|
9
|
-
export * from "./AnalyticsContext";
|
|
10
|
-
export * from "./StorageSourceContext";
|
|
11
|
-
export * from "./StorageSourcesContext";
|
|
12
|
-
export * from "./UserConfigurationPersistenceContext";
|
|
13
|
-
export * from "./DialogsProvider";
|
|
14
|
-
export * from "./RebaseClientInstanceContext";
|
|
15
|
-
export * from "./CustomizationControllerContext";
|
|
16
|
-
export * from "./ComponentOverrideContext";
|
|
17
|
-
export * from "./CollectionScopeContext";
|
|
18
|
-
export * from "./CollectionResolverContext";
|
|
1
|
+
export * from "./SnackbarProvider.js";
|
|
2
|
+
export * from "./ModeController.js";
|
|
3
|
+
export * from "./AdminModeController.js";
|
|
4
|
+
export * from "./EffectiveRoleController.js";
|
|
5
|
+
export * from "./AuthControllerContext.js";
|
|
6
|
+
export * from "./DataDriverContext.js";
|
|
7
|
+
export * from "./DataSourcesContext.js";
|
|
8
|
+
export * from "./RebaseDataContext.js";
|
|
9
|
+
export * from "./AnalyticsContext.js";
|
|
10
|
+
export * from "./StorageSourceContext.js";
|
|
11
|
+
export * from "./StorageSourcesContext.js";
|
|
12
|
+
export * from "./UserConfigurationPersistenceContext.js";
|
|
13
|
+
export * from "./DialogsProvider.js";
|
|
14
|
+
export * from "./RebaseClientInstanceContext.js";
|
|
15
|
+
export * from "./CustomizationControllerContext.js";
|
|
16
|
+
export * from "./ComponentOverrideContext.js";
|
|
17
|
+
export * from "./CollectionScopeContext.js";
|
|
18
|
+
export * from "./CollectionResolverContext.js";
|
package/dist/core/Rebase.d.ts
CHANGED
package/dist/core/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./Rebase";
|
|
2
|
-
export * from "./PluginProviderStack";
|
|
3
|
-
export * from "./RebaseRouter";
|
|
4
|
-
export * from "./RebaseRoutes";
|
|
1
|
+
export * from "./Rebase.js";
|
|
2
|
+
export * from "./PluginProviderStack.js";
|
|
3
|
+
export * from "./RebaseRouter.js";
|
|
4
|
+
export * from "./RebaseRoutes.js";
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export * from "./data/useData";
|
|
2
|
-
export * from "./data/useCollection";
|
|
3
|
-
export * from "./data/useFetch";
|
|
4
|
-
export * from "./data/useRelationSelector";
|
|
5
|
-
export * from "./data/save";
|
|
6
|
-
export * from "./data/delete";
|
|
7
|
-
export * from "./useUnsavedChangesDialog";
|
|
8
|
-
export * from "./useStorageSource";
|
|
9
|
-
export * from "./useAuthController";
|
|
10
|
-
export * from "./useAuthSubscription";
|
|
11
|
-
export * from "./useDialogsController";
|
|
12
|
-
export * from "./useAdminModeController";
|
|
13
|
-
export * from "./useBuildAdminModeController";
|
|
14
|
-
export * from "./useEffectiveRoleController";
|
|
15
|
-
export * from "./useBuildEffectiveRoleController";
|
|
16
|
-
export * from "./useRebaseContext";
|
|
17
|
-
export * from "./useSnackbarController";
|
|
18
|
-
export * from "./useModeController";
|
|
19
|
-
export * from "./useClipboard";
|
|
20
|
-
export * from "./useLargeLayout";
|
|
21
|
-
export * from "./useCollapsedGroups";
|
|
22
|
-
export * from "./useBrowserTitleAndIcon";
|
|
23
|
-
export * from "./useSlot";
|
|
24
|
-
export * from "./useCustomizationController";
|
|
25
|
-
export * from "./useBuildLocalConfigurationPersistence";
|
|
26
|
-
export * from "./useBuildModeController";
|
|
27
|
-
export * from "./useRebaseRegistry";
|
|
28
|
-
export * from "./useBackendStorageSource";
|
|
29
|
-
export * from "./usePermissions";
|
|
30
|
-
export * from "./ApiConfigContext";
|
|
31
|
-
export * from "./useTranslation";
|
|
32
|
-
export * from "./useRebaseClient";
|
|
33
|
-
export * from "./useAnalyticsController";
|
|
34
|
-
export * from "./useUserConfigurationPersistence";
|
|
35
|
-
export * from "./useResolvedComponent";
|
|
36
|
-
export * from "./useComponentOverride";
|
|
1
|
+
export * from "./data/useData.js";
|
|
2
|
+
export * from "./data/useCollection.js";
|
|
3
|
+
export * from "./data/useFetch.js";
|
|
4
|
+
export * from "./data/useRelationSelector.js";
|
|
5
|
+
export * from "./data/save.js";
|
|
6
|
+
export * from "./data/delete.js";
|
|
7
|
+
export * from "./useUnsavedChangesDialog.js";
|
|
8
|
+
export * from "./useStorageSource.js";
|
|
9
|
+
export * from "./useAuthController.js";
|
|
10
|
+
export * from "./useAuthSubscription.js";
|
|
11
|
+
export * from "./useDialogsController.js";
|
|
12
|
+
export * from "./useAdminModeController.js";
|
|
13
|
+
export * from "./useBuildAdminModeController.js";
|
|
14
|
+
export * from "./useEffectiveRoleController.js";
|
|
15
|
+
export * from "./useBuildEffectiveRoleController.js";
|
|
16
|
+
export * from "./useRebaseContext.js";
|
|
17
|
+
export * from "./useSnackbarController.js";
|
|
18
|
+
export * from "./useModeController.js";
|
|
19
|
+
export * from "./useClipboard.js";
|
|
20
|
+
export * from "./useLargeLayout.js";
|
|
21
|
+
export * from "./useCollapsedGroups.js";
|
|
22
|
+
export * from "./useBrowserTitleAndIcon.js";
|
|
23
|
+
export * from "./useSlot.js";
|
|
24
|
+
export * from "./useCustomizationController.js";
|
|
25
|
+
export * from "./useBuildLocalConfigurationPersistence.js";
|
|
26
|
+
export * from "./useBuildModeController.js";
|
|
27
|
+
export * from "./useRebaseRegistry.js";
|
|
28
|
+
export * from "./useBackendStorageSource.js";
|
|
29
|
+
export * from "./usePermissions.js";
|
|
30
|
+
export * from "./ApiConfigContext.js";
|
|
31
|
+
export * from "./useTranslation.js";
|
|
32
|
+
export * from "./useRebaseClient.js";
|
|
33
|
+
export * from "./useAnalyticsController.js";
|
|
34
|
+
export * from "./useUserConfigurationPersistence.js";
|
|
35
|
+
export * from "./useResolvedComponent.js";
|
|
36
|
+
export * from "./useComponentOverride.js";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
export * from "./core";
|
|
2
|
-
export * from "./hooks";
|
|
3
|
-
export * from "./auth";
|
|
4
|
-
export * from "./components";
|
|
5
|
-
export * from "./util";
|
|
6
|
-
export * from "./contexts";
|
|
7
|
-
export { CONTAINER_FULL_WIDTH, FORM_CONTAINER_WIDTH, SIDE_PANEL_DEFAULT_WIDTH } from "./internal/common";
|
|
8
|
-
export { useRestoreScroll } from "./internal/useRestoreScroll";
|
|
9
|
-
export { useUnsavedChangesDialog } from "./hooks/useUnsavedChangesDialog";
|
|
10
|
-
export { NavigationBlockerProvider, useNavigationBlocker } from "./hooks/useNavigationBlocker";
|
|
11
|
-
export type { UnsavedChangesDialogProps } from "./components/UnsavedChangesDialog";
|
|
12
|
-
export type { RebaseStorageSource } from "./core/RebaseProps";
|
|
13
|
-
export { UnsavedChangesDialog } from "./components/UnsavedChangesDialog";
|
|
14
|
-
export * from "./i18n/RebaseI18nProvider";
|
|
15
|
-
export * from "./locales/en";
|
|
16
|
-
export * from "./locales/es";
|
|
17
|
-
export * from "./hooks/useStudioBridge";
|
|
18
|
-
export { useBridgeRegistration } from "./hooks/useBridgeRegistration";
|
|
19
|
-
export * from "./collections";
|
|
1
|
+
export * from "./core/index.js";
|
|
2
|
+
export * from "./hooks/index.js";
|
|
3
|
+
export * from "./auth/index.js";
|
|
4
|
+
export * from "./components/index.js";
|
|
5
|
+
export * from "./util/index.js";
|
|
6
|
+
export * from "./contexts/index.js";
|
|
7
|
+
export { CONTAINER_FULL_WIDTH, FORM_CONTAINER_WIDTH, SIDE_PANEL_DEFAULT_WIDTH } from "./internal/common.js";
|
|
8
|
+
export { useRestoreScroll } from "./internal/useRestoreScroll.js";
|
|
9
|
+
export { useUnsavedChangesDialog } from "./hooks/useUnsavedChangesDialog.js";
|
|
10
|
+
export { NavigationBlockerProvider, useNavigationBlocker } from "./hooks/useNavigationBlocker.js";
|
|
11
|
+
export type { UnsavedChangesDialogProps } from "./components/UnsavedChangesDialog.js";
|
|
12
|
+
export type { RebaseStorageSource } from "./core/RebaseProps.js";
|
|
13
|
+
export { UnsavedChangesDialog } from "./components/UnsavedChangesDialog.js";
|
|
14
|
+
export * from "./i18n/RebaseI18nProvider.js";
|
|
15
|
+
export * from "./locales/en.js";
|
|
16
|
+
export * from "./locales/es.js";
|
|
17
|
+
export * from "./hooks/useStudioBridge.js";
|
|
18
|
+
export { useBridgeRegistration } from "./hooks/useBridgeRegistration.js";
|
|
19
|
+
export * from "./collections/index.js";
|
package/dist/index.es.js
CHANGED
|
@@ -2922,7 +2922,26 @@ function useDataTableController({ path, collection, scrollRestoration, entitiesD
|
|
|
2922
2922
|
const [dataLoading, setDataLoading] = useState(false);
|
|
2923
2923
|
const [dataLoadingError, setDataLoadingError] = useState();
|
|
2924
2924
|
const [noMoreToLoad, setNoMoreToLoad] = useState(false);
|
|
2925
|
-
|
|
2925
|
+
/**
|
|
2926
|
+
* Clear the user's filters. `fixedFilter` survives — it is the collection
|
|
2927
|
+
* forcing a scope, not something the user chose — but `defaultFilter` does
|
|
2928
|
+
* not: a default is where the view *opens*, not a floor it can never go
|
|
2929
|
+
* below.
|
|
2930
|
+
*
|
|
2931
|
+
* It used to reset to `defaultFilter`, which made "clear" unable to clear
|
|
2932
|
+
* whenever a collection defined one, and every caller here wanted the
|
|
2933
|
+
* opposite. `ClearFilterSortButton` is labelled "clear filter" and left one
|
|
2934
|
+
* set. `EditorCollectionActionStart` calls this and then re-applies
|
|
2935
|
+
* `collection.defaultFilter` on the next line — redundant under the old
|
|
2936
|
+
* behaviour, and the clearest statement of what it expected.
|
|
2937
|
+
* `FilterPresetsButton` documents "clearing all filters deactivates all
|
|
2938
|
+
* chips", which was false: it derives a chip's active state from the
|
|
2939
|
+
* filters, so a preset whose values equalled `defaultFilter` switched
|
|
2940
|
+
* itself straight back on. That chip could not be turned off at all — click
|
|
2941
|
+
* it, the keys are removed, the filter resets to the identical default, and
|
|
2942
|
+
* the chip lights up again.
|
|
2943
|
+
*/
|
|
2944
|
+
const clearFilter = useCallback(() => setFilterValues(fixedFilter ?? void 0), [fixedFilter]);
|
|
2926
2945
|
const updateFilterValues = useCallback((updatedFilter) => {
|
|
2927
2946
|
if (fixedFilter) {
|
|
2928
2947
|
console.warn("Filter is not compatible with the force filter. Ignoring filter");
|
|
@@ -11194,7 +11213,6 @@ var en = {
|
|
|
11194
11213
|
add_your: "Add your",
|
|
11195
11214
|
database_collections: "database collections",
|
|
11196
11215
|
no_unmapped_collections: "No unmapped collections in the database",
|
|
11197
|
-
query_and_update_with_datatalk: "Query and update your data in natural language with",
|
|
11198
11216
|
welcome_to_rebase: "Welcome to Rebase Cloud",
|
|
11199
11217
|
admin_panel_ready_bring_data: "Your admin panel is ready. Let's bring in your data.",
|
|
11200
11218
|
admin_panel_ready_get_started: "Your admin panel is ready. Here's how to get started.",
|
|
@@ -12017,7 +12035,6 @@ var es = {
|
|
|
12017
12035
|
add_your: "Añade tus",
|
|
12018
12036
|
database_collections: "colecciones de base de datos",
|
|
12019
12037
|
no_unmapped_collections: "No hay colecciones sin mapear en la base de datos",
|
|
12020
|
-
query_and_update_with_datatalk: "Consulta y actualiza tus datos en lenguaje natural con",
|
|
12021
12038
|
welcome_to_rebase: "Bienvenido a Rebase Cloud",
|
|
12022
12039
|
admin_panel_ready_bring_data: "Tu panel de administración está listo. Traigamos tus datos.",
|
|
12023
12040
|
admin_panel_ready_get_started: "Tu panel de administración está listo. Así es como puedes empezar.",
|
|
@@ -12887,7 +12904,6 @@ var de = {
|
|
|
12887
12904
|
add_your: "Fügen Sie Ihre",
|
|
12888
12905
|
database_collections: "Datenbanksammlungen",
|
|
12889
12906
|
no_unmapped_collections: "Keine nicht zugeordneten Sammlungen",
|
|
12890
|
-
query_and_update_with_datatalk: "Fragen Sie Ihre Daten in natürlicher Sprache ab und aktualisieren Sie sie mit DATATALK",
|
|
12891
12907
|
welcome_to_rebase: "Willkommen bei Rebase",
|
|
12892
12908
|
admin_panel_ready_bring_data: "Ihr Admin-Panel ist bereit. Bringen Sie Ihre Daten ein.",
|
|
12893
12909
|
admin_panel_ready_get_started: "Ihr Admin-Panel ist bereit. So können Sie loslegen.",
|
|
@@ -13747,7 +13763,6 @@ var fr = {
|
|
|
13747
13763
|
add_your: "Ajoutez vos",
|
|
13748
13764
|
database_collections: "collections de base de données",
|
|
13749
13765
|
no_unmapped_collections: "Aucune collection non mappée",
|
|
13750
|
-
query_and_update_with_datatalk: "Interrogez et mettez à jour vos données en langage naturel avec",
|
|
13751
13766
|
welcome_to_rebase: "Bienvenue sur Rebase Cloud",
|
|
13752
13767
|
admin_panel_ready_bring_data: "Votre panneau d'administration est prêt. Ajoutons vos données.",
|
|
13753
13768
|
admin_panel_ready_get_started: "Votre panneau d'administration est prêt. Voici comment démarrer.",
|
|
@@ -14607,7 +14622,6 @@ var it = {
|
|
|
14607
14622
|
add_your: "Aggiungi le tue",
|
|
14608
14623
|
database_collections: "collezioni del database",
|
|
14609
14624
|
no_unmapped_collections: "Nessuna collezione non mappata",
|
|
14610
|
-
query_and_update_with_datatalk: "Interroga e aggiorna i tuoi dati in linguaggio naturale con DATATALK",
|
|
14611
14625
|
welcome_to_rebase: "Benvenuto in Rebase Cloud",
|
|
14612
14626
|
admin_panel_ready_bring_data: "Il tuo pannello è pronto. Inizia aggiungendo i tuoi dati.",
|
|
14613
14627
|
admin_panel_ready_get_started: "Il tuo pannello è pronto. Ecco come iniziare.",
|
|
@@ -15467,7 +15481,6 @@ var hi = {
|
|
|
15467
15481
|
add_your: "अपने",
|
|
15468
15482
|
database_collections: "डेटाबेस संग्रह",
|
|
15469
15483
|
no_unmapped_collections: "कोई असंबद्ध संग्रह नहीं",
|
|
15470
|
-
query_and_update_with_datatalk: "DATATALK के साथ प्राकृतिक भाषा में अपना डेटा क्वेरी और अपडेट करें",
|
|
15471
15484
|
welcome_to_rebase: "Rebase में आपका स्वागत है",
|
|
15472
15485
|
admin_panel_ready_bring_data: "आपका पैनल तैयार है। अपना डेटा जोड़कर शुरू करें।",
|
|
15473
15486
|
admin_panel_ready_get_started: "शुरू करें",
|
|
@@ -16332,7 +16345,6 @@ var pt = {
|
|
|
16332
16345
|
add_your: "Adicione as suas",
|
|
16333
16346
|
database_collections: "coleções da base de dados",
|
|
16334
16347
|
no_unmapped_collections: "Sem coleções não mapeadas na base de dados",
|
|
16335
|
-
query_and_update_with_datatalk: "Consulte e atualize os seus dados em linguagem natural com",
|
|
16336
16348
|
welcome_to_rebase: "Bem-vindo ao Rebase Cloud",
|
|
16337
16349
|
admin_panel_ready_bring_data: "O seu painel de administração está pronto. Vamos importar os seus dados.",
|
|
16338
16350
|
admin_panel_ready_get_started: "O seu painel de administração está pronto. Veja como começar.",
|