mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-03-12 03:05:28 +00:00
Compare commits
3 Commits
master
...
users/aisa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b3f7e280ca | ||
|
|
924f03df74 | ||
|
|
aeb3537a68 |
2
src/@types/i18next.d.ts
vendored
2
src/@types/i18next.d.ts
vendored
@@ -1,5 +1,5 @@
|
||||
import "i18next";
|
||||
import Resources from "Localization/en/Resources.json";
|
||||
import Resources from "../Localization/en/Resources.json";
|
||||
|
||||
declare module "i18next" {
|
||||
interface CustomTypeOptions {
|
||||
|
||||
@@ -7,7 +7,8 @@ import {
|
||||
AddGlobalSecondaryIndexPanelProps,
|
||||
} from "Explorer/Panes/AddGlobalSecondaryIndexPanel/AddGlobalSecondaryIndexPanel";
|
||||
import { useDatabases } from "Explorer/useDatabases";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { isFabric, isFabricNative, openRestoreContainerDialog } from "Platform/Fabric/FabricUtil";
|
||||
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
||||
import { traceOpen } from "Shared/Telemetry/TelemetryProcessor";
|
||||
|
||||
@@ -17,7 +17,8 @@ import {
|
||||
} from "@fluentui/react";
|
||||
import React, { FC, useEffect } from "react";
|
||||
import create, { UseStore } from "zustand";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../Localization/Keys.generated";
|
||||
import { t } from "../../Localization/t";
|
||||
|
||||
export interface DialogState {
|
||||
visible: boolean;
|
||||
|
||||
@@ -44,7 +44,8 @@ import { useCommandBar } from "../../Menus/CommandBar/CommandBarComponentAdapter
|
||||
import { SettingsTabV2 } from "../../Tabs/SettingsTabV2";
|
||||
import "./SettingsComponent.less";
|
||||
import { mongoIndexingPolicyAADError } from "./SettingsRenderUtils";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import {
|
||||
ConflictResolutionComponent,
|
||||
ConflictResolutionComponentProps,
|
||||
|
||||
@@ -22,10 +22,11 @@ import {
|
||||
Stack,
|
||||
Text,
|
||||
} from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import * as React from "react";
|
||||
import { Urls } from "../../../Common/Constants";
|
||||
import { StyleConstants } from "../../../Common/StyleConstants";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { hoursInAMonth } from "../../../Shared/Constants";
|
||||
import {
|
||||
computeRUUsagePriceHourly,
|
||||
@@ -370,7 +371,7 @@ export const getEstimatedSpendingElement = (
|
||||
export const manualToAutoscaleDisclaimerElement: JSX.Element = (
|
||||
<Text styles={infoAndToolTipTextStyle} id="manualToAutoscaleDisclaimerElement">
|
||||
{t(Keys.controls.settings.throughput.manualToAutoscaleDisclaimer)}{" "}
|
||||
<Link href={Urls.autoscaleMigration}>{t(Keys.common.learnMore)}</Link>
|
||||
<Link href={Urls.autoscaleMigration}>Learn more</Link>
|
||||
</Text>
|
||||
);
|
||||
|
||||
|
||||
@@ -4,7 +4,8 @@ import { titleAndInputStackProps, unsavedEditorWarningMessage } from "Explorer/C
|
||||
import { isDirty } from "Explorer/Controls/Settings/SettingsUtils";
|
||||
import { loadMonaco } from "Explorer/LazyMonaco";
|
||||
import { monacoTheme, useThemeStore } from "hooks/useTheme";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import * as monaco from "monaco-editor";
|
||||
import * as React from "react";
|
||||
export interface ComputedPropertiesComponentProps {
|
||||
|
||||
@@ -2,7 +2,8 @@ import { ChoiceGroup, IChoiceGroupOption, ITextFieldProps, Stack, TextField } fr
|
||||
import * as React from "react";
|
||||
import * as DataModels from "../../../../Contracts/DataModels";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import {
|
||||
conflictResolutionCustomToolTip,
|
||||
conflictResolutionLwwTooltip,
|
||||
|
||||
@@ -7,7 +7,8 @@ import {
|
||||
import { titleAndInputStackProps } from "Explorer/Controls/Settings/SettingsRenderUtils";
|
||||
import { ContainerPolicyTabTypes, isDirty } from "Explorer/Controls/Settings/SettingsUtils";
|
||||
import { VectorEmbeddingPoliciesComponent } from "Explorer/Controls/VectorSearch/VectorEmbeddingPoliciesComponent";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import React from "react";
|
||||
|
||||
export interface ContainerPolicyComponentProps {
|
||||
|
||||
@@ -2,7 +2,8 @@ import { MessageBar, MessageBarType, Stack } from "@fluentui/react";
|
||||
import * as monaco from "monaco-editor";
|
||||
import * as React from "react";
|
||||
import * as DataModels from "../../../../Contracts/DataModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import { loadMonaco } from "../../../LazyMonaco";
|
||||
import { titleAndInputStackProps, unsavedEditorWarningMessage } from "../SettingsRenderUtils";
|
||||
import { isDirty as isContentDirty, isDataMaskingEnabled } from "../SettingsUtils";
|
||||
|
||||
@@ -2,7 +2,8 @@ import { FontIcon, Link, Stack, Text } from "@fluentui/react";
|
||||
import Explorer from "Explorer/Explorer";
|
||||
import React from "react";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import { GlobalSecondaryIndexSourceComponent } from "./GlobalSecondaryIndexSourceComponent";
|
||||
import { GlobalSecondaryIndexTargetComponent } from "./GlobalSecondaryIndexTargetComponent";
|
||||
|
||||
|
||||
@@ -9,7 +9,8 @@ import { useSidePanel } from "hooks/useSidePanel";
|
||||
import * as monaco from "monaco-editor";
|
||||
import React, { useEffect, useRef } from "react";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
|
||||
export interface GlobalSecondaryIndexSourceComponentProps {
|
||||
collection: ViewModels.Collection;
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { Stack, Text } from "@fluentui/react";
|
||||
import * as React from "react";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
|
||||
export interface GlobalSecondaryIndexTargetComponentProps {
|
||||
collection: ViewModels.Collection;
|
||||
|
||||
@@ -3,7 +3,8 @@ import { monacoTheme, useThemeStore } from "hooks/useTheme";
|
||||
import * as monaco from "monaco-editor";
|
||||
import * as React from "react";
|
||||
import * as DataModels from "../../../../Contracts/DataModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import { loadMonaco } from "../../../LazyMonaco";
|
||||
import { titleAndInputStackProps, unsavedEditorWarningMessage } from "../SettingsRenderUtils";
|
||||
import { isDirty, isIndexTransforming } from "../SettingsUtils";
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { MessageBar, MessageBarType } from "@fluentui/react";
|
||||
import * as React from "react";
|
||||
import { handleError } from "../../../../../Common/ErrorHandlingUtils";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../../Localization/t";
|
||||
import {
|
||||
mongoIndexTransformationRefreshingMessage,
|
||||
renderMongoIndexTransformationRefreshMessage,
|
||||
|
||||
@@ -9,7 +9,8 @@ import {
|
||||
IDropdownOption,
|
||||
ITextField,
|
||||
} from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../../Localization/t";
|
||||
import {
|
||||
addMongoIndexSubElementsTokens,
|
||||
mongoErrorMessageStyles,
|
||||
|
||||
@@ -15,7 +15,8 @@ import {
|
||||
} from "@fluentui/react";
|
||||
import * as React from "react";
|
||||
import { MongoIndex } from "../../../../../Utils/arm/generatedClients/cosmos/types";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../../Localization/t";
|
||||
import { CollapsibleSectionComponent } from "../../../CollapsiblePanel/CollapsibleSectionComponent";
|
||||
import {
|
||||
addMongoIndexStackProps,
|
||||
|
||||
@@ -18,7 +18,8 @@ import { cancelDataTransferJob, pollDataTransferJob } from "Common/dataAccess/da
|
||||
import { Platform, configContext } from "ConfigContext";
|
||||
import Explorer from "Explorer/Explorer";
|
||||
import { ChangePartitionKeyPane } from "Explorer/Panes/ChangePartitionKeyPane/ChangePartitionKeyPane";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import {
|
||||
CosmosSqlDataTransferDataSourceSink,
|
||||
DataTransferJobGetResults,
|
||||
@@ -160,17 +161,17 @@ export const PartitionKeyComponent: React.FC<PartitionKeyComponentProps> = ({
|
||||
};
|
||||
|
||||
const startPartitionkeyChangeWorkflow = () => {
|
||||
useSidePanel.getState().openSidePanel(
|
||||
t(Keys.controls.settings.partitionKeyEditor.changePartitionKey, {
|
||||
partitionKeyName: t(Keys.controls.settings.partitionKey.partitionKey).toLowerCase(),
|
||||
}),
|
||||
<ChangePartitionKeyPane
|
||||
sourceDatabase={database}
|
||||
sourceCollection={collection}
|
||||
explorer={explorer}
|
||||
onClose={refreshDataTransferOperations}
|
||||
/>,
|
||||
);
|
||||
useSidePanel
|
||||
.getState()
|
||||
.openSidePanel(
|
||||
"Change partition key",
|
||||
<ChangePartitionKeyPane
|
||||
sourceDatabase={database}
|
||||
sourceCollection={collection}
|
||||
explorer={explorer}
|
||||
onClose={refreshDataTransferOperations}
|
||||
/>,
|
||||
);
|
||||
};
|
||||
|
||||
const getPercentageComplete = () => {
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
import { Link, MessageBar, MessageBarType, Stack, Text, TextField } from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import * as React from "react";
|
||||
import * as Constants from "../../../../Common/Constants";
|
||||
import { Platform, configContext } from "../../../../ConfigContext";
|
||||
import * as DataModels from "../../../../Contracts/DataModels";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import * as SharedConstants from "../../../../Shared/Constants";
|
||||
import { userContext } from "../../../../UserContext";
|
||||
import * as AutoPilotUtils from "../../../../Utils/AutoPilotUtils";
|
||||
@@ -93,10 +94,8 @@ export class ScaleComponent extends React.Component<ScaleComponentProps> {
|
||||
}
|
||||
|
||||
const minThroughput: string = this.getMinRUs().toLocaleString();
|
||||
const maxThroughput: string = !this.props.isFixedContainer
|
||||
? t(Keys.controls.settings.scale.unlimited)
|
||||
: this.getMaxRUs().toLocaleString();
|
||||
return t(Keys.controls.settings.scale.throughputRangeLabel, { min: minThroughput, max: maxThroughput });
|
||||
const maxThroughput: string = !this.props.isFixedContainer ? "unlimited" : this.getMaxRUs().toLocaleString();
|
||||
return `Throughput (${minThroughput} - ${maxThroughput} RU/s)`;
|
||||
};
|
||||
|
||||
public canThroughputExceedMaximumValue = (): boolean => {
|
||||
|
||||
@@ -12,7 +12,8 @@ import {
|
||||
} from "@fluentui/react";
|
||||
import * as React from "react";
|
||||
import * as ViewModels from "../../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../Localization/t";
|
||||
import { userContext } from "../../../../UserContext";
|
||||
import { Int32 } from "../../../Panes/Tables/Validators/EntityPropertyValidationCommon";
|
||||
import {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { Label, Slider, Stack, TextField, Toggle } from "@fluentui/react";
|
||||
import { ThroughputBucket } from "Contracts/DataModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../../Localization/t";
|
||||
import React, { FC, useEffect, useState } from "react";
|
||||
import { isDirty } from "../../SettingsUtils";
|
||||
|
||||
|
||||
@@ -16,9 +16,10 @@ import {
|
||||
Text,
|
||||
TextField,
|
||||
} from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import React from "react";
|
||||
import * as DataModels from "../../../../../Contracts/DataModels";
|
||||
import { Keys } from "../../../../../Localization/Keys.generated";
|
||||
import { t } from "../../../../../Localization/t";
|
||||
import * as SharedConstants from "../../../../../Shared/Constants";
|
||||
import { Action, ActionModifiers } from "../../../../../Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "../../../../../Shared/Telemetry/TelemetryProcessor";
|
||||
@@ -335,16 +336,13 @@ export class ThroughputInputAutoPilotV3Component extends React.Component<
|
||||
</Text>
|
||||
<Stack horizontal style={{ marginTop: 5, marginBottom: 10 }}>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.hourlyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perHour)}
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.hourlyPrice)}/hr
|
||||
</Text>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.dailyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perDay)}
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.dailyPrice)}/day
|
||||
</Text>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.monthlyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perMonth)}
|
||||
{newPrices.currencySign} {calculateEstimateNumber(newPrices.monthlyPrice)}/mo
|
||||
</Text>
|
||||
</Stack>
|
||||
</div>
|
||||
@@ -361,16 +359,13 @@ export class ThroughputInputAutoPilotV3Component extends React.Component<
|
||||
</Text>
|
||||
<Stack horizontal style={{ marginTop: 5 }}>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.hourlyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perHour)}
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.hourlyPrice)}/hr
|
||||
</Text>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.dailyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perDay)}
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.dailyPrice)}/day
|
||||
</Text>
|
||||
<Text style={this.settingsAndScaleStyle.root}>
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.monthlyPrice)}
|
||||
{t(Keys.controls.settings.costEstimate.perMonth)}
|
||||
{prices.currencySign} {calculateEstimateNumber(prices.monthlyPrice)}/mo
|
||||
</Text>
|
||||
</Stack>
|
||||
</Stack>
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import * as Constants from "../../../Common/Constants";
|
||||
import * as DataModels from "../../../Contracts/DataModels";
|
||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { isFabricNative } from "../../../Platform/Fabric/FabricUtil";
|
||||
import { userContext } from "../../../UserContext";
|
||||
import { isCapabilityEnabled } from "../../../Utils/CapabilityUtils";
|
||||
|
||||
@@ -42,7 +42,8 @@ import {
|
||||
} from "Explorer/Panes/AddCollectionPanel/AddCollectionPanelUtility";
|
||||
import { useSidePanel } from "hooks/useSidePanel";
|
||||
import { useTeachingBubble } from "hooks/useTeachingBubble";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { DEFAULT_FABRIC_NATIVE_CONTAINER_THROUGHPUT, isFabricNative } from "Platform/Fabric/FabricUtil";
|
||||
import React from "react";
|
||||
import { CollectionCreation } from "Shared/Constants";
|
||||
@@ -184,25 +185,25 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
|
||||
{this.state.teachingBubbleStep === 1 && (
|
||||
<TeachingBubble
|
||||
headline={t(Keys.panes.addCollection.teachingBubble.step1Headline)}
|
||||
headline="Create sample database"
|
||||
target={"#newDatabaseId"}
|
||||
calloutProps={{ gapSpace: 16 }}
|
||||
primaryButtonProps={{ text: t(Keys.common.next), onClick: () => this.setState({ teachingBubbleStep: 2 }) }}
|
||||
secondaryButtonProps={{
|
||||
text: t(Keys.common.cancel),
|
||||
onClick: () => this.setState({ teachingBubbleStep: 0 }),
|
||||
}}
|
||||
primaryButtonProps={{ text: "Next", onClick: () => this.setState({ teachingBubbleStep: 2 }) }}
|
||||
secondaryButtonProps={{ text: "Cancel", onClick: () => this.setState({ teachingBubbleStep: 0 }) }}
|
||||
onDismiss={() => this.setState({ teachingBubbleStep: 0 })}
|
||||
footerContent={t(Keys.panes.addCollection.teachingBubble.stepOfTotal, { current: "1", total: "4" })}
|
||||
footerContent="Step 1 of 4"
|
||||
>
|
||||
<Stack>
|
||||
<Text style={{ color: "white" }}>{t(Keys.panes.addCollection.teachingBubble.step1Body)}</Text>
|
||||
<Text style={{ color: "white" }}>
|
||||
Database is the parent of a container. You can create a new database or use an existing one. In this
|
||||
tutorial we are creating a new database named SampleDB.
|
||||
</Text>
|
||||
<Link
|
||||
style={{ color: "white", fontWeight: 600 }}
|
||||
target="_blank"
|
||||
href="https://aka.ms/TeachingbubbleResources"
|
||||
>
|
||||
{t(Keys.panes.addCollection.teachingBubble.step1LearnMore)}
|
||||
Learn more about resources.
|
||||
</Link>
|
||||
</Stack>
|
||||
</TeachingBubble>
|
||||
@@ -210,21 +211,21 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
|
||||
{this.state.teachingBubbleStep === 2 && (
|
||||
<TeachingBubble
|
||||
headline={t(Keys.panes.addCollection.teachingBubble.step2Headline)}
|
||||
headline="Setting throughput"
|
||||
target={"#autoscaleRUValueField"}
|
||||
calloutProps={{ gapSpace: 16 }}
|
||||
primaryButtonProps={{ text: t(Keys.common.next), onClick: () => this.setState({ teachingBubbleStep: 3 }) }}
|
||||
secondaryButtonProps={{
|
||||
text: t(Keys.common.previous),
|
||||
onClick: () => this.setState({ teachingBubbleStep: 1 }),
|
||||
}}
|
||||
primaryButtonProps={{ text: "Next", onClick: () => this.setState({ teachingBubbleStep: 3 }) }}
|
||||
secondaryButtonProps={{ text: "Previous", onClick: () => this.setState({ teachingBubbleStep: 1 }) }}
|
||||
onDismiss={() => this.setState({ teachingBubbleStep: 0 })}
|
||||
footerContent={t(Keys.panes.addCollection.teachingBubble.stepOfTotal, { current: "2", total: "4" })}
|
||||
footerContent="Step 2 of 4"
|
||||
>
|
||||
<Stack>
|
||||
<Text style={{ color: "white" }}>{t(Keys.panes.addCollection.teachingBubble.step2Body)}</Text>
|
||||
<Text style={{ color: "white" }}>
|
||||
Cosmos DB recommends sharing throughput across database. Autoscale will give you a flexible amount of
|
||||
throughput based on the max RU/s set (Request Units).
|
||||
</Text>
|
||||
<Link style={{ color: "white", fontWeight: 600 }} target="_blank" href="https://aka.ms/teachingbubbleRU">
|
||||
{t(Keys.panes.addCollection.teachingBubble.step2LearnMore)}
|
||||
Learn more about RU/s.
|
||||
</Link>
|
||||
</Stack>
|
||||
</TeachingBubble>
|
||||
@@ -232,41 +233,36 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
|
||||
{this.state.teachingBubbleStep === 3 && (
|
||||
<TeachingBubble
|
||||
headline={t(Keys.panes.addCollection.teachingBubble.step3Headline)}
|
||||
headline="Naming container"
|
||||
target={"#collectionId"}
|
||||
calloutProps={{ gapSpace: 16 }}
|
||||
primaryButtonProps={{ text: t(Keys.common.next), onClick: () => this.setState({ teachingBubbleStep: 4 }) }}
|
||||
secondaryButtonProps={{
|
||||
text: t(Keys.common.previous),
|
||||
onClick: () => this.setState({ teachingBubbleStep: 2 }),
|
||||
}}
|
||||
primaryButtonProps={{ text: "Next", onClick: () => this.setState({ teachingBubbleStep: 4 }) }}
|
||||
secondaryButtonProps={{ text: "Previous", onClick: () => this.setState({ teachingBubbleStep: 2 }) }}
|
||||
onDismiss={() => this.setState({ teachingBubbleStep: 0 })}
|
||||
footerContent={t(Keys.panes.addCollection.teachingBubble.stepOfTotal, { current: "3", total: "4" })}
|
||||
footerContent="Step 3 of 4"
|
||||
>
|
||||
{t(Keys.panes.addCollection.teachingBubble.step3Body)}
|
||||
Name your container
|
||||
</TeachingBubble>
|
||||
)}
|
||||
|
||||
{this.state.teachingBubbleStep === 4 && (
|
||||
<TeachingBubble
|
||||
headline={t(Keys.panes.addCollection.teachingBubble.step4Headline)}
|
||||
headline="Setting partition key"
|
||||
target={"#addCollection-partitionKeyValue"}
|
||||
calloutProps={{ gapSpace: 16 }}
|
||||
primaryButtonProps={{
|
||||
text: t(Keys.panes.addCollection.teachingBubble.step4CreateContainer),
|
||||
text: "Create container",
|
||||
onClick: () => {
|
||||
this.setState({ teachingBubbleStep: 5 });
|
||||
this.submit();
|
||||
},
|
||||
}}
|
||||
secondaryButtonProps={{
|
||||
text: t(Keys.common.previous),
|
||||
onClick: () => this.setState({ teachingBubbleStep: 2 }),
|
||||
}}
|
||||
secondaryButtonProps={{ text: "Previous", onClick: () => this.setState({ teachingBubbleStep: 2 }) }}
|
||||
onDismiss={() => this.setState({ teachingBubbleStep: 0 })}
|
||||
footerContent={t(Keys.panes.addCollection.teachingBubble.stepOfTotal, { current: "4", total: "4" })}
|
||||
footerContent="Step 4 of 4"
|
||||
>
|
||||
{t(Keys.panes.addCollection.teachingBubble.step4Body)}
|
||||
Last step - you will need to define a partition key for your collection. /address was chosen for this
|
||||
particular example. A good partition key should have a wide range of possible value
|
||||
</TeachingBubble>
|
||||
)}
|
||||
|
||||
@@ -276,9 +272,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
<Stack horizontal>
|
||||
<span className="mandatoryStar">* </span>
|
||||
<Text className="panelTextBold" variant="small">
|
||||
{userContext.apiType === "Mongo"
|
||||
? t(Keys.panes.addCollection.databaseFieldLabelName)
|
||||
: t(Keys.panes.addCollection.databaseFieldLabelId)}
|
||||
Database {userContext.apiType === "Mongo" ? "name" : "id"}
|
||||
</Text>
|
||||
<TooltipHost
|
||||
directionalHint={DirectionalHint.bottomLeftEdge}
|
||||
@@ -303,7 +297,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
<input
|
||||
className="panelRadioBtn"
|
||||
checked={this.state.createNewDatabase}
|
||||
aria-label={t(Keys.panes.addCollection.createNewDatabaseAriaLabel)}
|
||||
aria-label="Create new database"
|
||||
aria-checked={this.state.createNewDatabase}
|
||||
name="databaseType"
|
||||
type="radio"
|
||||
@@ -317,7 +311,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
<input
|
||||
className="panelRadioBtn"
|
||||
checked={!this.state.createNewDatabase}
|
||||
aria-label={t(Keys.panes.addCollection.useExistingDatabaseAriaLabel)}
|
||||
aria-label="Use existing database"
|
||||
aria-checked={!this.state.createNewDatabase}
|
||||
name="databaseType"
|
||||
type="radio"
|
||||
@@ -341,10 +335,10 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
autoComplete="off"
|
||||
pattern={ValidCosmosDbIdInputPattern.source}
|
||||
title={ValidCosmosDbIdDescription}
|
||||
placeholder={t(Keys.panes.addCollection.newDatabaseIdPlaceholder)}
|
||||
placeholder="Type a new database id"
|
||||
size={40}
|
||||
className="panelTextField"
|
||||
aria-label={t(Keys.panes.addCollection.newDatabaseIdAriaLabel)}
|
||||
aria-label="New database id, Type a new database id"
|
||||
tabIndex={0}
|
||||
value={this.state.newDatabaseId}
|
||||
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
||||
@@ -410,10 +404,10 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
)}
|
||||
{!this.state.createNewDatabase && (
|
||||
<Dropdown
|
||||
ariaLabel={t(Keys.panes.addCollection.chooseExistingDatabase)}
|
||||
ariaLabel="Choose an existing database"
|
||||
styles={{ title: { height: 27, lineHeight: 27 }, dropdownItem: { fontSize: 12 } }}
|
||||
style={{ width: 300, fontSize: 12 }}
|
||||
placeholder={t(Keys.panes.addCollection.chooseExistingDatabase)}
|
||||
placeholder="Choose an existing database"
|
||||
options={this.getDatabaseOptions()}
|
||||
onChange={(event: React.FormEvent<HTMLDivElement>, database: IDropdownOption) =>
|
||||
this.setState({ selectedDatabaseId: database.key as string })
|
||||
@@ -1033,15 +1027,16 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
||||
<PanelLoadingScreen />
|
||||
{this.state.teachingBubbleStep === 5 && (
|
||||
<TeachingBubble
|
||||
headline={t(Keys.panes.addCollection.teachingBubble.step5Headline)}
|
||||
headline="Creating sample container"
|
||||
target={"#loadingScreen"}
|
||||
onDismiss={() => this.setState({ teachingBubbleStep: 0 })}
|
||||
styles={{ footer: { width: "100%" } }}
|
||||
>
|
||||
{t(Keys.panes.addCollection.teachingBubble.step5Body)}
|
||||
A sample container is now being created and we are adding sample data for you. It should take about 1
|
||||
minute.
|
||||
<br />
|
||||
<br />
|
||||
{t(Keys.panes.addCollection.teachingBubble.step5BodyFollowUp)}
|
||||
Once the sample container is created, review your sample dataset and follow next steps
|
||||
<br />
|
||||
<br />
|
||||
<ProgressIndicator
|
||||
|
||||
@@ -3,7 +3,8 @@ import * as Constants from "Common/Constants";
|
||||
import { configContext, Platform } from "ConfigContext";
|
||||
import * as DataModels from "Contracts/DataModels";
|
||||
import { getFullTextLanguageOptions } from "Explorer/Controls/FullTextSeach/FullTextPoliciesComponent";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { isFabricNative } from "Platform/Fabric/FabricUtil";
|
||||
import React from "react";
|
||||
import { userContext } from "UserContext";
|
||||
|
||||
@@ -29,7 +29,8 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
||||
className="panelTextBold"
|
||||
variant="small"
|
||||
>
|
||||
Database id
|
||||
Database
|
||||
id
|
||||
</Text>
|
||||
<StyledTooltipHostBase
|
||||
content="A database is analogous to a namespace. It is the unit of management for a set of containers."
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { Checkbox, Stack, Text, TextField } from "@fluentui/react";
|
||||
import { getNewDatabaseSharedThroughputDefault } from "Common/DatabaseUtility";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils";
|
||||
import React, { FunctionComponent, useEffect, useState } from "react";
|
||||
import * as Constants from "../../../Common/Constants";
|
||||
@@ -155,9 +156,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
||||
|
||||
if (throughput > SharedConstants.CollectionCreation.DefaultCollectionRUs100K && !isCostAcknowledged) {
|
||||
setFormErrors(
|
||||
isAutoscaleSelected
|
||||
? t(Keys.panes.addDatabase.acknowledgeSpendErrorMonthly)
|
||||
: t(Keys.panes.addDatabase.acknowledgeSpendErrorDaily),
|
||||
t(Keys.panes.addDatabase.acknowledgeSpendError, { period: isAutoscaleSelected ? "monthly" : "daily" }),
|
||||
);
|
||||
return false;
|
||||
}
|
||||
@@ -228,7 +227,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
||||
{!isServerlessAccount() && (
|
||||
<Stack horizontal>
|
||||
<Checkbox
|
||||
title={t(Keys.panes.addDatabase.provisionSharedThroughputTitle)}
|
||||
title="Provision shared throughput"
|
||||
styles={{
|
||||
text: { fontSize: 12, color: "var(--colorNeutralForeground1)" },
|
||||
checkbox: { width: 12, height: 12 },
|
||||
@@ -239,7 +238,7 @@ export const AddDatabasePanel: FunctionComponent<AddDatabasePaneProps> = ({
|
||||
},
|
||||
},
|
||||
}}
|
||||
label={t(Keys.panes.addDatabase.provisionThroughputLabel)}
|
||||
label="Provision throughput"
|
||||
checked={databaseCreateNewShared}
|
||||
onChange={() => setDatabaseCreateNewShared(!databaseCreateNewShared)}
|
||||
/>
|
||||
|
||||
@@ -40,7 +40,8 @@ import { PanelInfoErrorComponent } from "Explorer/Panes/PanelInfoErrorComponent"
|
||||
import { PanelLoadingScreen } from "Explorer/Panes/PanelLoadingScreen";
|
||||
import { useDatabases } from "Explorer/useDatabases";
|
||||
import { useSidePanel } from "hooks/useSidePanel";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React, { MutableRefObject, useEffect, useRef, useState } from "react";
|
||||
import { CollectionCreation } from "Shared/Constants";
|
||||
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
||||
|
||||
@@ -3,7 +3,8 @@ import * as Constants from "Common/Constants";
|
||||
import { getErrorMessage, getErrorStack } from "Common/ErrorHandlingUtils";
|
||||
import { InfoTooltip } from "Common/Tooltip/InfoTooltip";
|
||||
import { useSidePanel } from "hooks/useSidePanel";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React, { FunctionComponent, useState } from "react";
|
||||
import * as SharedConstants from "Shared/Constants";
|
||||
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
||||
|
||||
@@ -26,7 +26,8 @@ import {
|
||||
import Explorer from "Explorer/Explorer";
|
||||
import { RightPaneForm } from "Explorer/Panes/RightPaneForm/RightPaneForm";
|
||||
import { useDatabases } from "Explorer/useDatabases";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { userContext } from "UserContext";
|
||||
import { getCollectionName } from "Utils/APITypeUtils";
|
||||
import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils";
|
||||
|
||||
@@ -4,7 +4,8 @@ import { HttpStatusCodes, PoolIdType } from "../../../Common/Constants";
|
||||
import { getErrorMessage, handleError } from "../../../Common/ErrorHandlingUtils";
|
||||
import { GitHubOAuthService } from "../../../GitHub/GitHubOAuthService";
|
||||
import { IPinnedRepo, JunoClient } from "../../../Juno/JunoClient";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import * as GitHubUtils from "../../../Utils/GitHubUtils";
|
||||
import * as NotificationConsoleUtils from "../../../Utils/NotificationConsoleUtils";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
|
||||
@@ -12,7 +12,8 @@ import {
|
||||
import { GitHubReposTitle } from "Explorer/Tree/ResourceTree";
|
||||
import React, { FormEvent, FunctionComponent } from "react";
|
||||
import { IPinnedRepo } from "../../../Juno/JunoClient";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import * as GitHubUtils from "../../../Utils/GitHubUtils";
|
||||
import { useNotebook } from "../../Notebook/useNotebook";
|
||||
|
||||
|
||||
@@ -4,7 +4,8 @@ import DeleteFeedback from "Common/DeleteFeedback";
|
||||
import { getErrorMessage, getErrorStack } from "Common/ErrorHandlingUtils";
|
||||
import { deleteCollection } from "Common/dataAccess/deleteCollection";
|
||||
import { Collection } from "Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { DefaultExperienceUtility } from "Shared/DefaultExperienceUtility";
|
||||
import { Action, ActionModifiers } from "Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "Shared/Telemetry/TelemetryProcessor";
|
||||
|
||||
@@ -5,7 +5,8 @@ import DeleteFeedback from "Common/DeleteFeedback";
|
||||
import { getErrorMessage, getErrorStack } from "Common/ErrorHandlingUtils";
|
||||
import { deleteDatabase } from "Common/dataAccess/deleteDatabase";
|
||||
import { Collection, Database } from "Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { DefaultExperienceUtility } from "Shared/DefaultExperienceUtility";
|
||||
import { Action, ActionModifiers } from "Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "Shared/Telemetry/TelemetryProcessor";
|
||||
|
||||
@@ -3,7 +3,8 @@ import { useBoolean } from "@fluentui/react-hooks";
|
||||
import React, { FunctionComponent, useRef, useState } from "react";
|
||||
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
||||
import StoredProcedure from "../../Tree/StoredProcedure";
|
||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||
|
||||
@@ -11,7 +11,8 @@ import {
|
||||
import React, { FunctionComponent } from "react";
|
||||
import AddPropertyIcon from "../../../../images/Add-property.svg";
|
||||
import EntityCancelIcon from "../../../../images/Entity_cancel.svg";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
|
||||
const dropdownStyles: Partial<IDropdownStyles> = { dropdown: { width: 100 } };
|
||||
const options = [
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import React, { FunctionComponent } from "react";
|
||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
import { GraphStyleComponent } from "../../Graph/GraphStyleComponent/GraphStyleComponent";
|
||||
import { IGraphConfig } from "../../Tabs/GraphTab";
|
||||
|
||||
@@ -5,7 +5,8 @@ import folderIcon from "../../../../images/folder_16x16.svg";
|
||||
import { logError } from "../../../Common/Logger";
|
||||
import { Collection } from "../../../Contracts/ViewModels";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { userContext } from "../../../UserContext";
|
||||
import { logConsoleError, logConsoleInfo, logConsoleProgress } from "../../../Utils/NotificationConsoleUtils";
|
||||
import { useSelectedNode } from "../../useSelectedNode";
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { useBoolean } from "@fluentui/react-hooks";
|
||||
import React, { FunctionComponent, useState } from "react";
|
||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
import { NewVertexComponent } from "../../Graph/NewVertexComponent/NewVertexComponent";
|
||||
import { RightPaneForm, RightPaneFormProps } from "../RightPaneForm/RightPaneForm";
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Icon, Link, Stack, Text } from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React from "react";
|
||||
import { useNotificationConsole } from "../../hooks/useNotificationConsole";
|
||||
|
||||
|
||||
@@ -5,7 +5,8 @@ import { getErrorMessage, getErrorStack, handleError } from "../../../Common/Err
|
||||
import { useNotebookSnapshotStore } from "../../../hooks/useNotebookSnapshotStore";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
import { JunoClient } from "../../../Juno/JunoClient";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||
import * as NotificationConsoleUtils from "../../../Utils/NotificationConsoleUtils";
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { Dropdown, IDropdownProps, ITextFieldProps, Stack, Text, TextField } from "@fluentui/react";
|
||||
import { ImmutableNotebook } from "@nteract/commutable";
|
||||
import React, { FunctionComponent, useState } from "react";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { GalleryCardComponent } from "../../Controls/NotebookGallery/Cards/GalleryCardComponent";
|
||||
import * as FileSystemUtil from "../../Notebook/FileSystemUtil";
|
||||
import { SnapshotRequest } from "../../Notebook/NotebookComponent/types";
|
||||
|
||||
@@ -4,7 +4,8 @@ import React, { FunctionComponent, useState } from "react";
|
||||
import { Areas, SavedQueries } from "../../../Common/Constants";
|
||||
import { getErrorMessage, getErrorStack } from "../../../Common/ErrorHandlingUtils";
|
||||
import { Query } from "../../../Contracts/DataModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { Action } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||
import { traceFailure, traceStart, traceSuccess } from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||
import { logConsoleError } from "../../../Utils/NotificationConsoleUtils";
|
||||
|
||||
@@ -24,7 +24,8 @@ import { InfoTooltip } from "Common/Tooltip/InfoTooltip";
|
||||
import { Platform, configContext } from "ConfigContext";
|
||||
import { useDialog } from "Explorer/Controls/Dialog";
|
||||
import { useDatabases } from "Explorer/useDatabases";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { isFabric, isFabricNative } from "Platform/Fabric/FabricUtil";
|
||||
import {
|
||||
AppStateComponentNames,
|
||||
|
||||
@@ -11,7 +11,8 @@ import {
|
||||
import { configContext } from "ConfigContext";
|
||||
import { ColumnDefinition } from "Explorer/Tabs/DocumentsTabV2/DocumentsTableComponent";
|
||||
import { CosmosFluentProvider, getPlatformTheme } from "Explorer/Theme/ThemeUtil";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React from "react";
|
||||
import { useSidePanel } from "../../../hooks/useSidePanel";
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { IDropdownOption, Image, Label, Stack, Text, TextField } from "@fluentui/react";
|
||||
import { useBoolean } from "@fluentui/react-hooks";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { logConsoleError } from "Utils/NotificationConsoleUtils";
|
||||
import React, { FunctionComponent, useEffect, useState } from "react";
|
||||
import * as _ from "underscore";
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { IDropdownOption, Image, Label, Stack, Text, TextField } from "@fluentui/react";
|
||||
import { useBoolean } from "@fluentui/react-hooks";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { logConsoleError } from "Utils/NotificationConsoleUtils";
|
||||
import React, { FunctionComponent, useEffect, useState } from "react";
|
||||
import * as _ from "underscore";
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { Checkbox, Text } from "@fluentui/react";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React, { FunctionComponent, useEffect, useState } from "react";
|
||||
import { userContext } from "../../../../UserContext";
|
||||
import { useSidePanel } from "../../../../hooks/useSidePanel";
|
||||
|
||||
@@ -13,7 +13,8 @@ import {
|
||||
} from "@fluentui/react";
|
||||
import { Upload } from "Common/Upload/Upload";
|
||||
import { UploadDetailsRecord } from "Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { logConsoleError } from "Utils/NotificationConsoleUtils";
|
||||
import React, { ChangeEvent, FunctionComponent, useReducer, useState } from "react";
|
||||
import { getErrorMessage } from "../../Tables/Utilities";
|
||||
|
||||
@@ -6,7 +6,8 @@ import { DocumentAddRegular, LinkMultipleRegular, OpenRegular } from "@fluentui/
|
||||
import { SampleDataConfiguration, SampleDataImportDialog } from "Explorer/SplashScreen/SampleDataImportDialog";
|
||||
import { SampleDataFile } from "Explorer/SplashScreen/SampleUtil";
|
||||
import { CosmosFluentProvider } from "Explorer/Theme/ThemeUtil";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { isFabricNative, isFabricNativeReadOnly } from "Platform/Fabric/FabricUtil";
|
||||
import * as React from "react";
|
||||
import { userContext } from "UserContext";
|
||||
|
||||
@@ -12,7 +12,8 @@ import {
|
||||
} from "@fluentui/react-components";
|
||||
import Explorer from "Explorer/Explorer";
|
||||
import { checkContainerExists, createContainer, importData, SampleDataFile } from "Explorer/SplashScreen/SampleUtil";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import * as ViewModels from "../../Contracts/ViewModels";
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@ import { sendMessage } from "Common/MessageHandler";
|
||||
import { MessageTypes } from "Contracts/ExplorerContracts";
|
||||
import { TerminalKind } from "Contracts/ViewModels";
|
||||
import { SplashScreenButton } from "Explorer/SplashScreen/SplashScreenButton";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
||||
import { traceOpen } from "Shared/Telemetry/TelemetryProcessor";
|
||||
import { useCarousel } from "hooks/useCarousel";
|
||||
|
||||
@@ -18,7 +18,8 @@ import { queryConflicts } from "../../Common/dataAccess/queryConflicts";
|
||||
import { updateDocument } from "../../Common/dataAccess/updateDocument";
|
||||
import * as DataModels from "../../Contracts/DataModels";
|
||||
import * as ViewModels from "../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../Localization/Keys.generated";
|
||||
import { t } from "../../Localization/t";
|
||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||
|
||||
@@ -41,7 +41,8 @@ import { usePrevious } from "Explorer/Tabs/DocumentsTabV2/SelectionHelper";
|
||||
import { CosmosFluentProvider, LayoutConstants, cosmosShorthands, tokens } from "Explorer/Theme/ThemeUtil";
|
||||
import { useSelectedNode } from "Explorer/useSelectedNode";
|
||||
import { KeyboardAction, KeyboardActionGroup, useKeyboardActionGroup } from "KeyboardShortcuts";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { isFabric } from "Platform/Fabric/FabricUtil";
|
||||
import { QueryConstants } from "Shared/Constants";
|
||||
import { LocalStorageUtility, StorageKey } from "Shared/StorageUtility";
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import React, { Component } from "react";
|
||||
import { configContext } from "../../../ConfigContext";
|
||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { Action, ActionModifiers } from "../../../Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "../../../Shared/Telemetry/TelemetryProcessor";
|
||||
import { userContext } from "../../../UserContext";
|
||||
|
||||
@@ -17,7 +17,8 @@ import { QueryTabStyles, useQueryTabStyles } from "Explorer/Tabs/QueryTab/Styles
|
||||
import { CosmosFluentProvider } from "Explorer/Theme/ThemeUtil";
|
||||
import { useSelectedNode } from "Explorer/useSelectedNode";
|
||||
import { KeyboardAction } from "KeyboardShortcuts";
|
||||
import { Keys, t } from "Localization";
|
||||
import { Keys } from "Localization/Keys.generated";
|
||||
import { t } from "Localization/t";
|
||||
import { QueryConstants } from "Shared/Constants";
|
||||
import { LocalStorageUtility, StorageKey } from "Shared/StorageUtility";
|
||||
import { Action } from "Shared/Telemetry/TelemetryConstants";
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { Resource, StoredProcedureDefinition } from "@azure/cosmos";
|
||||
import { Pivot, PivotItem } from "@fluentui/react";
|
||||
import { KeyboardAction } from "KeyboardShortcuts";
|
||||
import { Keys, t } from "Localization";
|
||||
import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils";
|
||||
import React from "react";
|
||||
import ExecuteQueryIcon from "../../../../images/ExecuteQuery.svg";
|
||||
@@ -12,6 +11,8 @@ import { createStoredProcedure } from "../../../Common/dataAccess/createStoredPr
|
||||
import { ExecuteSprocResult } from "../../../Common/dataAccess/executeStoredProcedure";
|
||||
import { updateStoredProcedure } from "../../../Common/dataAccess/updateStoredProcedure";
|
||||
import * as ViewModels from "../../../Contracts/ViewModels";
|
||||
import { Keys } from "../../../Localization/Keys.generated";
|
||||
import { t } from "../../../Localization/t";
|
||||
import { useNotificationConsole } from "../../../hooks/useNotificationConsole";
|
||||
import { useTabs } from "../../../hooks/useTabs";
|
||||
import { CommandButtonComponentProps } from "../../Controls/CommandButton/CommandButtonComponent";
|
||||
|
||||
@@ -2,7 +2,6 @@ import { TriggerDefinition } from "@azure/cosmos";
|
||||
import { IDropdownOption, IDropdownStyles, Label, TextField } from "@fluentui/react";
|
||||
import { Dropdown } from "@fluentui/react/lib/Dropdown";
|
||||
import { KeyboardAction } from "KeyboardShortcuts";
|
||||
import { Keys, t } from "Localization";
|
||||
import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils";
|
||||
import React, { Component } from "react";
|
||||
import DiscardIcon from "../../../images/discard.svg";
|
||||
@@ -12,6 +11,8 @@ import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils"
|
||||
import { createTrigger } from "../../Common/dataAccess/createTrigger";
|
||||
import { updateTrigger } from "../../Common/dataAccess/updateTrigger";
|
||||
import * as ViewModels from "../../Contracts/ViewModels";
|
||||
import { Keys } from "../../Localization/Keys.generated";
|
||||
import { t } from "../../Localization/t";
|
||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||
import { SqlTriggerResource } from "../../Utils/arm/generatedClients/cosmos/types";
|
||||
|
||||
@@ -2,7 +2,6 @@ import { UserDefinedFunctionDefinition } from "@azure/cosmos";
|
||||
import { Label, TextField } from "@fluentui/react";
|
||||
import { FluentProvider, webDarkTheme, webLightTheme } from "@fluentui/react-components";
|
||||
import { KeyboardAction } from "KeyboardShortcuts";
|
||||
import { Keys, t } from "Localization";
|
||||
import { ValidCosmosDbIdDescription, ValidCosmosDbIdInputPattern } from "Utils/ValidationUtils";
|
||||
import { useThemeStore } from "hooks/useTheme";
|
||||
import React, { Component } from "react";
|
||||
@@ -13,6 +12,8 @@ import { getErrorMessage, getErrorStack } from "../../Common/ErrorHandlingUtils"
|
||||
import { createUserDefinedFunction } from "../../Common/dataAccess/createUserDefinedFunction";
|
||||
import { updateUserDefinedFunction } from "../../Common/dataAccess/updateUserDefinedFunction";
|
||||
import * as ViewModels from "../../Contracts/ViewModels";
|
||||
import { Keys } from "../../Localization/Keys.generated";
|
||||
import { t } from "../../Localization/t";
|
||||
import { Action } from "../../Shared/Telemetry/TelemetryConstants";
|
||||
import * as TelemetryProcessor from "../../Shared/Telemetry/TelemetryProcessor";
|
||||
import { CommandButtonComponentProps } from "../Controls/CommandButton/CommandButtonComponent";
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "Odstranit",
|
||||
"update": "Aktualizovat",
|
||||
"discard": "Zahodit",
|
||||
"execute": "Provést",
|
||||
"execute": "Execute",
|
||||
"loading": "Načítání",
|
||||
"loadingEllipsis": "Načítání…",
|
||||
"next": "Další",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Nahrát",
|
||||
"connect": "Připojit",
|
||||
"remove": "Odebrat",
|
||||
"load": "Načíst",
|
||||
"publish": "Publikovat",
|
||||
"browse": "Procházet",
|
||||
"increaseValueBy1": "Zvýšit hodnotu o 1",
|
||||
"decreaseValueBy1": "Snížit hodnotu o 1"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "Začněte s našimi ukázkovými datovými sadami, dokumentací a dalšími nástroji."
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "Spustit rychlý start",
|
||||
"description": "Spusťte kurz rychlého startu a začněte pracovat s ukázkovými daty"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "Nové: {{collectionName}}",
|
||||
"description": "Vytvořit nový kontejner pro úložiště a propustnost"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Galerie ukázek Azure Cosmos DB",
|
||||
"description": "Prohlédněte si ukázky, které představují škálovatelné a inteligentní vzory aplikací. Vyzkoušejte si to hned a uvidíte, jak rychle můžete s Cosmos DB přejít od konceptu ke kódu."
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "Připojit",
|
||||
"description": "Dáváte přednost používání vlastních nástrojů? Najděte připojovací řetězec, který potřebujete k připojení",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "Připojit pomocí pgAdmin",
|
||||
"description": "Upřednostňujete pgAdmin? Tady najdete připojovací řetězce."
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "Připojení pomocí VS Code",
|
||||
"description": "Dotazujte se na své clustery MongoDB a DocumentDB a spravujte je ve Visual Studio Code"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "Prostředí PostgreSQL",
|
||||
"description": "Vytvoření tabulky a interakce s daty pomocí rozhraní prostředí PostgreSQL"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Prostředí Mongo",
|
||||
"description": "Vytvořte kolekci a pracujte s daty pomocí rozhraní prostředí MongoDB"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Začínáte s Cosmos DB PGSQL?",
|
||||
"body": "Vítejte! Pokud s Cosmos DB PGSQL začínáte a potřebujete pomoc s prvními kroky, najdete tady ukázková data a dotazy."
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "Vytvořte si heslo",
|
||||
"body": "Pokud jste si ještě nezměnili heslo, změňte si ho teď."
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "Začít s ukázkou {{collectionName}}",
|
||||
"body": "Provedeme vás vytvořením ukázkového kontejneru s ukázkovými daty. Pak vás provedeme průzkumníkem dat. Můžete také zrušit spuštění této prohlídky a prozkoumat si vše sami"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "Poslední",
|
||||
"clearRecents": "Vymazat poslední",
|
||||
"top3": "3 nejdůležitější věci, které potřebujete vědět",
|
||||
"learningResources": "Studijní materiály",
|
||||
"nextSteps": "Další kroky",
|
||||
"tipsAndLearnMore": "Tipy a další informace",
|
||||
"notebook": "Poznámkový blok",
|
||||
"needHelp": "Potřebujete pomoc?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "Pokročilé vzory modelování",
|
||||
"description": "Seznamte se s pokročilými strategiemi pro optimalizaci databáze."
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Osvědčené postupy vytváření oddílů",
|
||||
"description": "Naučte se používat strategie datového modelu a rozdělení na oddíly"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "Naplánujte si požadavky na zdroje",
|
||||
"description": "Seznamte se s různými možnostmi konfigurace."
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "Co je rozhraní MongoDB API?",
|
||||
"description": "Seznamte se se službou Azure Cosmos DB for MongoDB a s jejími funkcemi."
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "Funkce a syntaxe",
|
||||
"description": "Objevte výhody a funkce"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Migrovat data",
|
||||
"description": "Kroky před migrací pro přesun dat"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Vytvořte aplikaci Java",
|
||||
"description": "Vytvořte aplikaci v Javě pomocí sady SDK."
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Osvědčené postupy vytváření oddílů",
|
||||
"description": "Zjistěte, jak funguje dělení na oddíly."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "Jednotky žádosti (RU)",
|
||||
"description": "Vysvětlení poplatků za RU"
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "Modelování dat",
|
||||
"description": "Doporučení k modelování dat grafu"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Osvědčené postupy vytváření oddílů",
|
||||
"description": "Zjistěte, jak funguje dělení na oddíly"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "Data dotazu",
|
||||
"description": "Dotazování na data pomocí Gremlin"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Co je Table API?",
|
||||
"description": "Seznamte se se službou Azure Cosmos DB for Table a s jejími funkcemi"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Migrujte svá data",
|
||||
"description": "Informace o migraci dat"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Nejčastější dotazy k Azure Cosmos DB for Table",
|
||||
"description": "Běžné otázky k Azure Cosmos DB for Table"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Klávesové zkratky Data Exploreru",
|
||||
"description": "Naučte se klávesové zkratky pro navigaci v Data Exploreru."
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "Naučte se základy",
|
||||
"description": "Podívejte se na úvodní videa a videa s postupy Azure Cosmos DB Live TV."
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "Začínáme s používáním sady SDK",
|
||||
"description": "Přečtěte si o sadě Azure Cosmos DB SDK."
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Migrovat data",
|
||||
"description": "Migrujte data pomocí služeb Azure a opensourcových řešení."
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Vytvořit aplikaci s Node.js",
|
||||
"description": "Vytvořte aplikaci Node.js."
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Úvodní příručka",
|
||||
"description": "Seznamte se se základy, které vám pomůžou začít."
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "Vytvořit kontejner",
|
||||
"description": "Seznamte se s možnostmi vytvoření kontejneru."
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "Zřídit propustnost",
|
||||
"description": "Zjistěte, jak nakonfigurovat propustnost."
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "Začínáme ",
|
||||
"description": "Vytvoření, dotaz a procházení pomocí konzoly Gremlin"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "Importovat data grafu",
|
||||
"description": "Naučte se hromadně přijímat data pomocí BulkExecutor"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": "Vytvoření aplikace .NET",
|
||||
"description": "Jak získat přístup k Azure Cosmos DB for Table z aplikace .NET"
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Vytvořte aplikaci Java",
|
||||
"description": "Vytvořte aplikaci Azure Cosmos DB for Table se sadou Java SDK "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "Modelování dat",
|
||||
"distributionColumn": "Jak zvolit sloupec pro distribuci",
|
||||
"buildApps": "Vytvářejte aplikace pomocí Pythonu, Javy nebo Django"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "Migrovat data",
|
||||
"vectorSearch": "Vytvářejte AI aplikace pomocí vektorového vyhledávání",
|
||||
"buildApps": "Vytvářejte aplikace pomocí Node.js"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "Optimalizace výkonu",
|
||||
"diagnosticQueries": "Užitečné diagnostické dotazy",
|
||||
"sqlReference": "Referenční informace k distribuovanému SQL"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "Vektorové vyhledávání",
|
||||
"textIndexing": "Indexování textu",
|
||||
"troubleshoot": "Řešení častých problémů"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "Vytvořit databázi",
|
||||
"useTitle": "Použijte svou databázi",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "Nový kontejner",
|
||||
"description": "Vytvořit cílový kontejner pro uložení dat"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "Ukázková data",
|
||||
"description": "Načtěte ukázková data do své databáze"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "Ukázková vektorová data",
|
||||
"description": "Načíst ukázková vektorová data pomocí text-embedding-ada-002"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "Vývoj aplikací",
|
||||
"description": "Začněte tady, pokud chcete k vytváření aplikací použít sadu SDK"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "Galerie ukázek",
|
||||
"description": "Získejte komplexní ukázky z reálného světa"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "Ukázková data",
|
||||
"startButton": "Spustit",
|
||||
"createPrompt": "Vytvořte kontejner {{containerName}} a importujte do něj ukázková data. Může to trvat několik minut.",
|
||||
"creatingContainer": "Vytváří se kontejner {{containerName}}...",
|
||||
"importingData": "Importují se data do {{containerName}}...",
|
||||
"success": "{{containerName}} – úspěšně vytvořeno s ukázkovými daty",
|
||||
"errorContainerExists": "Kontejner {{containerName}} v databázi {{databaseName}} už existuje. Odstraňte ho prosím a zkuste to znovu.",
|
||||
"errorCreateContainer": "Nepovedlo se vytvořit kontejner: {{error}}",
|
||||
"errorImportData": "Nepovedlo se naimportovat data: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nový kontejner {{containerName}}",
|
||||
"restoreContainer": "Obnovit kontejner {{containerName}}",
|
||||
"deleteDatabase": "Odstranit databázi {{databaseName}}",
|
||||
"deleteContainer": "Odstranit kontejner {{containerName}}",
|
||||
"newSqlQuery": "Nový dotaz SQL",
|
||||
"newQuery": "Nový dotaz",
|
||||
"openMongoShell": "Otevřít Mongo Shell",
|
||||
"newShell": "Nové prostředí",
|
||||
"openCassandraShell": "Otevřít prostředí Cassandra",
|
||||
"newStoredProcedure": "Nová uložená procedura",
|
||||
"newUdf": "Nové UDF",
|
||||
"newTrigger": "Nová aktivační událost",
|
||||
"deleteStoredProcedure": "Odstranit uloženou proceduru",
|
||||
"deleteTrigger": "Odstranit aktivační událost",
|
||||
"deleteUdf": "Odstranit uživatelem definovanou funkci"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nová položka",
|
||||
"newDocument": "Nový dokument",
|
||||
"uploadItem": "Nahrát položku",
|
||||
"applyFilter": "Použít filtr",
|
||||
"unsavedChanges": "Neuložené změny",
|
||||
"unsavedChangesMessage": "Vaše neuložené změny se ztratí. Chcete pokračovat?",
|
||||
"createDocumentFailed": "Vytvoření dokumentu se nezdařilo",
|
||||
"updateDocumentFailed": "Nepovedlo se aktualizovat dokument",
|
||||
"documentDeleted": "Dokument se úspěšně odstranil.",
|
||||
"deleteDocumentDialogTitle": "Odstranit dokument",
|
||||
"deleteDocumentsDialogTitle": "Odstranit dokumenty",
|
||||
"throttlingError": "Některé dokumenty se nepovedlo odstranit kvůli chybě omezení rychlosti. Zkuste to prosím znovu později. Pokud tomu chcete v budoucnu zabránit, zvažte zvýšení propustnosti vašeho kontejneru nebo databáze.",
|
||||
"deleteFailed": "Odstranění dokumentů (celkem {{error}}) se nezdařilo",
|
||||
"missingShardProperty": "V dokumentu chybí vlastnost extentu: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Nepovedlo se aktualizovat mřížku dokumentů",
|
||||
"confirmDelete": "Opravdu chcete odstranit dokument {{documentName}}?",
|
||||
"confirmDeleteTitle": "Potvrdit odstranění",
|
||||
"selectedItems": "vybrané položky (celkem {{count}})",
|
||||
"selectedItem": "vybraná položka",
|
||||
"selectedDocuments": "vybrané dokumenty (celkem {{count}})",
|
||||
"selectedDocument": "vybraný dokument",
|
||||
"deleteDocumentFailedLog": "Nepovedlo se odstranit dokument {{documentId}} se stavovým kódem {{statusCode}}",
|
||||
"deleteSuccessLog": "Dokumenty (celkem {{count}}) se úspěšně odstranily",
|
||||
"deleteThrottledLog": "Nepovedlo se odstranit tento počet dokumentů: {{count}}, protože došlo k chybě „Žádost je příliš velká“ (429). Opakování…",
|
||||
"missingShardKeyLog": "Nepovedlo se uložit nový dokument: Klíč extentu dokumentu není definovaný",
|
||||
"filterTooltip": "Zadejte predikát dotazu nebo ho vyberte ze seznamu.",
|
||||
"loadMore": "Načíst další",
|
||||
"documentEditor": "Editor dokumentů",
|
||||
"savedFilters": "Uložené filtry",
|
||||
"defaultFilters": "Výchozí filtry",
|
||||
"abort": "Přerušit",
|
||||
"deletingDocuments": "Odstraňují se dokumenty (celkem {{count}})",
|
||||
"deletedDocumentsSuccess": "Dokumenty (celkem {{count}}) se úspěšně odstranily.",
|
||||
"deleteAborted": "Odstraňování dokumentů bylo přerušeno.",
|
||||
"failedToDeleteDocuments": "Nepovedlo se odstranit dokumenty (celkem {{count}}).",
|
||||
"requestTooLargeBase": "Některé žádosti o odstranění selhaly kvůli výjimce „Žádost je příliš velká“ (429)",
|
||||
"retriedSuccessfully": "Bylo ale úspěšně opakováno.",
|
||||
"retryingNow": "Probíhá opakovaný pokus.",
|
||||
"increaseThroughputTip": "Pokud tomu chcete v budoucnu zabránit, zvažte zvýšení propustnosti vašeho kontejneru nebo databáze.",
|
||||
"numberOfSelectedDocuments": "Počet vybraných dokumentů: {{count}}",
|
||||
"mongoFilterPlaceholder": "Zadejte predikát dotazu (např. {\"id\":\"foo\"}) nebo zvolte některý z rozevíracího seznamu, případně to ponechte prázdné pro dotazování všech dokumentů.",
|
||||
"sqlFilterPlaceholder": "Zadejte predikát dotazu (např. WHERE c.id=\"1\") nebo zvolte některý z rozevíracího seznamu, případně to ponechte prázdné pro dotazování všech dokumentů.",
|
||||
"error": "Chyba",
|
||||
"warning": "Upozornění"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Spustit dotaz",
|
||||
"executeSelection": "Spustit výběr",
|
||||
"saveQuery": "Uložit dotaz",
|
||||
"downloadQuery": "Stáhnout dotaz",
|
||||
"cancelQuery": "Zrušit dotaz",
|
||||
"openSavedQueries": "Otevřít uložené dotazy",
|
||||
"vertical": "Svislé",
|
||||
"horizontal": "Vodorovné",
|
||||
"view": "Zobrazit",
|
||||
"editingQuery": "Upravuje se dotaz"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID uložené procedury",
|
||||
"idPlaceholder": "Zadejte nové ID uložené procedury",
|
||||
"idAriaLabel": "ID uložené procedury",
|
||||
"body": "Text uložené procedury",
|
||||
"bodyAriaLabel": "Text uložené procedury",
|
||||
"successfulExecution": "Úspěšné spuštění uložené procedury",
|
||||
"resultAriaLabel": "Spustit výsledek uložené procedury",
|
||||
"logsAriaLabel": "Spustit protokoly uložených procedur",
|
||||
"errors": "Chyby:",
|
||||
"errorDetailsAriaLabel": "Odkaz na podrobnosti o chybě",
|
||||
"moreDetails": "Více podrobností",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID aktivační události",
|
||||
"idPlaceholder": "Zadejte nové ID aktivační události",
|
||||
"type": "Typ aktivační události",
|
||||
"operation": "Operace aktivační události",
|
||||
"body": "Tělo aktivační události",
|
||||
"bodyAriaLabel": "Text aktivační události",
|
||||
"pre": "Před",
|
||||
"post": "Publikovat",
|
||||
"all": "Vše",
|
||||
"operationCreate": "Vytvořit",
|
||||
"operationDelete": "Odstranit",
|
||||
"operationReplace": "Nahradit"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID uživatelem definované funkce",
|
||||
"idPlaceholder": "Zadejte nové ID uživatelem definované funkce",
|
||||
"body": "Text uživatelem definované funkce",
|
||||
"bodyAriaLabel": "Text uživatelem definované funkce"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Neuložené změny",
|
||||
"changesWillBeLost": "Změny budou ztraceny. Chcete pokračovat?",
|
||||
"resolveConflictFailed": "Vyřešení konfliktu se nezdařilo",
|
||||
"deleteConflictFailed": "Odstranění konfliktu se nezdařilo",
|
||||
"refreshGridFailed": "Nepovedlo se aktualizovat mřížku dokumentů"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Prostředí Mongo"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Delete {{databaseName}}",
|
||||
"warningMessage": "Warning! The action you are about to take cannot be undone. Continuing will permanently delete this resource and all of its children resources.",
|
||||
"confirmPrompt": "Confirm by typing the {{databaseName}} id (name)",
|
||||
"inputMismatch": "Input {{databaseName}} name \"{{input}}\" does not match the selected {{databaseName}} \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Delete {{collectionName}}",
|
||||
"confirmPrompt": "Confirm by typing the {{collectionName}} id",
|
||||
"inputMismatch": "Input id {{input}} does not match the selected {{selectedId}}",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Database {{suffix}}",
|
||||
"databaseIdLabel": "Database id",
|
||||
"keyspaceIdLabel": "Keyspace id",
|
||||
"databaseIdPlaceholder": "Type a new {{databaseLabel}} id",
|
||||
"databaseTooltip": "A {{databaseLabel}} is a logical container of one or more {{collectionsLabel}}",
|
||||
"shareThroughput": "Share throughput across {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Provisioned throughput at the {{databaseLabel}} level will be shared across all {{collectionsLabel}} within the {{databaseLabel}}.",
|
||||
"greaterThanError": "Please enter a value greater than {{minValue}} for autopilot throughput",
|
||||
"acknowledgeSpendError": "Please acknowledge the estimated {{period}} spend."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Create new",
|
||||
"useExisting": "Use existing",
|
||||
"databaseTooltip": "A database is analogous to a namespace. It is the unit of management for a set of {{collectionName}}.",
|
||||
"shareThroughput": "Share throughput across {{collectionName}}",
|
||||
"shareThroughputTooltip": "Throughput configured at the database level will be shared across all {{collectionName}} within the database.",
|
||||
"collectionIdLabel": "{{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Choose existing {{databaseName}} id",
|
||||
"existingDatabasePlaceholder": "Choose existing {{databaseName}} id",
|
||||
"indexing": "Indexing",
|
||||
"turnOnIndexing": "Turn on indexing",
|
||||
"automatic": "Automatic",
|
||||
"turnOffIndexing": "Turn off indexing",
|
||||
"off": "Off",
|
||||
"sharding": "Sharding",
|
||||
"shardingTooltip": "Sharded collections split your data across many replica sets (shards) to achieve unlimited scalability. Sharded collections require choosing a shard key (field) to evenly distribute your data.",
|
||||
"unsharded": "Unsharded",
|
||||
"unshardedLabel": "Unsharded (20GB limit)",
|
||||
"sharded": "Sharded",
|
||||
"addPartitionKey": "Add hierarchical partition key",
|
||||
"hierarchicalPartitionKeyInfo": "This feature allows you to partition your data with up to three levels of keys for better data distribution. Requires .NET V3, Java V4 SDK, or preview JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a {{collectionName}} within a database that has throughput provisioned. This dedicated throughput amount will not be shared with other {{collectionNamePlural}} in the database and does not count towards the throughput you provisioned for the database. This throughput amount will be billed in addition to the throughput amount you provisioned at the database level.",
|
||||
"uniqueKeysPlaceholderMongo": "Comma separated paths e.g. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Comma separated paths e.g. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Add unique key",
|
||||
"enableAnalyticalStore": "Enable analytical store",
|
||||
"disableAnalyticalStore": "Disable analytical store",
|
||||
"on": "On",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link is required for creating an analytical store {{collectionName}}. Enable Synapse Link for this Cosmos DB account.",
|
||||
"enable": "Enable",
|
||||
"containerVectorPolicy": "Container Vector Policy",
|
||||
"containerFullTextSearchPolicy": "Container Full Text Search Policy",
|
||||
"advanced": "Advanced",
|
||||
"mongoIndexingTooltip": "The _id field is indexed by default. Creating a wildcard index for all fields will optimize queries and is recommended for development.",
|
||||
"createWildcardIndex": "Create a Wildcard Index on all fields",
|
||||
"legacySdkCheckbox": "My application uses an older Cosmos .NET or Java SDK version (.NET V1 or Java V2)",
|
||||
"legacySdkInfo": "To ensure compatibility with older SDKs, the created container will use a legacy partitioning scheme that supports partition key values of size only up to 101 bytes. If this is enabled, you will not be able to use hierarchical partition keys.",
|
||||
"indexingOnInfo": "All properties in your documents will be indexed by default for flexible and efficient queries.",
|
||||
"indexingOffInfo": "Indexing will be turned off. Recommended if you don't need to run queries or only have key value operations.",
|
||||
"indexingOffWarning": "By creating this container with indexing turned off, you will not be able to make any indexing policy changes. Indexing changes are only allowed on a container with a indexing policy.",
|
||||
"acknowledgeSpendErrorMonthly": "Please acknowledge the estimated monthly spend.",
|
||||
"acknowledgeSpendErrorDaily": "Please acknowledge the estimated daily spend.",
|
||||
"unshardedMaxRuError": "Unsharded collections support up to 10,000 RUs",
|
||||
"acknowledgeShareThroughputError": "Please acknowledge the estimated cost of this dedicated throughput.",
|
||||
"vectorPolicyError": "Please fix errors in container vector policy",
|
||||
"fullTextSearchPolicyError": "Please fix errors in container full text search policy",
|
||||
"addingSampleDataSet": "Adding sample data set"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "The shard key (field) is used to split your data across many replica sets (shards) to achieve unlimited scalability. It's critical to choose a field that will evenly distribute your data.",
|
||||
"partitionKeyTooltip": "The {{partitionKeyName}} is used to automatically distribute data across partitions for scalability. Choose a property in your JSON document that has a wide range of values and evenly distributes request volume.",
|
||||
"partitionKeyTooltipSqlSuffix": " For small read-heavy workloads or write-heavy workloads of any size, id is often a good choice.",
|
||||
"shardKeyLabel": "Shard key",
|
||||
"partitionKeyLabel": "Partition key",
|
||||
"shardKeyPlaceholder": "e.g., categoryId",
|
||||
"partitionKeyPlaceholderDefault": "e.g., /address",
|
||||
"partitionKeyPlaceholderFirst": "Required - first partition key e.g., /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "druhý klíč oddílu, například /UserId",
|
||||
"partitionKeyPlaceholderThird": "third partition key e.g., /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "e.g., /address/zipCode",
|
||||
"uniqueKeysTooltip": "Unique keys provide developers with the ability to add a layer of data integrity to their database. By creating a unique key policy when a container is created, you ensure the uniqueness of one or more values per partition key.",
|
||||
"uniqueKeysLabel": "Unique keys",
|
||||
"analyticalStoreLabel": "Analytical Store",
|
||||
"analyticalStoreTooltip": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"analyticalStoreDescription": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"vectorPolicyTooltip": "Describe any properties in your data that contain vectors, so that they can be made available for similarity queries."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Page Options",
|
||||
"pageOptionsDescription": "Choose Custom to specify a fixed amount of query results to show, or choose Unlimited to show as many query results per page.",
|
||||
"queryResultsPerPage": "Query results per page",
|
||||
"queryResultsPerPageTooltip": "Enter the number of query results that should be shown per page.",
|
||||
"customQueryItemsPerPage": "Custom query items per page",
|
||||
"custom": "Custom",
|
||||
"unlimited": "Unlimited",
|
||||
"entraIdRbac": "Enable Entra ID RBAC",
|
||||
"entraIdRbacDescription": "Choose Automatic to enable Entra ID RBAC automatically. True/False to force enable/disable Entra ID RBAC.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "Region Selection",
|
||||
"regionSelectionDescription": "Changes region the Cosmos Client uses to access account.",
|
||||
"selectRegion": "Select Region",
|
||||
"selectRegionTooltip": "Changes the account endpoint used to perform client operations.",
|
||||
"globalDefault": "Global (Default)",
|
||||
"readWrite": "(Read/Write)",
|
||||
"read": "(Read)",
|
||||
"queryTimeout": "Query Timeout",
|
||||
"queryTimeoutDescription": "When a query reaches a specified time limit, a popup with an option to cancel the query will show unless automatic cancellation has been enabled.",
|
||||
"enableQueryTimeout": "Enable query timeout",
|
||||
"queryTimeoutMs": "Query timeout (ms)",
|
||||
"automaticallyCancelQuery": "Automatically cancel query after timeout",
|
||||
"ruLimit": "RU Limit",
|
||||
"ruLimitDescription": "If a query exceeds a configured RU limit, the query will be aborted.",
|
||||
"enableRuLimit": "Enable RU limit",
|
||||
"ruLimitLabel": "RU Limit (RU)",
|
||||
"defaultQueryResults": "Default Query Results View",
|
||||
"defaultQueryResultsDescription": "Select the default view to use when displaying query results.",
|
||||
"retrySettings": "Retry Settings",
|
||||
"retrySettingsDescription": "Retry policy associated with throttled requests during CosmosDB queries.",
|
||||
"maxRetryAttempts": "Max retry attempts",
|
||||
"maxRetryAttemptsTooltip": "Max number of retries to be performed for a request. Default value 9.",
|
||||
"fixedRetryInterval": "Fixed retry interval (ms)",
|
||||
"fixedRetryIntervalTooltip": "Fixed retry interval in milliseconds to wait between each retry ignoring the retryAfter returned as part of the response. Default value is 0 milliseconds.",
|
||||
"maxWaitTime": "Max wait time (s)",
|
||||
"maxWaitTimeTooltip": "Max wait time in seconds to wait for a request while the retries are happening. Default value 30 seconds.",
|
||||
"enableContainerPagination": "Enable container pagination",
|
||||
"enableContainerPaginationDescription": "Load 50 containers at a time. Currently, containers are not pulled in alphanumeric order.",
|
||||
"enableCrossPartitionQuery": "Enable cross-partition query",
|
||||
"enableCrossPartitionQueryDescription": "Send more than one request while executing a query. More than one request is necessary if the query is not scoped to single partition key value.",
|
||||
"maxDegreeOfParallelism": "Maximální stupeň paralelismu",
|
||||
"maxDegreeOfParallelismDescription": "Gets or sets the number of concurrent operations run client side during parallel query execution. A positive property value limits the number of concurrent operations to the set value. If it is set to less than 0, the system automatically decides the number of concurrent operations to run.",
|
||||
"maxDegreeOfParallelismQuery": "Query up to the max degree of parallelism.",
|
||||
"priorityLevel": "Priority Level",
|
||||
"priorityLevelDescription": "Sets the priority level for data-plane requests from Data Explorer when using Priority-Based Execution. If \"None\" is selected, Data Explorer will not specify priority level, and the server-side default priority level will be used.",
|
||||
"displayGremlinQueryResults": "Display Gremlin query results as:",
|
||||
"displayGremlinQueryResultsDescription": "Select Graph to automatically visualize the query results as a Graph or JSON to display the results as JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Graph Auto-visualization",
|
||||
"enableSampleDatabase": "Enable sample database",
|
||||
"enableSampleDatabaseDescription": "This is a sample database and collection with synthetic product data you can use to explore using NoSQL queries. This will appear as another database in the Data Explorer UI, and is created by, and maintained by Microsoft at no cost to you.",
|
||||
"enableSampleDbAriaLabel": "Enable sample db for query exploration",
|
||||
"guidRepresentation": "Guid Representation",
|
||||
"guidRepresentationDescription": "GuidRepresentation in MongoDB refers to how Globally Unique Identifiers (GUIDs) are serialized and deserialized when stored in BSON documents. This will apply to all document operations.",
|
||||
"advancedSettings": "Advanced Settings",
|
||||
"ignorePartitionKey": "Ignore partition key on document update",
|
||||
"ignorePartitionKeyTooltip": "If checked, the partition key value will not be used to locate the document during update operations. Only use this if document updates are failing due to an abnormal partition key.",
|
||||
"clearHistory": "Clear History",
|
||||
"clearHistoryConfirm": "Opravdu chcete pokračovat?",
|
||||
"clearHistoryDescription": "This action will clear the all customizations for this account in this browser, including:",
|
||||
"clearHistoryTabLayout": "Reset your customized tab layout, including the splitter positions",
|
||||
"clearHistoryTableColumns": "Erase your table column preferences, including any custom columns",
|
||||
"clearHistoryFilters": "Clear your filter history",
|
||||
"clearHistoryRegion": "Reset region selection to global",
|
||||
"increaseValueBy1000": "Increase value by 1000",
|
||||
"decreaseValueBy1000": "Decrease value by 1000",
|
||||
"none": "None",
|
||||
"low": "Low",
|
||||
"high": "High",
|
||||
"automatic": "Automatic",
|
||||
"enhancedQueryControl": "Enhanced query control",
|
||||
"enableQueryControl": "Enable query control",
|
||||
"explorerVersion": "Explorer Version",
|
||||
"accountId": "Account ID",
|
||||
"sessionId": "Session ID",
|
||||
"popupsDisabledError": "We were unable to establish authorization for this account, due to pop-ups being disabled in the browser.\nPlease enable pop-ups for this site and click on \"Login for Entra ID\" button",
|
||||
"failedToAcquireTokenError": "Failed to acquire authorization token automatically. Please click on \"Login for Entra ID\" button to enable Entra ID RBAC operations"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Save Query",
|
||||
"setupCostMessage": "For compliance reasons, we save queries in a container in your Azure Cosmos account, in a separate database called “{{databaseName}}”. To proceed, we need to create a container in your account, estimated additional cost is $0.77 daily.",
|
||||
"completeSetup": "Complete setup",
|
||||
"noQueryNameError": "No query name specified",
|
||||
"invalidQueryContentError": "Invalid query content specified",
|
||||
"failedToSaveQueryError": "Failed to save query {{queryName}}",
|
||||
"failedToSetupContainerError": "Failed to setup a container for saved queries",
|
||||
"accountNotSetupError": "Failed to save query: account not setup to save queries",
|
||||
"name": "Name"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "No file specified",
|
||||
"failedToLoadQueryError": "Dotaz se nepovedlo načíst.",
|
||||
"failedToLoadQueryFromFileError": "Failed to load query from file {{fileName}}",
|
||||
"selectFilesToOpen": "Select a query document",
|
||||
"browseFiles": "Browse"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Enter input parameters (if any)",
|
||||
"key": "Key",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Partition key value",
|
||||
"value": "Value",
|
||||
"addNewParam": "Add New Param",
|
||||
"addParam": "Add param",
|
||||
"deleteParam": "Delete param",
|
||||
"invalidParamError": "Invalid param specified: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Invalid param specified: {{invalidParam}} is not a valid literal value",
|
||||
"stringType": "String",
|
||||
"customType": "Custom"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "No files were specified. Please input at least one file.",
|
||||
"selectJsonFiles": "Select JSON Files",
|
||||
"selectJsonFilesTooltip": "Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON documents. The combined size of all files in an individual upload operation must be less than 2 MB. You can perform multiple upload operations for larger data sets.",
|
||||
"fileNameColumn": "FILE NAME",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} created, {{numThrottled}} throttled, {{numFailed}} errors",
|
||||
"uploadedFiles": "Uploaded files"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Failed to copy {{name}} to {{destination}}",
|
||||
"uploadFailedError": "Failed to upload {{name}}",
|
||||
"location": "Location",
|
||||
"locationAriaLabel": "Location",
|
||||
"selectLocation": "Select a notebook location to copy",
|
||||
"name": "Name"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Failed to publish {{notebookName}} to gallery",
|
||||
"publishDescription": "When published, this notebook will appear in the Azure Cosmos DB notebooks public gallery. Make sure you have removed any sensitive data or output before publishing.",
|
||||
"publishPrompt": "Would you like to publish and share \"{{name}}\" to the gallery?",
|
||||
"coverImage": "Cover image",
|
||||
"coverImageUrl": "Cover image url",
|
||||
"name": "Name",
|
||||
"description": "Description",
|
||||
"tags": "Tags",
|
||||
"tagsPlaceholder": "Optional tag 1, Optional tag 2",
|
||||
"preview": "Preview",
|
||||
"urlType": "URL",
|
||||
"customImage": "Custom Image",
|
||||
"takeScreenshot": "Take Screenshot",
|
||||
"useFirstDisplayOutput": "Use First Display Output",
|
||||
"failedToCaptureOutput": "Failed to capture first output",
|
||||
"outputDoesNotExist": "Output does not exist for any of the cells.",
|
||||
"failedToConvertError": "Failed to convert {{fileName}} to base64 format",
|
||||
"failedToUploadError": "Failed to upload {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Failed to start data transfer job",
|
||||
"suboptimalPartitionKeyError": "Warning: The system has detected that your collection may be using a suboptimal partition key",
|
||||
"description": "When changing a container’s partition key, you will need to create a destination container with the correct partition key. You may also select an existing destination container.",
|
||||
"sourceContainerId": "Source {{collectionName}} id",
|
||||
"destinationContainerId": "Destination {{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingContainers": "Existing Containers",
|
||||
"partitionKeyWarning": "The destination container must not already exist. Data Explorer will create a new destination container for you."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Keyspace name",
|
||||
"keyspaceTooltip": "Select an existing keyspace or enter a new keyspace id.",
|
||||
"tableIdLabel": "Enter CQL command to create the table.",
|
||||
"enterTableId": "Enter table Id",
|
||||
"tableSchemaAriaLabel": "Table schema",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this table",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a table within a keyspace that has throughput provisioned. This dedicated throughput amount will not be shared with other tables in the keyspace and does not count towards the throughput you provisioned for the keyspace. This throughput amount will be billed in addition to the throughput amount you provisioned at the keyspace level."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Add Property",
|
||||
"addRow": "Add Row",
|
||||
"addEntity": "Add Entity",
|
||||
"back": "back",
|
||||
"nullFieldsWarning": "Warning: Null fields will not be displayed for editing.",
|
||||
"propertyEmptyError": "{{property}} cannot be empty. Please input a value for {{property}}",
|
||||
"whitespaceError": "{{property}} cannot have whitespace. Please input a value for {{property}} without whitespace",
|
||||
"propertyTypeEmptyError": "Property type cannot be empty. Please select a type from the dropdown for property {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Vyberte sloupce, na které se chcete dotázat.",
|
||||
"availableColumns": "Available Columns"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Select which columns to display in your view of items in your container.",
|
||||
"searchFields": "Search fields",
|
||||
"reset": "Reset",
|
||||
"partitionKeySuffix": " (partition key)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Add Property"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Global secondary index container id",
|
||||
"globalSecondaryIndexIdPlaceholder": "e.g., indexbyEmailId",
|
||||
"projectionQuery": "Projection query",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Learn more about defining global secondary indexes.",
|
||||
"disabledTitle": "A global secondary index is already being created. Please wait for it to complete before creating another one."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Input {{input}} does not match the selected {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Information",
|
||||
"moreDetails": "More details"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Hochladen",
|
||||
"connect": "Verbinden",
|
||||
"remove": "Entfernen",
|
||||
"load": "Laden",
|
||||
"publish": "Veröffentlichen",
|
||||
"browse": "Durchsuchen",
|
||||
"increaseValueBy1": "Wert um 1 erhöhen",
|
||||
"decreaseValueBy1": "Wert um 1 verringern"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Fehler beim Erstellen des Containers: {{error}}",
|
||||
"errorImportData": "Fehler beim Importieren von Daten: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Neu: {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} wiederherstellen",
|
||||
"deleteDatabase": "{{databaseName}} löschen",
|
||||
"deleteContainer": "{{containerName}} löschen",
|
||||
"newSqlQuery": "Neue SQL-Abfrage",
|
||||
"newQuery": "Neue Abfrage",
|
||||
"openMongoShell": "Mongo Shell öffnen",
|
||||
"newShell": "Neue Shell",
|
||||
"openCassandraShell": "Cassandra Shell öffnen",
|
||||
"newStoredProcedure": "Neue gespeicherte Prozedur",
|
||||
"newUdf": "Neue UDF",
|
||||
"newTrigger": "Neuer Trigger",
|
||||
"deleteStoredProcedure": "Gespeicherte Prozedur löschen",
|
||||
"deleteTrigger": "Trigger löschen",
|
||||
"deleteUdf": "Benutzerdefinierte Funktion löschen"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Neues Element",
|
||||
"newDocument": "Neues Dokument",
|
||||
"uploadItem": "Element hochladen",
|
||||
"applyFilter": "Filter anwenden",
|
||||
"unsavedChanges": "Nicht gespeicherte Änderungen",
|
||||
"unsavedChangesMessage": "Ihre nicht gespeicherten Änderungen gehen verloren. Möchten Sie fortfahren?",
|
||||
"createDocumentFailed": "Fehler beim Erstellen des Dokuments",
|
||||
"updateDocumentFailed": "Fehler beim Aktualisieren des Dokuments",
|
||||
"documentDeleted": "Das Dokument wurde erfolgreich gelöscht.",
|
||||
"deleteDocumentDialogTitle": "Dokument löschen",
|
||||
"deleteDocumentsDialogTitle": "Dokumente löschen",
|
||||
"throttlingError": "Einige Dokumente konnten aufgrund einer Ratenbegrenzung nicht gelöscht werden. Versuchen Sie es später erneut. Um dies künftig zu vermeiden, sollten Sie den Durchsatz Ihres Containers oder Ihrer Datenbank erhöhen.",
|
||||
"deleteFailed": "Fehler beim Löschen von Dokumenten ({{error}}).",
|
||||
"missingShardProperty": "Im Dokument fehlt die Shardeigenschaft: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Fehler beim Aktualisieren des Dokumentrasters",
|
||||
"confirmDelete": "Möchten Sie {{documentName}} wirklich löschen?",
|
||||
"confirmDeleteTitle": "Löschen bestätigen",
|
||||
"selectedItems": "die ausgewählten {{count}} Elemente",
|
||||
"selectedItem": "das ausgewählte Element",
|
||||
"selectedDocuments": "die ausgewählten {{count}} Dokumente",
|
||||
"selectedDocument": "das ausgewählte Dokument",
|
||||
"deleteDocumentFailedLog": "Fehler beim Löschen des Dokuments {{documentId}} mit Statuscode {{statusCode}}.",
|
||||
"deleteSuccessLog": "{{count}} Dokument(e) wurde(n) erfolgreich gelöscht.",
|
||||
"deleteThrottledLog": "Fehler beim Löschen von {{count}} Dokument(en) aufgrund des Fehlers „Anforderung zu groß“ (429) Vorgang wird wiederholt …",
|
||||
"missingShardKeyLog": "Fehler beim Speichern des neuen Dokuments: Der Shardschlüssel des Dokuments ist nicht definiert.",
|
||||
"filterTooltip": "Geben Sie ein Abfrageprädikat ein oder wählen Sie eines aus der Liste aus.",
|
||||
"loadMore": "Mehr laden",
|
||||
"documentEditor": "Dokumenteneditor",
|
||||
"savedFilters": "Gespeicherte Filter",
|
||||
"defaultFilters": "Standardfilter",
|
||||
"abort": "Abbrechen",
|
||||
"deletingDocuments": "{{count}} Dokument(e) wird/werden gelöscht",
|
||||
"deletedDocumentsSuccess": "{{count}} Dokument(e) wurde(n) erfolgreich gelöscht.",
|
||||
"deleteAborted": "Das Löschen von Dokumenten wurde abgebrochen.",
|
||||
"failedToDeleteDocuments": "Fehler beim Löschen von {{count}} Dokument(en).",
|
||||
"requestTooLargeBase": "Einige Löschanforderungen sind aufgrund einer Ausnahme „Anforderung zu groß“ (429) fehlgeschlagen.",
|
||||
"retriedSuccessfully": "wurden jedoch erfolgreich wiederholt.",
|
||||
"retryingNow": "Der Vorgang wird jetzt wiederholt.",
|
||||
"increaseThroughputTip": "Um dies künftig zu vermeiden, sollten Sie den Durchsatz Ihres Containers oder Ihrer Datenbank erhöhen.",
|
||||
"numberOfSelectedDocuments": "Anzahl der ausgewählten Dokumente: {{count}}",
|
||||
"mongoFilterPlaceholder": "Geben Sie ein Abfrageprädikat (z. B. {\"id\":\"foo\"}) ein, wählen Sie eines aus der Dropdownliste oder lassen Sie das Feld leer, um alle Dokumente abzufragen.",
|
||||
"sqlFilterPlaceholder": "Geben Sie ein Abfrageprädikat (z. B. WHERE c.id=\"1\") ein, wählen Sie eines aus der Dropdownliste oder lassen Sie das Feld leer, um alle Dokumente abzufragen.",
|
||||
"error": "Fehler",
|
||||
"warning": "Warnung"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Abfrage ausführen",
|
||||
"executeSelection": "Auswahl ausführen",
|
||||
"saveQuery": "Abfrage speichern",
|
||||
"downloadQuery": "Abfrage herunterladen",
|
||||
"cancelQuery": "Abfrage abbrechen",
|
||||
"openSavedQueries": "Gespeicherte Abfragen öffnen",
|
||||
"vertical": "Vertikal",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "Ansicht",
|
||||
"editingQuery": "Abfrage wird bearbeitet"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID der gespeicherten Prozedur",
|
||||
"idPlaceholder": "Geben Sie die ID der neuen gespeicherten Prozedur ein.",
|
||||
"idAriaLabel": "ID der gespeicherten Prozedur",
|
||||
"body": "Text der gespeicherten Prozedur",
|
||||
"bodyAriaLabel": "Text der gespeicherten Prozedur",
|
||||
"successfulExecution": "Die gespeicherte Prozedur wurde erfolgreich ausgeführt.",
|
||||
"resultAriaLabel": "Ergebnis der gespeicherten Prozedur ausführen",
|
||||
"logsAriaLabel": "Protokolle für gespeicherte Prozedur ausführen",
|
||||
"errors": "Fehler:",
|
||||
"errorDetailsAriaLabel": "Link zu Fehlerdetails",
|
||||
"moreDetails": "Weitere Details",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Trigger-ID",
|
||||
"idPlaceholder": "Geben Sie die neue Trigger-ID ein.",
|
||||
"type": "Triggertyp",
|
||||
"operation": "Triggervorgang",
|
||||
"body": "Triggertext",
|
||||
"bodyAriaLabel": "Triggertext",
|
||||
"pre": "Vor",
|
||||
"post": "Beitrag",
|
||||
"all": "Alle",
|
||||
"operationCreate": "Erstellen",
|
||||
"operationDelete": "Löschen",
|
||||
"operationReplace": "Ersetzen"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID der benutzerdefinierten Funktion",
|
||||
"idPlaceholder": "Geben Sie die ID der neuen benutzerdefinierten Funktion ein.",
|
||||
"body": "Text der benutzerdefinierten Funktion",
|
||||
"bodyAriaLabel": "Text der benutzerdefinierten Funktion"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Nicht gespeicherte Änderungen",
|
||||
"changesWillBeLost": "Nicht gespeicherte Änderungen gehen verloren. Möchten Sie fortfahren?",
|
||||
"resolveConflictFailed": "Fehler beim Auflösen des Konflikts",
|
||||
"deleteConflictFailed": "Fehler beim Löschen des Konflikts.",
|
||||
"refreshGridFailed": "Fehler beim Aktualisieren des Dokumentrasters"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "{{databaseName}} löschen",
|
||||
"warningMessage": "Warnung! Die Aktion, die Sie ausführen möchten, kann nicht rückgängig gemacht werden. Wenn Sie fortfahren, werden diese Ressource und alle untergeordneten Ressourcen dauerhaft gelöscht.",
|
||||
"confirmPrompt": "Durch Eingabe der {{databaseName}}-ID (Name) bestätigen",
|
||||
"inputMismatch": "Eingabe {{databaseName}} Name „{{input}}“ stimmt nicht mit dem ausgewählten {{databaseName}} „{{selectedId}}“ überein.",
|
||||
"feedbackTitle": "Helfen Sie uns, Azure Cosmos DB zu verbessern!",
|
||||
"feedbackReason": "Aus welchem Grund löschen Sie diese {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "{{collectionName}} löschen",
|
||||
"confirmPrompt": "Durch Eingabe der {{collectionName}}-ID bestätigen",
|
||||
"inputMismatch": "Die Eingabe-ID {{input}} stimmt nicht mit der ausgewählten {{selectedId}} überein.",
|
||||
"feedbackTitle": "Helfen Sie uns, Azure Cosmos DB zu verbessern!",
|
||||
"feedbackReason": "Aus welchem Grund löschen Sie diese {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Datenbank {{suffix}}",
|
||||
"databaseIdLabel": "Datenbank-ID",
|
||||
"keyspaceIdLabel": "Keyspace-ID",
|
||||
"databaseIdPlaceholder": "Neue {{databaseLabel}}-ID eingeben",
|
||||
"databaseTooltip": "{{databaseLabel}} ist ein logischer Container mit mindestens einem {{collectionsLabel}}",
|
||||
"shareThroughput": "Durchsatz für {{collectionsLabel}} gemeinsam nutzen",
|
||||
"shareThroughputTooltip": "Der bereitgestellte Durchsatz auf der {{databaseLabel}}-Ebene wird von allen {{collectionsLabel}} innerhalb von {{databaseLabel}} gemeinsam genutzt.",
|
||||
"greaterThanError": "Geben Sie für den Autopilot-Durchsatz einen Wert ein, der größer als {{minValue}} ist.",
|
||||
"acknowledgeSpendError": "Bestätigen Sie die geschätzten {{period}} Ausgaben."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Neu erstellen",
|
||||
"useExisting": "Vorhandene verwenden",
|
||||
"databaseTooltip": "Eine Datenbank entspricht einem Namespace. Das ist die Verwaltungseinheit für einen Satz von {{collectionName}}.",
|
||||
"shareThroughput": "Durchsatz für {{collectionName}} gemeinsam nutzen",
|
||||
"shareThroughputTooltip": "Der auf Datenbankebene konfigurierte Durchsatz wird von allen {{collectionName}} innerhalb der Datenbank gemeinsam genutzt.",
|
||||
"collectionIdLabel": "{{collectionName}} ID",
|
||||
"collectionIdTooltip": "Eindeutiger Bezeichner für {{collectionName}} und wird für id-basiertes Routing über REST und alle SDKs verwendet.",
|
||||
"collectionIdPlaceholder": "Beispiel: {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, Beispiel {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Vorhandene {{databaseName}}-ID auswählen",
|
||||
"existingDatabasePlaceholder": "Vorhandene {{databaseName}}-ID auswählen",
|
||||
"indexing": "Indizierung",
|
||||
"turnOnIndexing": "Indizierung aktivieren",
|
||||
"automatic": "Automatisch",
|
||||
"turnOffIndexing": "Indizierung deaktivieren",
|
||||
"off": "Aus",
|
||||
"sharding": "Sharding",
|
||||
"shardingTooltip": "Shardsammlungen teilen Ihre Daten auf viele Replikatgruppen (Shards) auf, um unbegrenzte Skalierbarkeit zu erzielen. Shardsammlungen erfordern die Auswahl eines Shardschlüssels (Felds), um Ihre Daten gleichmäßig zu verteilen.",
|
||||
"unsharded": "Ohne Sharding",
|
||||
"unshardedLabel": "Ohne Sharding (20-GB-Limit)",
|
||||
"sharded": "Mit Sharding",
|
||||
"addPartitionKey": "Hierarchischen Partitionsschlüssel hinzufügen",
|
||||
"hierarchicalPartitionKeyInfo": "Mit diesem Feature können Sie Ihre Daten mit bis zu drei Schlüsselebenen partitionieren, um eine bessere Datenverteilung zu erzielen. Erfordert .NET V3, Java V4 SDK oder JavaScript V3 SDK (Vorschauversion).",
|
||||
"provisionDedicatedThroughput": "Dedizierten Durchsatz für {{collectionName}} bereitstellen",
|
||||
"provisionDedicatedThroughputTooltip": "Sie können optional dedizierten Durchsatz für eine {{collectionName}} in einer Datenbank bereitstellen, für die Durchsatz bereitgestellt wurde. Dieser dedizierte Durchsatz wird nicht für andere {{collectionNamePlural}} in der Datenbank freigegeben und zählt nicht zum Durchsatz, den Sie für die Datenbank bereitgestellt haben. Diese Durchsatzmenge wird zusätzlich zu dem Durchsatz, den Sie auf Datenbankebene bereitgestellt haben, in Rechnung gestellt.",
|
||||
"uniqueKeysPlaceholderMongo": "Durch Trennzeichen getrennte Pfade, z. B. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Durch Trennzeichen getrennte Pfade, z. B. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Eindeutigen Schlüssel hinzufügen",
|
||||
"enableAnalyticalStore": "Analysespeicher aktivieren",
|
||||
"disableAnalyticalStore": "Analysespeicher deaktivieren",
|
||||
"on": "Ein",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link ist zum Erstellen eines Analysespeichers {{collectionName}}erforderlich. Aktivieren Sie Synapse Link für dieses Cosmos DB-Konto.",
|
||||
"enable": "Aktivieren",
|
||||
"containerVectorPolicy": "Containervektorrichtlinie",
|
||||
"containerFullTextSearchPolicy": "Richtlinie für Container-Volltextsuche",
|
||||
"advanced": "Erweitert",
|
||||
"mongoIndexingTooltip": "Das Feld _id wird standardmäßig indiziert. Das Erstellen eines Platzhalterindexes für alle Felder wird für die Entwicklung empfohlen, weil dadurch Abfragen optimiert werden.",
|
||||
"createWildcardIndex": "Platzhalterindex für alle Felder erstellen",
|
||||
"legacySdkCheckbox": "Meine Anwendung verwendet eine ältere Cosmos .NET- oder Java SDK-Version (.NET V1 oder Java V2).",
|
||||
"legacySdkInfo": "Um die Kompatibilität mit älteren SDKs sicherzustellen, verwendet der erstellte Container ein Legacypartitionierungsschema, das Partitionsschlüsselwerte nur mit einer Größe von bis zu 101 Bytes unterstützt. Wenn dies aktiviert ist, können Sie keine hierarchischen Partitionsschlüssel verwenden.",
|
||||
"indexingOnInfo": "Alle Eigenschaften in Ihren Dokumenten werden standardmäßig für flexible und effiziente Abfragen indiziert.",
|
||||
"indexingOffInfo": "Die Indizierung wird deaktiviert. Empfohlen, wenn Sie keine Abfragen ausführen müssen oder nur Schlüsselwertvorgänge ausführen müssen.",
|
||||
"indexingOffWarning": "Wenn Sie diesen Container mit deaktivierter Indizierung erstellen, können Sie keine Änderungen an der Indizierungsrichtlinie vornehmen. Indizierungsänderungen sind nur an einem Container mit einer Indizierungsrichtlinie zulässig.",
|
||||
"acknowledgeSpendErrorMonthly": "Bestätigen Sie die geschätzten monatlichen Ausgaben.",
|
||||
"acknowledgeSpendErrorDaily": "Bestätigen Sie die geschätzten täglichen Ausgaben.",
|
||||
"unshardedMaxRuError": "Sammlungen ohne Sharding unterstützen bis zu 10.000 RUs.",
|
||||
"acknowledgeShareThroughputError": "Bestätigen Sie die geschätzten Kosten für diesen dedizierten Durchsatz.",
|
||||
"vectorPolicyError": "Beheben Sie Fehler in der Containervektorrichtlinie.",
|
||||
"fullTextSearchPolicyError": "Beheben Sie Fehler in der Richtlinie für die Container-Volltextsuche.",
|
||||
"addingSampleDataSet": "Beispieldataset wird hinzugefügt"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Der Shardschlüssel (Feld) wird verwendet, um Ihre Daten auf viele Replikatgruppen (Shards) aufzuteilen, um unbegrenzte Skalierbarkeit zu erzielen. Es ist wichtig, ein Feld auszuwählen, das Ihre Daten gleichmäßig verteilt.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} wird verwendet, um Daten aus Gründen der Skalierbarkeit automatisch auf Partitionen zu verteilen. Wählen Sie in Ihrem JSON-Dokument eine Eigenschaft, die eine große Bandbreite an Werten aufweist und das Anforderungsvolumen gleichmäßig verteilt.",
|
||||
"partitionKeyTooltipSqlSuffix": " Bei kleinen Workloads mit vielen Lese- oder Schreibvorgängen beliebiger Größe ist die ID häufig eine gute Wahl.",
|
||||
"shardKeyLabel": "Shardschlüssel",
|
||||
"partitionKeyLabel": "Partitionsschlüssel",
|
||||
"shardKeyPlaceholder": "Beispiel: categoryId",
|
||||
"partitionKeyPlaceholderDefault": "Beispiel: /address",
|
||||
"partitionKeyPlaceholderFirst": "Erforderlich – erster Partitionsschlüssel, z. B. /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "zweiter Partitionsschlüssel, z. B. /UserId",
|
||||
"partitionKeyPlaceholderThird": "Dritter Partitionsschlüssel, z. B. /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "Beispiel: /address/zipCode",
|
||||
"uniqueKeysTooltip": "Eindeutige Schlüssel bieten Entwicklern die Möglichkeit, ihrer Datenbank eine Ebene der Datenintegrität hinzuzufügen. Indem Sie beim Erstellen eines Containers eine Richtlinie für eindeutige Schlüssel erstellen, stellen Sie die Eindeutigkeit eines oder mehrerer Werte pro Partitionsschlüssel sicher.",
|
||||
"uniqueKeysLabel": "Eindeutige Schlüssel",
|
||||
"analyticalStoreLabel": "Analysespeicher",
|
||||
"analyticalStoreTooltip": "Aktivieren Sie die Analysespeicherfunktion, um Analysen ihrer operativen Daten nahezu in Echtzeit durchzuführen, ohne die Leistung von Transaktionsworkloads zu beeinträchtigen.",
|
||||
"analyticalStoreDescription": "Aktivieren Sie die Analysespeicherfunktion, um Analysen ihrer operativen Daten nahezu in Echtzeit durchzuführen, ohne die Leistung von Transaktionsworkloads zu beeinträchtigen.",
|
||||
"vectorPolicyTooltip": "Beschreiben Sie alle Eigenschaften in Ihren Daten, die Vektoren enthalten, damit sie für Ähnlichkeitsabfragen verfügbar gemacht werden können."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Seitenoptionen",
|
||||
"pageOptionsDescription": "Wählen Sie „Benutzerdefiniert“ aus, um eine feste Anzahl anzuzeigender Abfrageergebnisse anzugeben, oder wählen Sie „Unbegrenzt“ aus, um beliebig viele Abfrageergebnisse pro Seite anzuzeigen.",
|
||||
"queryResultsPerPage": "Abfrageergebnisse pro Seite",
|
||||
"queryResultsPerPageTooltip": "Geben Sie die Anzahl der Abfrageergebnisse ein, die pro Seite angezeigt werden sollen.",
|
||||
"customQueryItemsPerPage": "Benutzerdefinierte Abfrageelemente pro Seite",
|
||||
"custom": "Benutzerdefiniert",
|
||||
"unlimited": "Unbegrenzt",
|
||||
"entraIdRbac": "RBAC für Entra ID aktivieren",
|
||||
"entraIdRbacDescription": "Wählen Sie „Automatisch“ aus, um RBAC für Entra ID automatisch zu aktivieren. True/False, um das Aktivieren/Deaktivieren von RBAC für Entra ID zu erzwingen.",
|
||||
"true": "Wahr",
|
||||
"false": "Falsch",
|
||||
"regionSelection": "Bereichsauswahl",
|
||||
"regionSelectionDescription": "Ändert die Region, die der Cosmos-Client für den Zugriff auf das Konto verwendet.",
|
||||
"selectRegion": "Region auswählen",
|
||||
"selectRegionTooltip": "Ändert den Kontoendpunkt, der zum Ausführen von Clientvorgängen verwendet wird.",
|
||||
"globalDefault": "Global (Standard)",
|
||||
"readWrite": "(Lesen/Schreiben)",
|
||||
"read": "(Lesen)",
|
||||
"queryTimeout": "Abfragetimeout",
|
||||
"queryTimeoutDescription": "Wenn eine Abfrage ein angegebenes Zeitlimit erreicht, wird ein Popup mit einer Option zum Abbrechen der Abfrage angezeigt, es sei denn, der automatische Abbruch wurde aktiviert.",
|
||||
"enableQueryTimeout": "Abfragetimeout aktivieren",
|
||||
"queryTimeoutMs": "Abfragetimeout (ms)",
|
||||
"automaticallyCancelQuery": "Abfrage nach Timeout automatisch abbrechen",
|
||||
"ruLimit": "RU-Limit",
|
||||
"ruLimitDescription": "Wenn eine Abfrage ein konfiguriertes RU-Limit überschreitet, wird die Abfrage abgebrochen.",
|
||||
"enableRuLimit": "RU-Limit aktivieren",
|
||||
"ruLimitLabel": "RU-Limit (RU)",
|
||||
"defaultQueryResults": "Standardansicht der Abfrageergebnisse",
|
||||
"defaultQueryResultsDescription": "Wählen Sie die Standardansicht aus, die zum Anzeigen von Abfrageergebnissen verwendet werden soll.",
|
||||
"retrySettings": "Wiederholungseinstellungen",
|
||||
"retrySettingsDescription": "Wiederholungsrichtlinie, die gedrosselten Anforderungen während CosmosDB-Abfragen zugeordnet ist.",
|
||||
"maxRetryAttempts": "Max. Wiederholungsversuche",
|
||||
"maxRetryAttemptsTooltip": "Maximale Anzahl von Wiederholungen, die für eine Anforderung ausgeführt werden sollen. Standardwert: 9.",
|
||||
"fixedRetryInterval": "Festes Wiederholungsintervall (ms)",
|
||||
"fixedRetryIntervalTooltip": "Festes Wiederholungsintervall in Millisekunden, das zwischen den einzelnen Wiederholungsversuchen abgewartet wird, wobei das als Teil der Antwort zurückgegebene retryAfter ignoriert wird. Der Standardwert beträgt 0 Millisekunden.",
|
||||
"maxWaitTime": "Maximale Wartezeit (s)",
|
||||
"maxWaitTimeTooltip": "Maximale Wartezeit in Sekunden für eine Anforderung während der Wiederholungsversuche. Standardwert: 30 Sekunden.",
|
||||
"enableContainerPagination": "Containerpaginierung aktivieren",
|
||||
"enableContainerPaginationDescription": "Laden Sie jeweils 50 Container. Derzeit werden Container nicht in alphanumerischer Reihenfolge abgerufen.",
|
||||
"enableCrossPartitionQuery": "Partitionsübergreifende Abfrage aktivieren",
|
||||
"enableCrossPartitionQueryDescription": "Senden Sie während der Ausführung einer Abfrage mehrere Anforderungen. Wenn die Abfrage nicht auf einen einzelnen Partitionsschlüsselwert beschränkt ist, sind mehrere Anforderungen erforderlich.",
|
||||
"maxDegreeOfParallelism": "Max. Grad an Parallelität",
|
||||
"maxDegreeOfParallelismDescription": "Ruft die Anzahl gleichzeitiger Vorgänge ab, die während der parallelen Abfrageausführung clientseitig ausgeführt werden, oder legt diese fest. Ein positiver Eigenschaftswert schränkt die Anzahl gleichzeitiger Vorgänge auf den festgelegten Wert ein. Wenn der Wert auf weniger als 0 festgelegt ist, entscheidet das System automatisch, wie viele gleichzeitige Vorgänge ausgeführt werden sollen.",
|
||||
"maxDegreeOfParallelismQuery": "Bis zum maximalen Grad an Parallelität abfragen.",
|
||||
"priorityLevel": "Prioritätsstufe",
|
||||
"priorityLevelDescription": "Legt die Prioritätsstufe für Datenebenenanforderungen von Daten-Explorer fest, wenn die prioritätsbasierte Ausführung verwendet wird. Wenn „Keine“ ausgewählt ist, gibt Daten-Explorer keine Prioritätsstufe an, und die serverseitige Standardprioritätsstufe wird verwendet.",
|
||||
"displayGremlinQueryResults": "Gremlin-Abfrageergebnisse anzeigen als:",
|
||||
"displayGremlinQueryResultsDescription": "Wählen Sie „Graph“ aus, um die Abfrageergebnisse automatisch als Graph zu visualisieren, oder wählen Sie „JSON“ aus, um die Ergebnisse als JSON anzuzeigen.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Automatische Graphvisualisierung",
|
||||
"enableSampleDatabase": "Beispieldatenbank aktivieren",
|
||||
"enableSampleDatabaseDescription": "Dies ist eine Beispieldatenbank und Sammlung mit synthetischen Produktdaten, die Sie mithilfe von NoSQL-Abfragen untersuchen können. Dies wird als eine weitere Datenbank auf der Daten-Explorer-Benutzeroberfläche angezeigt und von Microsoft erstellt und kostenlos für Sie verwaltet.",
|
||||
"enableSampleDbAriaLabel": "Beispieldatenbank für die Abfrageuntersuchung aktivieren",
|
||||
"guidRepresentation": "GUID-Darstellung",
|
||||
"guidRepresentationDescription": "GuidRepresentation in MongoDB bezieht sich darauf, wie GUIDs (Globally Unique Identifiers) serialisiert und deserialisiert werden, wenn sie in BSON-Dokumenten gespeichert werden. Dies gilt für alle Dokumentvorgänge.",
|
||||
"advancedSettings": "Erweiterte Einstellungen",
|
||||
"ignorePartitionKey": "Partitionsschlüssel bei Dokumentaktualisierung ignorieren",
|
||||
"ignorePartitionKeyTooltip": "Wenn diese Option aktiviert ist, wird der Partitionsschlüsselwert nicht verwendet, um das Dokument während Aktualisierungsvorgängen zu finden. Verwenden Sie diese Option nur, wenn Dokumentaktualisierungen aufgrund eines ungewöhnlichen Partitionsschlüssels fehlschlagen.",
|
||||
"clearHistory": "Verlauf löschen",
|
||||
"clearHistoryConfirm": "Möchten Sie fortfahren?",
|
||||
"clearHistoryDescription": "Durch diese Aktion werden alle Anpassungen für dieses Konto in diesem Browser gelöscht, einschließlich:",
|
||||
"clearHistoryTabLayout": "Setzen Sie Ihre benutzerdefinierten Registerkartenlayouts zurück, einschließlich der Splitterpositionen",
|
||||
"clearHistoryTableColumns": "Löschen Sie Ihre Tabellenspalteneinstellungen, einschließlich aller benutzerdefinierten Spalten",
|
||||
"clearHistoryFilters": "Filterverlauf löschen",
|
||||
"clearHistoryRegion": "Bereichsauswahl auf „Global“ zurücksetzen",
|
||||
"increaseValueBy1000": "Wert um 1000 erhöhen",
|
||||
"decreaseValueBy1000": "Wert um 1000 verringern",
|
||||
"none": "Kein(e)",
|
||||
"low": "Niedrig",
|
||||
"high": "Hoch",
|
||||
"automatic": "Automatisch",
|
||||
"enhancedQueryControl": "Erweitertes Abfragesteuerelement",
|
||||
"enableQueryControl": "Abfragesteuerelement aktivieren",
|
||||
"explorerVersion": "Explorer-Version",
|
||||
"accountId": "Konto-ID",
|
||||
"sessionId": "Sitzungs-ID",
|
||||
"popupsDisabledError": "Wir konnten keine Autorisierung für dieses Konto einrichten, weil Popups im Browser deaktiviert wurden.\nAktivieren Sie Popups für diese Website, und klicken Sie auf die Schaltfläche „Anmeldung für Entra-ID“.",
|
||||
"failedToAcquireTokenError": "Fehler beim automatischen Abrufen des Autorisierungstokens. Klicken Sie auf die Schaltfläche „Anmeldung für Entra-ID“, um RBAC-Vorgänge für Entra ID zu aktivieren."
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Abfrage speichern",
|
||||
"setupCostMessage": "Aus Compliancegründen speichern wir Abfragen in einem Container in Ihrem Azure Cosmos-Konto in einer separaten Datenbank namens „{{databaseName}}“. Um fortzufahren, müssen wir einen Container in Ihrem Konto erstellen. Die geschätzten zusätzlichen Kosten betragen 0,77 USD pro Tag.",
|
||||
"completeSetup": "Einrichtung abschließen",
|
||||
"noQueryNameError": "Kein Abfragename angegeben",
|
||||
"invalidQueryContentError": "Ungültiger Abfrageinhalt angegeben",
|
||||
"failedToSaveQueryError": "Fehler beim Speichern der Abfrage {{queryName}}",
|
||||
"failedToSetupContainerError": "Fehler beim Einrichten eines Containers für gespeicherte Abfragen",
|
||||
"accountNotSetupError": "Fehler beim Speichern der Abfrage: Konto zum Speichern von Abfragen nicht eingerichtet",
|
||||
"name": "Name"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Keine Datei angegeben",
|
||||
"failedToLoadQueryError": "Fehler beim Laden der Abfrage.",
|
||||
"failedToLoadQueryFromFileError": "Fehler beim Laden der Abfrage aus der Datei {{fileName}}",
|
||||
"selectFilesToOpen": "Abfragedokument auswählen",
|
||||
"browseFiles": "Durchsuchen"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Eingabeparameter eingeben (falls vorhanden)",
|
||||
"key": "Schlüssel",
|
||||
"param": "Param.",
|
||||
"partitionKeyValue": "Partitionsschlüsselwert",
|
||||
"value": "Wert",
|
||||
"addNewParam": "Neuen Parameter hinzufügen",
|
||||
"addParam": "Parameter hinzufügen",
|
||||
"deleteParam": "Parameter löschen",
|
||||
"invalidParamError": "Ungültiger Parameter angegeben: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Ungültiger Parameter angegeben: {{invalidParam}} ist kein gültiger Literalwert.",
|
||||
"stringType": "Zeichenfolge",
|
||||
"customType": "Benutzerdefiniert"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Es wurden keine Dateien angegeben. Geben Sie mindestens eine Datei ein.",
|
||||
"selectJsonFiles": "JSON-Dateien auswählen",
|
||||
"selectJsonFilesTooltip": "Wählen Sie mindestens eine JSON-Datei zum Hochladen aus. Jede Datei kann ein einzelnes JSON-Dokument oder ein Array von JSON-Dokumenten enthalten. Die kombinierte Größe aller Dateien in einem einzelnen Uploadvorgang muss kleiner als 2 MB sein. Sie können mehrere Uploadvorgänge für größere Datasets ausführen.",
|
||||
"fileNameColumn": "DATEINAME",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} erstellt, {{numThrottled}} gedrosselt, {{numFailed}} Fehler",
|
||||
"uploadedFiles": "Hochgeladene Dateien"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Fehler beim Kopieren von {{name}} nach {{destination}}",
|
||||
"uploadFailedError": "Fehler beim Hochladen von „{{name}}“",
|
||||
"location": "Speicherort",
|
||||
"locationAriaLabel": "Speicherort",
|
||||
"selectLocation": "Notizbuchspeicherort zum Kopieren auswählen",
|
||||
"name": "Name"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Fehler beim Veröffentlichen von {{notebookName}} im Katalog",
|
||||
"publishDescription": "Nach der Veröffentlichung wird dieses Notebook im öffentlichen Katalog Azure Cosmos DB Notebooks angezeigt. Stellen Sie sicher, dass Sie alle vertraulichen Daten oder Ausgaben vor der Veröffentlichung entfernt haben.",
|
||||
"publishPrompt": "Möchten Sie „{{name}}“ im Katalog veröffentlichen und freigeben?",
|
||||
"coverImage": "Titelbild",
|
||||
"coverImageUrl": "Titelbild-URL",
|
||||
"name": "Name",
|
||||
"description": "Beschreibung",
|
||||
"tags": "Kategorien",
|
||||
"tagsPlaceholder": "Optionales Tag 1, optionales Tag 2",
|
||||
"preview": "Vorschau",
|
||||
"urlType": "URL",
|
||||
"customImage": "Benutzerdefiniertes Image",
|
||||
"takeScreenshot": "Screenshot erstellen",
|
||||
"useFirstDisplayOutput": "Erste Anzeigeausgabe verwenden",
|
||||
"failedToCaptureOutput": "Fehler beim Erfassen der ersten Ausgabe",
|
||||
"outputDoesNotExist": "Für keine der Zellen ist eine Ausgabe vorhanden.",
|
||||
"failedToConvertError": "Fehler beim Konvertieren von {{fileName}} in das Base64-Format",
|
||||
"failedToUploadError": "Fehler beim Hochladen von „{{fileName}}“"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Fehler beim Starten des Datenübertragungsauftrags",
|
||||
"suboptimalPartitionKeyError": "Warnung: Das System hat festgestellt, dass Ihre Sammlung möglicherweise keinen optimalen Partitionsschlüssel verwendet.",
|
||||
"description": "Wenn Sie den Partitionsschlüssel eines Containers ändern, müssen Sie einen Zielcontainer mit dem richtigen Partitionsschlüssel erstellen. Sie können auch einen vorhandenen Zielcontainer auswählen.",
|
||||
"sourceContainerId": "Quell-{{collectionName}}-ID",
|
||||
"destinationContainerId": "Ziel-{{collectionName}}-ID",
|
||||
"collectionIdTooltip": "Eindeutiger Bezeichner für {{collectionName}} und wird für id-basiertes Routing über REST und alle SDKs verwendet.",
|
||||
"collectionIdPlaceholder": "Beispiel: {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, Beispiel {{collectionName}}1",
|
||||
"existingContainers": "Vorhandene Container",
|
||||
"partitionKeyWarning": "Der Zielcontainer darf nicht bereits vorhanden sein. Daten-Explorer erstellt einen neuen Zielcontainer für Sie."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Keyspacename",
|
||||
"keyspaceTooltip": "Wählen Sie einen vorhandenen Keyspace aus, oder geben Sie eine neue Keyspace-ID ein.",
|
||||
"tableIdLabel": "Geben Sie den CQL-Befehl ein, um die Tabelle zu erstellen.",
|
||||
"enterTableId": "Tabellen-ID eingeben",
|
||||
"tableSchemaAriaLabel": "Tabellenschema",
|
||||
"provisionDedicatedThroughput": "Dedizierten Durchsatz für diese Tabelle bereitstellen",
|
||||
"provisionDedicatedThroughputTooltip": "Sie können optional dedizierten Durchsatz für eine Tabelle in einem Keyspace bereitstellen, in dem Durchsatz bereitgestellt wurde. Diese dedizierte Durchsatzmenge wird nicht für andere Tabellen im Keyspace freigegeben und wird nicht auf den Durchsatz angerechnet, den Sie für den Keyspace bereitgestellt haben. Diese Durchsatzmenge wird zusätzlich zu dem Durchsatz in Rechnung gestellt, den Sie auf Keyspaceebene bereitgestellt haben."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Eigenschaft hinzufügen",
|
||||
"addRow": "Zeile hinzufügen",
|
||||
"addEntity": "Entität hinzufügen",
|
||||
"back": "zurück",
|
||||
"nullFieldsWarning": "Warnung: Nullfelder werden nicht zum Bearbeiten angezeigt.",
|
||||
"propertyEmptyError": "{{property}} darf nicht leer sein. Geben Sie einen Wert für {{property}} ein.",
|
||||
"whitespaceError": "{{property}} darf keine Leerzeichen enthalten. Geben Sie einen Wert für {{property}} ohne Leerzeichen ein.",
|
||||
"propertyTypeEmptyError": "Der Eigenschaftentyp darf nicht leer sein. Wählen Sie einen Typ aus der Dropdownliste für die Eigenschaft {{property}} aus."
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Wählen Sie die Spalten aus, die abgefragt werden sollen.",
|
||||
"availableColumns": "Verfügbare Spalten"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Wählen Sie aus, welche Spalten in der Ansicht der Elemente in Ihrem Container angezeigt werden sollen.",
|
||||
"searchFields": "Suchfelder",
|
||||
"reset": "Zurücksetzen",
|
||||
"partitionKeySuffix": " (Partitionsschlüssel)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Eigenschaft hinzufügen"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Container-ID des globalen sekundären Indexes",
|
||||
"globalSecondaryIndexIdPlaceholder": "Beispiel: indexbyEmailId",
|
||||
"projectionQuery": "Projektionsabfrage",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Erfahren Sie mehr über das Definieren globaler sekundärer Indizes.",
|
||||
"disabledTitle": "Ein globaler sekundärer Index wird bereits erstellt. Warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie einen weiteren erstellen."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Die Eingabe {{input}} stimmt nicht mit der ausgewählten {{selectedId}} überein."
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informationen",
|
||||
"moreDetails": "Weitere Details"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -441,11 +441,7 @@
|
||||
"shareThroughput": "Share throughput across {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Provisioned throughput at the {{databaseLabel}} level will be shared across all {{collectionsLabel}} within the {{databaseLabel}}.",
|
||||
"greaterThanError": "Please enter a value greater than {{minValue}} for autopilot throughput",
|
||||
"acknowledgeSpendError": "Please acknowledge the estimated {{period}} spend.",
|
||||
"acknowledgeSpendErrorMonthly": "Please acknowledge the estimated monthly spend.",
|
||||
"acknowledgeSpendErrorDaily": "Please acknowledge the estimated daily spend.",
|
||||
"provisionSharedThroughputTitle": "Provision shared throughput",
|
||||
"provisionThroughputLabel": "Provision throughput"
|
||||
"acknowledgeSpendError": "Please acknowledge the estimated {{period}} spend."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Create new",
|
||||
@@ -497,31 +493,7 @@
|
||||
"acknowledgeShareThroughputError": "Please acknowledge the estimated cost of this dedicated throughput.",
|
||||
"vectorPolicyError": "Please fix errors in container vector policy",
|
||||
"fullTextSearchPolicyError": "Please fix errors in container full text search policy",
|
||||
"addingSampleDataSet": "Adding sample data set",
|
||||
"databaseFieldLabelName": "Database name",
|
||||
"databaseFieldLabelId": "Database id",
|
||||
"newDatabaseIdPlaceholder": "Type a new database id",
|
||||
"newDatabaseIdAriaLabel": "New database id, Type a new database id",
|
||||
"createNewDatabaseAriaLabel": "Create new database",
|
||||
"useExistingDatabaseAriaLabel": "Use existing database",
|
||||
"chooseExistingDatabase": "Choose an existing database",
|
||||
"teachingBubble": {
|
||||
"step1Headline": "Create sample database",
|
||||
"step1Body": "Database is the parent of a container. You can create a new database or use an existing one. In this tutorial we are creating a new database named SampleDB.",
|
||||
"step1LearnMore": "Learn more about resources.",
|
||||
"step2Headline": "Setting throughput",
|
||||
"step2Body": "Cosmos DB recommends sharing throughput across database. Autoscale will give you a flexible amount of throughput based on the max RU/s set (Request Units).",
|
||||
"step2LearnMore": "Learn more about RU/s.",
|
||||
"step3Headline": "Naming container",
|
||||
"step3Body": "Name your container",
|
||||
"step4Headline": "Setting partition key",
|
||||
"step4Body": "Last step - you will need to define a partition key for your collection. /address was chosen for this particular example. A good partition key should have a wide range of possible value",
|
||||
"step4CreateContainer": "Create container",
|
||||
"step5Headline": "Creating sample container",
|
||||
"step5Body": "A sample container is now being created and we are adding sample data for you. It should take about 1 minute.",
|
||||
"step5BodyFollowUp": "Once the sample container is created, review your sample dataset and follow next steps",
|
||||
"stepOfTotal": "Step {{current}} of {{total}}"
|
||||
}
|
||||
"addingSampleDataSet": "Adding sample data set"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "The shard key (field) is used to split your data across many replica sets (shards) to achieve unlimited scalability. It's critical to choose a field that will evenly distribute your data.",
|
||||
@@ -791,10 +763,7 @@
|
||||
"howWeCalculate": "How we calculate this",
|
||||
"updatedCostPerMonth": "Updated cost per month",
|
||||
"currentCostPerMonth": "Current cost per month",
|
||||
"perRu": "/RU",
|
||||
"perHour": "/hr",
|
||||
"perDay": "/day",
|
||||
"perMonth": "/mo"
|
||||
"perRu": "/RU"
|
||||
},
|
||||
"throughput": {
|
||||
"manualToAutoscaleDisclaimer": "The starting autoscale max RU/s will be determined by the system, based on the current manual throughput settings and storage of your resource. After autoscale has been enabled, you can change the max RU/s.",
|
||||
@@ -889,9 +858,7 @@
|
||||
"freeTierLearnMore": "Learn more.",
|
||||
"throughputRuS": "Throughput (RU/s)",
|
||||
"autoScaleCustomSettings": "Your account has custom settings that prevents setting throughput at the container level. Please work with your Cosmos DB engineering team point of contact to make changes.",
|
||||
"keyspaceSharedThroughput": "This table shared throughput is configured at the keyspace",
|
||||
"throughputRangeLabel": "Throughput ({{min}} - {{max}} RU/s)",
|
||||
"unlimited": "unlimited"
|
||||
"keyspaceSharedThroughput": "This table shared throughput is configured at the keyspace"
|
||||
},
|
||||
"partitionKeyEditor": {
|
||||
"changePartitionKey": "Change {{partitionKeyName}}",
|
||||
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Cargar",
|
||||
"connect": "Conectar",
|
||||
"remove": "Quitar",
|
||||
"load": "Cargar",
|
||||
"publish": "Publicar",
|
||||
"browse": "Examinar",
|
||||
"increaseValueBy1": "Aumentar valor en 1",
|
||||
"decreaseValueBy1": "Disminuir valor en 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Error al crear el contenedor: {{error}}",
|
||||
"errorImportData": "No se pudieron importar los datos: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nuevo {{containerName}}",
|
||||
"restoreContainer": "Restaurar {{containerName}}",
|
||||
"deleteDatabase": "Eliminar {{databaseName}}",
|
||||
"deleteContainer": "Eliminar {{containerName}}",
|
||||
"newSqlQuery": "Nueva consulta de SQL",
|
||||
"newQuery": "Nueva consulta",
|
||||
"openMongoShell": "Abrir Shell de Mongo",
|
||||
"newShell": "Nuevo shell",
|
||||
"openCassandraShell": "Abrir Shell de Cassandra",
|
||||
"newStoredProcedure": "Nuevo procedimiento almacenado",
|
||||
"newUdf": "Nueva UDF",
|
||||
"newTrigger": "Nuevo desencadenador",
|
||||
"deleteStoredProcedure": "Eliminar procedimiento almacenado",
|
||||
"deleteTrigger": "Eliminar desencadenador",
|
||||
"deleteUdf": "Eliminar función definida por el usuario"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nuevo elemento",
|
||||
"newDocument": "Nuevo documento",
|
||||
"uploadItem": "Cargar elemento",
|
||||
"applyFilter": "Aplicar filtro",
|
||||
"unsavedChanges": "Cambios sin guardar",
|
||||
"unsavedChangesMessage": "Se perderán los cambios no guardados. ¿Quiere continuar?",
|
||||
"createDocumentFailed": "Error al crear el documento",
|
||||
"updateDocumentFailed": "Error al actualizar el documento",
|
||||
"documentDeleted": "El documento se eliminó correctamente.",
|
||||
"deleteDocumentDialogTitle": "Eliminar documento",
|
||||
"deleteDocumentsDialogTitle": "Eliminar documentos",
|
||||
"throttlingError": "Algunos documentos no se pudieron eliminar debido a un error de limitación de velocidad. Inténtelo de nuevo más tarde. Para evitar esto en el futuro, considere la posibilidad de aumentar el rendimiento en el contenedor o la base de datos.",
|
||||
"deleteFailed": "Error al eliminar documentos ({{error}})",
|
||||
"missingShardProperty": "El documento carece de la propiedad de partición: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Error al actualizar la cuadrícula de documentos",
|
||||
"confirmDelete": "¿Seguro que desea eliminar {{documentName}}?",
|
||||
"confirmDeleteTitle": "Confirmar eliminación",
|
||||
"selectedItems": "los elementos seleccionados {{count}}",
|
||||
"selectedItem": "el elemento seleccionado",
|
||||
"selectedDocuments": "los documentos seleccionados {{count}} ",
|
||||
"selectedDocument": "el documento seleccionado",
|
||||
"deleteDocumentFailedLog": "No se pudo eliminar el documento {{documentId}} con código de estado {{statusCode}}",
|
||||
"deleteSuccessLog": "Documentos eliminados {{count}} correctamente",
|
||||
"deleteThrottledLog": "No se pudieron eliminar {{count}} documentos debido al error \"Solicitud demasiado grande\" (429). Reintentando...",
|
||||
"missingShardKeyLog": "No se pudo guardar el nuevo documento: clave de partición de documento no definida",
|
||||
"filterTooltip": "Escriba un predicado de consulta o elija uno de la lista.",
|
||||
"loadMore": "Cargar más",
|
||||
"documentEditor": "Editor de documentos",
|
||||
"savedFilters": "Filtros guardados",
|
||||
"defaultFilters": "Filtros predeterminados",
|
||||
"abort": "Anular",
|
||||
"deletingDocuments": "Eliminando {{count}} documentos",
|
||||
"deletedDocumentsSuccess": "Los documentos se eliminaron {{count}} correctamente.",
|
||||
"deleteAborted": "Se anuló la eliminación de documentos.",
|
||||
"failedToDeleteDocuments": "No se pudieron eliminar {{count}} documentos.",
|
||||
"requestTooLargeBase": "Error en algunas solicitudes de eliminación debido a una excepción \"Solicitud demasiado grande\" (429)",
|
||||
"retriedSuccessfully": "pero se reintentaron correctamente.",
|
||||
"retryingNow": "Reintentar ahora.",
|
||||
"increaseThroughputTip": "Para evitar esto en el futuro, considere la posibilidad de aumentar el rendimiento en el contenedor o la base de datos.",
|
||||
"numberOfSelectedDocuments": "Número de documentos seleccionados: {{count}}",
|
||||
"mongoFilterPlaceholder": "Escriba un predicado de consulta (por ejemplo, {\"id\":\"foo\"}), elija uno de la lista desplegable o déjelo vacío para consultar todos los documentos.",
|
||||
"sqlFilterPlaceholder": "Escriba un predicado de consulta (por ejemplo, WHERE c.id=\"1\"), elija uno de la lista desplegable o déjelo vacío para consultar todos los documentos.",
|
||||
"error": "Error",
|
||||
"warning": "Advertencia"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Ejecutar la consulta",
|
||||
"executeSelection": "Ejecutar selección",
|
||||
"saveQuery": "Guardar consulta",
|
||||
"downloadQuery": "Descargar consulta",
|
||||
"cancelQuery": "Cancelar consulta",
|
||||
"openSavedQueries": "Abrir consultas guardadas",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "Vista",
|
||||
"editingQuery": "Editar consulta"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Id. de procedimiento almacenado",
|
||||
"idPlaceholder": "Escriba el nuevo identificador de procedimiento almacenado",
|
||||
"idAriaLabel": "Id. de procedimiento almacenado",
|
||||
"body": "Cuerpo del procedimiento almacenado",
|
||||
"bodyAriaLabel": "Cuerpo del procedimiento almacenado",
|
||||
"successfulExecution": "Ejecución correcta del procedimiento almacenado",
|
||||
"resultAriaLabel": "Ejecutar resultado de procedimiento almacenado",
|
||||
"logsAriaLabel": "Ejecución de registros de procedimientos almacenados",
|
||||
"errors": "Errores:",
|
||||
"errorDetailsAriaLabel": "Vínculo de detalles del error",
|
||||
"moreDetails": "Más detalles",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Id. de desencadenador",
|
||||
"idPlaceholder": "Escriba el nuevo identificador del desencadenador",
|
||||
"type": "Tipo de desencadenador",
|
||||
"operation": "Operación del desencadenador",
|
||||
"body": "Cuerpo del desencadenador",
|
||||
"bodyAriaLabel": "Cuerpo del desencadenador",
|
||||
"pre": "Previo",
|
||||
"post": "Publicar",
|
||||
"all": "Todo",
|
||||
"operationCreate": "Crear",
|
||||
"operationDelete": "Eliminar",
|
||||
"operationReplace": "Reemplazar"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Id. de función definida por el usuario",
|
||||
"idPlaceholder": "Escriba el nuevo identificador de función definido por el usuario",
|
||||
"body": "Cuerpo de la función definida por el usuario",
|
||||
"bodyAriaLabel": "Cuerpo de la función definida por el usuario"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Cambios sin guardar",
|
||||
"changesWillBeLost": "Se perderán los cambios. ¿Quiere continuar?",
|
||||
"resolveConflictFailed": "Error al resolver el conflicto",
|
||||
"deleteConflictFailed": "Error al eliminar el conflicto",
|
||||
"refreshGridFailed": "Error al actualizar la cuadrícula de documentos"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Eliminar {{databaseName}}",
|
||||
"warningMessage": "¡Advertencia! La acción que va a realizar no se puede deshacer. Si continúa, se eliminará permanentemente este recurso y todos sus recursos secundarios.",
|
||||
"confirmPrompt": "Confirme escribiendo el {{databaseName}} identificador (nombre)",
|
||||
"inputMismatch": "El nombre de entrada {{databaseName}} \"{{input}}\" no coincide con el {{databaseName}} seleccionado \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Ayúdenos a mejorar Azure Cosmos DB.",
|
||||
"feedbackReason": "¿Cuál es el motivo por el que está eliminando esto {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Eliminar {{collectionName}}",
|
||||
"confirmPrompt": "Confirme escribiendo el {{collectionName}} id.",
|
||||
"inputMismatch": "El id de entrada {{input}} no coincide con el seleccionado {{selectedId}}",
|
||||
"feedbackTitle": "Ayúdenos a mejorar Azure Cosmos DB.",
|
||||
"feedbackReason": "¿Cuál es el motivo por el que está eliminando esto {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Base de datos {{suffix}}",
|
||||
"databaseIdLabel": "Id. de base de datos",
|
||||
"keyspaceIdLabel": "Id. de espacio de claves",
|
||||
"databaseIdPlaceholder": "Escriba un nuevo {{databaseLabel}} identificador",
|
||||
"databaseTooltip": "Un {{databaseLabel}} es un contenedor lógico de uno o varios {{collectionsLabel}}",
|
||||
"shareThroughput": "Compartir el rendimiento entre {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "El rendimiento aprovisionado en el {{databaseLabel}} nivel se compartirá entre todos {{collectionsLabel}} dentro de {{databaseLabel}}.",
|
||||
"greaterThanError": "Escriba un valor mayor que para el {{minValue}} rendimiento de Autopilot",
|
||||
"acknowledgeSpendError": "Confirme el gasto estimado {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Crear nuevo",
|
||||
"useExisting": "Usar existente",
|
||||
"databaseTooltip": "Una base de datos es análoga a un espacio de nombres. Es la unidad de administración de un conjunto de {{collectionName}}.",
|
||||
"shareThroughput": "Compartir el rendimiento entre {{collectionName}}",
|
||||
"shareThroughputTooltip": "El rendimiento configurado en el nivel de base de datos se compartirá en toda {{collectionName}} la base de datos.",
|
||||
"collectionIdLabel": "{{collectionName}} Id. ",
|
||||
"collectionIdTooltip": "Identificador único de y usado para el {{collectionName}} enrutamiento basado en identificadores a través de REST y todos los SDK.",
|
||||
"collectionIdPlaceholder": "por ejemplo, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id., ejemplo {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Elegir id. existente {{databaseName}} ",
|
||||
"existingDatabasePlaceholder": "Elegir id. existente {{databaseName}} ",
|
||||
"indexing": "Indexación",
|
||||
"turnOnIndexing": "Activar la indexación",
|
||||
"automatic": "Automático",
|
||||
"turnOffIndexing": "Desactivar la indexación",
|
||||
"off": "Desactivado",
|
||||
"sharding": "Particionamiento",
|
||||
"shardingTooltip": "Las colecciones particionadas dividen sus datos entre varios conjuntos de réplicas (shards) para lograr una escalabilidad ilimitada. Las colecciones particionadas requieren elegir una clave de partición (campo) para distribuir uniformemente los datos.",
|
||||
"unsharded": "Sin cambios",
|
||||
"unshardedLabel": "Sin cambios (límite de 20 GB)",
|
||||
"sharded": "Particionado",
|
||||
"addPartitionKey": "Agregar clave de partición jerárquica",
|
||||
"hierarchicalPartitionKeyInfo": "Esta característica permite particionar los datos con hasta tres niveles de claves para una mejor distribución de los datos. Requiere .NET V3, el SDK de Java V4, o la versión preliminar del SDK de JavaScript V3.",
|
||||
"provisionDedicatedThroughput": "Aprovisionar rendimiento dedicado para esto {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionalmente, puede aprovisionar un rendimiento dedicado para una {{collectionName}} base de datos que tenga el rendimiento aprovisionado. Esta cantidad de rendimiento dedicado no se compartirá con otros {{collectionNamePlural}} usuarios de la base de datos y no se contabilizará para el rendimiento aprovisionado para la base de datos. Esta cantidad de rendimiento se facturará además de la cantidad de rendimiento que aprovisionó en el nivel de base de datos.",
|
||||
"uniqueKeysPlaceholderMongo": "Rutas de acceso separadas por comas, por ejemplo, firstName, address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Rutas de acceso separadas por comas, por ejemplo, /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Agregar clave única",
|
||||
"enableAnalyticalStore": "Habilitar almacén analítico",
|
||||
"disableAnalyticalStore": "Deshabilitar almacén analítico",
|
||||
"on": "Activado",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link es necesario para crear un almacén analítico {{collectionName}}. Habilite Azure Synapse Link para esta cuenta de Cosmos DB.",
|
||||
"enable": "Habilitar",
|
||||
"containerVectorPolicy": "Directiva de vector de contenedor",
|
||||
"containerFullTextSearchPolicy": "Directiva de búsqueda de texto completo del contenedor",
|
||||
"advanced": "Avanzado",
|
||||
"mongoIndexingTooltip": "El campo _id está indexado de forma predeterminada. La creación de un índice de caracteres comodín para todos los campos optimizará las consultas y se recomienda para el desarrollo.",
|
||||
"createWildcardIndex": "Crear un índice de caracteres comodín en todos los campos",
|
||||
"legacySdkCheckbox": "Mi aplicación usa una versión anterior del SDK de .NET o Java de Cosmos (.NET V1 o Java V2)",
|
||||
"legacySdkInfo": "Para garantizar la compatibilidad con los SDK anteriores, el contenedor creado usará un esquema de partición heredado que admite valores de clave de partición de hasta 101 bytes de tamaño. Si esta opción está habilitada, no podrá usar claves de partición jerárquicas.",
|
||||
"indexingOnInfo": "Todas las propiedades de los documentos se indexarán de forma predeterminada para que las consultas sean flexibles y eficaces.",
|
||||
"indexingOffInfo": "La indexación se desactivará. Se recomienda si no necesita ejecutar consultas o solo tiene operaciones de valor de clave.",
|
||||
"indexingOffWarning": "Al crear este contenedor con la indexación desactivada, no podrá realizar ningún cambio en la directiva de indexación. Los cambios de indexación solo se permiten en un contenedor con una directiva de indexación.",
|
||||
"acknowledgeSpendErrorMonthly": "Confirme el gasto mensual estimado.",
|
||||
"acknowledgeSpendErrorDaily": "Confirme el gasto diario estimado.",
|
||||
"unshardedMaxRuError": "Las colecciones sin cambios admiten hasta 10 000 RU",
|
||||
"acknowledgeShareThroughputError": "Confirme el coste estimado de este rendimiento dedicado.",
|
||||
"vectorPolicyError": "Corrija los errores en la directiva de vector de contenedor",
|
||||
"fullTextSearchPolicyError": "Corrija los errores en la directiva de búsqueda de texto completo del contenedor",
|
||||
"addingSampleDataSet": "Adición de un conjunto de datos de ejemplo"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "La clave de partición (campo) se usa para dividir los datos entre muchos conjuntos de réplicas (particiones) para lograr una escalabilidad ilimitada. Es fundamental elegir un campo que distribuya uniformemente los datos.",
|
||||
"partitionKeyTooltip": "El {{partitionKeyName}} se usa para distribuir datos automáticamente entre particiones con fines de escalabilidad. Elija una propiedad en el documento JSON que tenga una amplia gama de valores y distribuya uniformemente el volumen de solicitudes.",
|
||||
"partitionKeyTooltipSqlSuffix": " En el caso de las cargas de trabajo de lectura intensiva o de escritura intensiva de cualquier tamaño, el identificador suele ser una buena opción.",
|
||||
"shardKeyLabel": "Clave de partición",
|
||||
"partitionKeyLabel": "Clave de partición",
|
||||
"shardKeyPlaceholder": "por ejemplo, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "por ejemplo, /address",
|
||||
"partitionKeyPlaceholderFirst": "Requerido: primera clave de partición, por ejemplo, /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "segunda clave de partición, p. ej., /UserId",
|
||||
"partitionKeyPlaceholderThird": "tercera clave de partición, por ejemplo, /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "por ejemplo, /address/zipCode",
|
||||
"uniqueKeysTooltip": "Las claves únicas proporcionan a los desarrolladores la capacidad de agregar una capa de integridad de datos a su base de datos. Al crear una directiva de clave única cuando se crea un contenedor, se garantiza la unicidad de uno o varios valores por clave de partición.",
|
||||
"uniqueKeysLabel": "Claves únicas",
|
||||
"analyticalStoreLabel": "Almacén analítico",
|
||||
"analyticalStoreTooltip": "Habilite la funcionalidad de almacén analítico para realizar análisis casi en tiempo real de los datos operativos, sin afectar al rendimiento de las cargas de trabajo transaccionales.",
|
||||
"analyticalStoreDescription": "Habilite la funcionalidad de almacén analítico para realizar análisis casi en tiempo real de los datos operativos, sin afectar al rendimiento de las cargas de trabajo transaccionales.",
|
||||
"vectorPolicyTooltip": "Describir las propiedades de los datos que contienen vectores, de modo que se puedan poner a disposición de las consultas de similitud."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opciones de página",
|
||||
"pageOptionsDescription": "Elija Personalizar para especificar una cantidad fija de resultados de consulta para mostrar o elija Ilimitado para mostrar tantos resultados de consulta por página.",
|
||||
"queryResultsPerPage": "Resultados de la consulta por página",
|
||||
"queryResultsPerPageTooltip": "Escriba el número de resultados de la consulta que se deben mostrar por página.",
|
||||
"customQueryItemsPerPage": "Elementos de consulta personalizados por página",
|
||||
"custom": "Personalizado",
|
||||
"unlimited": "Sin límites",
|
||||
"entraIdRbac": "Habilitar RBAC de Entra ID",
|
||||
"entraIdRbacDescription": "Elija Automático para habilitar RBAC de Entra ID automáticamente. True/False para forzar la activación o desactivación de RBAC de Entra ID.",
|
||||
"true": "Verdadero",
|
||||
"false": "Falso",
|
||||
"regionSelection": "Selección de región",
|
||||
"regionSelectionDescription": "Cambia la región que usa el cliente de Cosmos para acceder a la cuenta.",
|
||||
"selectRegion": "Seleccionar región",
|
||||
"selectRegionTooltip": "Cambia el punto de conexión de cuenta usado para realizar operaciones de cliente.",
|
||||
"globalDefault": "Global (predeterminado)",
|
||||
"readWrite": "(Lectura y escritura)",
|
||||
"read": "(Lectura)",
|
||||
"queryTimeout": "Tiempo de espera de consulta",
|
||||
"queryTimeoutDescription": "Cuando una consulta alcanza un límite de tiempo especificado, se mostrará un elemento emergente con una opción para cancelar la consulta, a menos que se haya habilitado la cancelación automática.",
|
||||
"enableQueryTimeout": "Habilitar tiempo de espera de consulta",
|
||||
"queryTimeoutMs": "Tiempo de espera de consulta (ms)",
|
||||
"automaticallyCancelQuery": "Cancelar automáticamente la consulta después del tiempo de espera",
|
||||
"ruLimit": "Límite de RU",
|
||||
"ruLimitDescription": "Si una consulta supera un límite de RU configurado, se anulará la consulta.",
|
||||
"enableRuLimit": "Habilitar límite de RU",
|
||||
"ruLimitLabel": "Límite de RU (RU)",
|
||||
"defaultQueryResults": "Vista de resultados de consulta predeterminada",
|
||||
"defaultQueryResultsDescription": "Seleccione la vista predeterminada que se va a usar al mostrar los resultados de la consulta.",
|
||||
"retrySettings": "Configuración de reintentos",
|
||||
"retrySettingsDescription": "Directiva de reintentos asociada a solicitudes limitadas durante las consultas de CosmosDB.",
|
||||
"maxRetryAttempts": "Número máximo de reintentos",
|
||||
"maxRetryAttemptsTooltip": "Número máximo de reintentos que se van a realizar para una solicitud. Valor predeterminado 9.",
|
||||
"fixedRetryInterval": "Intervalo de reintento fijo (ms)",
|
||||
"fixedRetryIntervalTooltip": "Se ha corregido el intervalo de reintentos en milisegundos para esperar entre cada reintento omitiendo el retryAfter devuelto como parte de la respuesta. El valor predeterminado es 0 milisegundos.",
|
||||
"maxWaitTime": "Tiempo de espera máximo (s)",
|
||||
"maxWaitTimeTooltip": "Tiempo de espera máximo en segundos para esperar una solicitud mientras se producen los reintentos. Valor predeterminado de 30 segundos.",
|
||||
"enableContainerPagination": "Habilitar paginación de contenedor",
|
||||
"enableContainerPaginationDescription": "Cargue 50 contenedores a la vez. Actualmente, los contenedores no se extraen en orden alfanumérico.",
|
||||
"enableCrossPartitionQuery": "Habilitar consulta entre particiones",
|
||||
"enableCrossPartitionQueryDescription": "Enviar más de una solicitud mientras se ejecuta una consulta. Se necesita más de una solicitud si la consulta no tiene como ámbito un valor de clave de partición única.",
|
||||
"maxDegreeOfParallelism": "Grado máximo de paralelismo",
|
||||
"maxDegreeOfParallelismDescription": "Obtiene o establece el número de operaciones simultáneas que se ejecutan en el lado cliente durante la ejecución de consultas en paralelo. Un valor de propiedad positivo limita el número de operaciones simultáneas al valor establecido. Si se establece en menos de 0, el sistema decide automáticamente el número de operaciones simultáneas que se van a ejecutar.",
|
||||
"maxDegreeOfParallelismQuery": "Consultar hasta el grado máximo de paralelismo.",
|
||||
"priorityLevel": "Nivel de prioridad",
|
||||
"priorityLevelDescription": "Establece el nivel de prioridad para las solicitudes de plano de Data Explorer al usar la ejecución basada en prioridad. Si se selecciona \"Ninguno\", Data Explorer no especificará nivel de prioridad y se usará el nivel predeterminado del servidor.",
|
||||
"displayGremlinQueryResults": "Mostrar los resultados de la consulta de Gremlin como:",
|
||||
"displayGremlinQueryResultsDescription": "Seleccione Graph para visualizar automáticamente los resultados de la consulta como un gráfico o JSON para mostrar los resultados como JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualización automática de Graph",
|
||||
"enableSampleDatabase": "Habilitar base de datos de ejemplo",
|
||||
"enableSampleDatabaseDescription": "Se trata de una base de datos de ejemplo y una colección con datos de productos sintéticos que puede usar para explorar mediante consultas NoSQL. Aparecerá como otra base de datos en la interfaz de Data Explorer y es creada y mantenida por Microsoft sin coste para usted.",
|
||||
"enableSampleDbAriaLabel": "Habilitación de la base de datos de ejemplo para la exploración de consultas",
|
||||
"guidRepresentation": "Representación de GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation en MongoDB hace referencia a cómo se serializan y deserializan los identificadores únicos globales (GUID) cuando se almacenan en documentos BSON. Esto se aplicará a todas las operaciones de documento.",
|
||||
"advancedSettings": "Configuración avanzada",
|
||||
"ignorePartitionKey": "Omitir clave de partición en la actualización del documento",
|
||||
"ignorePartitionKeyTooltip": "Si se activa, el valor de clave de partición no se usará para buscar el documento durante las operaciones de actualización. Use esta opción solo si se producen errores en las actualizaciones del documento debido a una clave de partición anómala.",
|
||||
"clearHistory": "Borrar historial",
|
||||
"clearHistoryConfirm": "¿Seguro que quiere continuar?",
|
||||
"clearHistoryDescription": "Esta acción borrará todas las personalizaciones de esta cuenta en este explorador, incluidas:",
|
||||
"clearHistoryTabLayout": "Restablecer el diseño de pestaña personalizado, incluidas las posiciones divisora",
|
||||
"clearHistoryTableColumns": "Borrar las preferencias de columna de la tabla, incluidas las columnas personalizadas",
|
||||
"clearHistoryFilters": "Borrar el historial de filtros",
|
||||
"clearHistoryRegion": "Restablecer selección de región a global",
|
||||
"increaseValueBy1000": "Aumentar valor en 1 000",
|
||||
"decreaseValueBy1000": "Disminuir valor en 1 000",
|
||||
"none": "Ninguno",
|
||||
"low": "Bajo",
|
||||
"high": "Alto",
|
||||
"automatic": "Automático",
|
||||
"enhancedQueryControl": "Control de consulta mejorado",
|
||||
"enableQueryControl": "Habilitar control de consulta",
|
||||
"explorerVersion": "Versión del explorador",
|
||||
"accountId": "Id. de cuenta",
|
||||
"sessionId": "Id. de sesión",
|
||||
"popupsDisabledError": "No se pudo establecer la autorización para esta cuenta debido a que los elementos emergentes se deshabilitaron en el explorador.\nHabilite los elementos emergentes para este sitio y haga clic en el botón \"Iniciar sesión para Entra ID\"",
|
||||
"failedToAcquireTokenError": "No se pudo adquirir automáticamente el token de autorización. Haga clic en el botón \"Iniciar sesión para Entra ID\" para habilitar las operaciones RBAC de Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Guardar consulta",
|
||||
"setupCostMessage": "Por motivos de cumplimiento, guardamos las consultas en un contenedor de la cuenta de Azure Cosmos, en una base de datos independiente denominada \"{{databaseName}}\". Para continuar, necesitamos crear un contenedor en su cuenta, el coste adicional estimado es de 0,77 USD al día.",
|
||||
"completeSetup": "Completar instalación",
|
||||
"noQueryNameError": "No se especificó ningún nombre de consulta",
|
||||
"invalidQueryContentError": "Contenido de consulta especificado no válido",
|
||||
"failedToSaveQueryError": "No se pudo guardar la consulta {{queryName}}",
|
||||
"failedToSetupContainerError": "No se pudo configurar un contenedor para las consultas guardadas",
|
||||
"accountNotSetupError": "No se pudo guardar la consulta: la cuenta no está configurada para guardar consultas",
|
||||
"name": "Nombre"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "No se especificó ningún archivo",
|
||||
"failedToLoadQueryError": "No se pudo cargar la consulta.",
|
||||
"failedToLoadQueryFromFileError": "No se pudo cargar la consulta desde el archivo {{fileName}}",
|
||||
"selectFilesToOpen": "Seleccionar un documento de consulta",
|
||||
"browseFiles": "Examinar"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Escriba los parámetros de entrada (si los hay)",
|
||||
"key": "Clave",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Valor de la clave de partición",
|
||||
"value": "Valor",
|
||||
"addNewParam": "Agregar nuevo parámetro",
|
||||
"addParam": "Agregar parámetro",
|
||||
"deleteParam": "Eliminar parámetro",
|
||||
"invalidParamError": "Parámetro especificado no válido: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Parámetro especificado no válido: {{invalidParam}} no es un valor literal válido",
|
||||
"stringType": "Cadena",
|
||||
"customType": "Personalizado"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "No se especificó ningún archivo. Escriba al menos un archivo.",
|
||||
"selectJsonFiles": "Seleccionar archivos JSON",
|
||||
"selectJsonFilesTooltip": "Seleccione uno o varios archivos JSON para cargar. Cada archivo puede contener un único documento JSON o una matriz de documentos JSON. El tamaño combinado de todos los archivos de una operación de carga individual debe ser inferior a 2 MB. Puede realizar varias operaciones de carga para conjuntos de datos más grandes.",
|
||||
"fileNameColumn": "NOMBRE DE ARCHIVO",
|
||||
"statusColumn": "ESTADO",
|
||||
"uploadStatus": "{{numSucceeded}} creado, {{numThrottled}} limitado, {{numFailed}} errores",
|
||||
"uploadedFiles": "Archivos cargados"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "No se pudo copiar {{name}} en {{destination}}",
|
||||
"uploadFailedError": "Error al cargar {{name}}.",
|
||||
"location": "Ubicación",
|
||||
"locationAriaLabel": "Ubicación",
|
||||
"selectLocation": "Seleccionar una ubicación de bloc de notas para copiar",
|
||||
"name": "Nombre"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "No se pudo publicar {{notebookName}} en la galería",
|
||||
"publishDescription": "Cuando se publique, este bloc de notas aparecerá en la galería pública de blocs de notas de Azure Cosmos DB. Asegúrese de que ha quitado los datos confidenciales o la salida antes de la publicación.",
|
||||
"publishPrompt": "¿Desea publicar y compartir \"{{name}}\" en la galería?",
|
||||
"coverImage": "Imagen de portada",
|
||||
"coverImageUrl": "Dirección URL de la imagen de portada",
|
||||
"name": "Nombre",
|
||||
"description": "Descripción",
|
||||
"tags": "Etiquetas",
|
||||
"tagsPlaceholder": "Etiqueta opcional 1, etiqueta opcional 2",
|
||||
"preview": "Versión preliminar",
|
||||
"urlType": "URL",
|
||||
"customImage": "Imagen personalizada",
|
||||
"takeScreenshot": "Obtener recorte de pantalla",
|
||||
"useFirstDisplayOutput": "Usar la primera salida de pantalla",
|
||||
"failedToCaptureOutput": "No se pudo capturar la primera salida",
|
||||
"outputDoesNotExist": "La salida no existe para ninguna de las celdas.",
|
||||
"failedToConvertError": "No se pudo convertir {{fileName}} al formato base64",
|
||||
"failedToUploadError": "No se pudo cargar {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "No se pudo iniciar el trabajo de transferencia de datos",
|
||||
"suboptimalPartitionKeyError": "Advertencia: el sistema ha detectado que la colección puede estar usando una clave de partición poco óptima",
|
||||
"description": "Al cambiar la clave de partición de un contenedor, deberá crear un contenedor de destino con la clave de partición correcta. También puede seleccionar un contenedor de destino existente.",
|
||||
"sourceContainerId": "Id. de origen {{collectionName}} ",
|
||||
"destinationContainerId": "Id. de destino {{collectionName}}",
|
||||
"collectionIdTooltip": "Identificador único de y usado para el {{collectionName}} enrutamiento basado en identificadores a través de REST y todos los SDK.",
|
||||
"collectionIdPlaceholder": "por ejemplo, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id., ejemplo {{collectionName}}1",
|
||||
"existingContainers": "Contenedores existentes",
|
||||
"partitionKeyWarning": "El contenedor de destino no debe existir aún. Explorador de datos creará un nuevo contenedor de destino."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nombre del espacio de claves",
|
||||
"keyspaceTooltip": "Seleccione un espacio de claves existente o escriba un nuevo identificador de espacio de claves.",
|
||||
"tableIdLabel": "Escriba el comando CQL para crear la tabla.",
|
||||
"enterTableId": "Escriba el id. de tabla",
|
||||
"tableSchemaAriaLabel": "Esquema de tabla",
|
||||
"provisionDedicatedThroughput": "Aprovisionamiento del rendimiento dedicado para esta tabla",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionalmente, puede aprovisionar el rendimiento dedicado para una tabla dentro de un espacio de claves que tenga aprovisionado el rendimiento. Esta cantidad de rendimiento dedicado no se compartirá con otras tablas del espacio de claves y no cuenta para el rendimiento aprovisionado para el espacio de claves. Esta cantidad de rendimiento se facturará además de la cantidad de rendimiento que aprovisionó en el nivel de espacio de claves."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Agregar propiedad",
|
||||
"addRow": "Agregar fila",
|
||||
"addEntity": "Agregar entidad",
|
||||
"back": "atrás",
|
||||
"nullFieldsWarning": "Advertencia: los campos nulos no se mostrarán para su edición.",
|
||||
"propertyEmptyError": "{{property}} no puede estar vacío. Escriba un valor para {{property}}",
|
||||
"whitespaceError": "{{property}} no puede tener espacios en blanco. Escriba un valor para {{property}} sin espacios en blanco",
|
||||
"propertyTypeEmptyError": "El tipo de propiedad no puede estar vacío. Seleccione un tipo en la lista desplegable para la propiedad {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Seleccione las columnas que quiere consultar.",
|
||||
"availableColumns": "Columnas disponibles"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Seleccione las columnas que se mostrarán en la vista de elementos del contenedor.",
|
||||
"searchFields": "Buscar campos",
|
||||
"reset": "Restablecer",
|
||||
"partitionKeySuffix": " (clave de partición)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Agregar propiedad"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Id. de contenedor de índice secundario global",
|
||||
"globalSecondaryIndexIdPlaceholder": "por ejemplo, indexbyEmailId",
|
||||
"projectionQuery": "Consulta de proyección",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Obtenga más información sobre cómo definir índices secundarios globales.",
|
||||
"disabledTitle": "Ya se está creando un índice secundario global. Espere a que se complete antes de crear otra."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "La entrada {{input}} no coincide con la seleccionada {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Información",
|
||||
"moreDetails": "Más detalles"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Charger",
|
||||
"connect": "Connexion",
|
||||
"remove": "Supprimer",
|
||||
"load": "Charger",
|
||||
"publish": "Publier",
|
||||
"browse": "Parcourir",
|
||||
"increaseValueBy1": "Augmenter la valeur de 1",
|
||||
"decreaseValueBy1": "Diminuer la valeur de 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Nous n’avons pas pu créer le conteneur : {{error}}",
|
||||
"errorImportData": "Nous n’avons pas pu importer les données : {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nouveau {{containerName}}",
|
||||
"restoreContainer": "Restaurer {{containerName}}",
|
||||
"deleteDatabase": "Supprimer {{databaseName}}",
|
||||
"deleteContainer": "Supprimer {{containerName}}",
|
||||
"newSqlQuery": "Nouvelle requête SQL",
|
||||
"newQuery": "Nouvelle requête",
|
||||
"openMongoShell": "Ouvrir l’interpréteur de commandes Mongo",
|
||||
"newShell": "Nouvel interpréteur de commandes",
|
||||
"openCassandraShell": "Ouvrir l’interpréteur de commandes Cassandra",
|
||||
"newStoredProcedure": "Nouvelle procédure stockée",
|
||||
"newUdf": "Nouvelle UDF",
|
||||
"newTrigger": "Nouveau déclencheur",
|
||||
"deleteStoredProcedure": "Supprimer la procédure stockée",
|
||||
"deleteTrigger": "Supprimer le déclencheur",
|
||||
"deleteUdf": "Supprimer une fonction définie par l’utilisateur"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nouvel élément",
|
||||
"newDocument": "Nouveau document",
|
||||
"uploadItem": "Charger l’élément",
|
||||
"applyFilter": "Appliquer le filtre",
|
||||
"unsavedChanges": "Modifications non enregistrées",
|
||||
"unsavedChangesMessage": "Vos modifications non enregistrées seront perdues. Voulez-vous continuer ?",
|
||||
"createDocumentFailed": "Nous n’avons pas pu créer le document",
|
||||
"updateDocumentFailed": "Nous n’avons pas pu mettre à jour le document",
|
||||
"documentDeleted": "Nous avons bien supprimé le document.",
|
||||
"deleteDocumentDialogTitle": "Supprimer le document",
|
||||
"deleteDocumentsDialogTitle": "Supprimer des documents",
|
||||
"throttlingError": "Nous n’avons pas pu supprimer certains documents en raison d’une erreur de limitation de débit. Réessayez plus tard. Pour éviter ce cas de figure à l’avenir, envisagez d’augmenter le débit de votre conteneur ou de votre base de données.",
|
||||
"deleteFailed": "Nous n’avons pas pu supprimer le ou les documents ({{error}})",
|
||||
"missingShardProperty": "Le document ne contient pas la propriété de partition : {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Nous n’avons pas pu actualiser la grille des documents",
|
||||
"confirmDelete": "Voulez-vous vraiment supprimer {{documentName}} ?",
|
||||
"confirmDeleteTitle": "Confirmer la suppression",
|
||||
"selectedItems": "les {{count}} éléments sélectionnés",
|
||||
"selectedItem": "l’élément sélectionné",
|
||||
"selectedDocuments": "les {{count}} documents sélectionnés",
|
||||
"selectedDocument": "le document sélectionné",
|
||||
"deleteDocumentFailedLog": "Nous n’avons pas pu supprimer le document {{documentId}} avec le code d’état {{statusCode}}",
|
||||
"deleteSuccessLog": "Nous avons bien supprimé {{count}} document(s)",
|
||||
"deleteThrottledLog": "Nous n’avons pas pu supprimer {{count}} document(s) en raison de l’erreur « Requête trop volumineuse » (429). Nouvelle tentative...",
|
||||
"missingShardKeyLog": "Nous n’avons pas pu enregistrer le nouveau document : clé de partition du document non définie",
|
||||
"filterTooltip": "Tapez un prédicat de requête ou choisissez-en un dans la liste.",
|
||||
"loadMore": "Charger plus",
|
||||
"documentEditor": "Éditeur de document",
|
||||
"savedFilters": "Filtres enregistrés",
|
||||
"defaultFilters": "Filtres par défaut",
|
||||
"abort": "Abandonner",
|
||||
"deletingDocuments": "Suppression en cours de {{count}} document(s)",
|
||||
"deletedDocumentsSuccess": "Nous avons bien supprimé {{count}} document(s).",
|
||||
"deleteAborted": "La suppression du ou des documents a été abandonnée.",
|
||||
"failedToDeleteDocuments": "Nous n’avons pas pu supprimer {{count}} document(s).",
|
||||
"requestTooLargeBase": "Certaines requêtes de suppression ont échoué en raison d’une exception « Demande trop volumineuse » (429)",
|
||||
"retriedSuccessfully": "mais ont bien été réessayés.",
|
||||
"retryingNow": "Nouvelle tentative en cours.",
|
||||
"increaseThroughputTip": "Pour éviter ce cas de figure à l’avenir, envisagez d’augmenter le débit de votre conteneur ou de votre base de données.",
|
||||
"numberOfSelectedDocuments": "Nombre de documents sélectionnés : {{count}}",
|
||||
"mongoFilterPlaceholder": "Tapez un prédicat de requête (p. ex. {\"id\":\"foo\"}), choisissez-en un dans la liste déroulante, ou laissez le champ vide pour interroger tous les documents.",
|
||||
"sqlFilterPlaceholder": "Tapez un prédicat de requête (p. ex. WHERE c.id=\"1\"), choisissez-en un dans la liste déroulante, ou laissez le champ vide pour interroger tous les documents.",
|
||||
"error": "Erreur",
|
||||
"warning": "Avertissement"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Exécuter la requête",
|
||||
"executeSelection": "Exécuter la sélection",
|
||||
"saveQuery": "Enregistrer la requête",
|
||||
"downloadQuery": "Télécharger la requête",
|
||||
"cancelQuery": "Annuler la requête",
|
||||
"openSavedQueries": "Ouvrir les requêtes enregistrées",
|
||||
"vertical": "Verticale",
|
||||
"horizontal": "Horizontale",
|
||||
"view": "Afficher",
|
||||
"editingQuery": "Modification en cours de la requête"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID de procédure stockée",
|
||||
"idPlaceholder": "Entrer le nouvel ID de procédure stockée",
|
||||
"idAriaLabel": "ID de procédure stockée",
|
||||
"body": "Corps de procédure stockée",
|
||||
"bodyAriaLabel": "Corps de procédure stockée",
|
||||
"successfulExecution": "Nous avons réussi l’exécution de la procédure stockée",
|
||||
"resultAriaLabel": "Exécuter le résultat de la procédure stockée",
|
||||
"logsAriaLabel": "Exécuter les journaux d’activité de la procédure stockée",
|
||||
"errors": "Erreurs :",
|
||||
"errorDetailsAriaLabel": "Lien vers les détails d’erreur",
|
||||
"moreDetails": "Plus de détails",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID de déclencheur",
|
||||
"idPlaceholder": "Entrer le nouvel ID de déclencheur",
|
||||
"type": "Type de déclencheur",
|
||||
"operation": "Déclencher l’opération",
|
||||
"body": "Corps de déclencheur",
|
||||
"bodyAriaLabel": "Corps de déclencheur",
|
||||
"pre": "Avant",
|
||||
"post": "Publier",
|
||||
"all": "Tous",
|
||||
"operationCreate": "Créer",
|
||||
"operationDelete": "Supprimer",
|
||||
"operationReplace": "Remplacer"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID de fonction définie par l’utilisateur",
|
||||
"idPlaceholder": "Entrer le nouvel ID de fonction définie par l’utilisateur",
|
||||
"body": "Corps de fonction défini par l’utilisateur",
|
||||
"bodyAriaLabel": "Corps de fonction définie par l’utilisateur"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Modifications non enregistrées",
|
||||
"changesWillBeLost": "Les modifications seront perdues. Voulez-vous continuer ?",
|
||||
"resolveConflictFailed": "Échec de la résolution de conflit",
|
||||
"deleteConflictFailed": "Nous n’avons pas pu résoudre le conflit",
|
||||
"refreshGridFailed": "Nous n’avons pas pu actualiser la grille des documents"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Interpréteur de commandes Mongo"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Supprimer {{databaseName}}",
|
||||
"warningMessage": "Attention ! Il ne sera pas possible d’annuler cette action. Si vous continuez, cette ressource et toutes ses ressources enfants seront définitivement supprimées.",
|
||||
"confirmPrompt": "Confirmer en tapant l’ID de {{databaseName}} (nom)",
|
||||
"inputMismatch": "Le nom « {{input}} » de l’entrée {{databaseName}} ne correspond pas au {{databaseName}} « {{selectedId}} » sélectionné",
|
||||
"feedbackTitle": "Aidez-nous à améliorer Azure Cosmos DB !",
|
||||
"feedbackReason": "Pourquoi supprimez-vous {{databaseName}} ?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Supprimer {{collectionName}}",
|
||||
"confirmPrompt": "Confirmer en tapant l’ID de {{collectionName}}",
|
||||
"inputMismatch": "L’ID d’entrée {{input}} ne correspond pas à l’ID {{selectedId}} sélectionné",
|
||||
"feedbackTitle": "Aidez-nous à améliorer Azure Cosmos DB !",
|
||||
"feedbackReason": "Pourquoi supprimez-vous {{collectionName}} ?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Base de données {{suffix}}",
|
||||
"databaseIdLabel": "ID de base de données",
|
||||
"keyspaceIdLabel": "ID d’espace clé",
|
||||
"databaseIdPlaceholder": "Entrer un nouvel ID de {{databaseLabel}}",
|
||||
"databaseTooltip": "Une {{databaseLabel}} est un conteneur logique d’un ou plusieurs {{collectionsLabel}}",
|
||||
"shareThroughput": "Partager le débit sur {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Le débit approvisionné au niveau {{databaseLabel}} est partagé entre tous les {{collectionsLabel}} du {{databaseLabel}}.",
|
||||
"greaterThanError": "Entrer une valeur supérieure à {{minValue}} pour le débit Autopilot",
|
||||
"acknowledgeSpendError": "Prenez en compte l’estimation des dépenses {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Créer",
|
||||
"useExisting": "Utiliser l’élément existant",
|
||||
"databaseTooltip": "Une base de données est comparable à un espace de noms. Il s’agit de l’unité de gestion d’un ensemble de {{collectionName}}.",
|
||||
"shareThroughput": "Partager le débit sur {{collectionName}}",
|
||||
"shareThroughputTooltip": "Le débit configuré au niveau de la base de données sera partagé entre tous les {{collectionName}} de la base de données.",
|
||||
"collectionIdLabel": "ID de {{collectionName}}",
|
||||
"collectionIdTooltip": "L’identificateur unique du {{collectionName}}, également utilisé pour le routage basé sur l’ID dans REST et tous les SDK.",
|
||||
"collectionIdPlaceholder": "p. ex. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID {{collectionName}}, Exemple {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Choisir un id existant de {{databaseName}}",
|
||||
"existingDatabasePlaceholder": "Choisir un id existant de {{databaseName}}",
|
||||
"indexing": "Indexation",
|
||||
"turnOnIndexing": "Activer l’indexation",
|
||||
"automatic": "Automatique",
|
||||
"turnOffIndexing": "Désactiver l’indexation",
|
||||
"off": "Désactivé",
|
||||
"sharding": "Partitionnement",
|
||||
"shardingTooltip": "Les collections partitionnées fractionnent vos données entre de nombreux jeux de réplicas (partitions) pour atteindre une scalabilité illimitée. Les collections partitionnées vous obligent à choisir une clé de partition (champ) pour distribuer uniformément vos données.",
|
||||
"unsharded": "Non partitionné",
|
||||
"unshardedLabel": "Non partitionné (limite de 20 Go)",
|
||||
"sharded": "Partitionné",
|
||||
"addPartitionKey": "Ajouter une clé de partition hiérarchique",
|
||||
"hierarchicalPartitionKeyInfo": "Cette fonctionnalité vous permet de partitionner vos données avec jusqu’à trois niveaux de clés pour une meilleure distribution des données. Nécessite .NET V3, le SDK Java V4 ou la préversion du SDK JavaScript V3.",
|
||||
"provisionDedicatedThroughput": "Approvisionner le débit dédié pour {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Vous pouvez éventuellement approvisionner un débit dédié pour un {{collectionName}} dans un espace de clés dont le débit est approvisionné. Ce débit dédié ne sera pas partagé avec les autres {{collectionNamePlural}} de la base de données et ne sera pas pris en compte dans le débit que vous approvisionnez pour la base de données. Cette quantité de débit sera facturée en plus du débit que vous approvisionnez au niveau de la base de données.",
|
||||
"uniqueKeysPlaceholderMongo": "Chemins séparés par des virgules, p. ex. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Chemins séparés par des virgules, p. ex. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Ajouter une clé unique",
|
||||
"enableAnalyticalStore": "Activer le magasin analytique",
|
||||
"disableAnalyticalStore": "Désactiver le magasin analytique",
|
||||
"on": "Activé",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link est obligatoire pour créer un magasin analytique de {{collectionName}}. Activez Synapse Link pour ce compte Cosmos DB.",
|
||||
"enable": "Activer",
|
||||
"containerVectorPolicy": "Stratégie de vecteur de conteneur",
|
||||
"containerFullTextSearchPolicy": "Stratégie de recherche en texte intégral du conteneur",
|
||||
"advanced": "Avancé",
|
||||
"mongoIndexingTooltip": "Le champ _id est indexé par défaut. La création d’un index générique pour tous les champs optimise les requêtes. Elle est recommandée pour le développement.",
|
||||
"createWildcardIndex": "Créer un index générique sur tous les champs",
|
||||
"legacySdkCheckbox": "Mon application utilise une version antérieure de Cosmos .NET ou du SDK Java (.NET V1 ou Java V2)",
|
||||
"legacySdkInfo": "Pour garantir la compatibilité avec les anciens Kits de développement logiciels (SDK), le conteneur créé utilise un schéma de partitionnement hérité qui prend en charge des valeurs de clés de partition d’une taille maximale de 101 octets. Si cette option est activée, vous ne pouvez pas utiliser de clés de partition hiérarchiques.",
|
||||
"indexingOnInfo": "Toutes les propriétés de vos documents seront indexées par défaut pour permettre des requêtes flexibles et efficaces.",
|
||||
"indexingOffInfo": "L’indexation sera désactivée. Nous recommandons cette option si vous n’avez pas besoin d’exécuter des requêtes ou si vous n’effectuez que des opérations clé-valeur.",
|
||||
"indexingOffWarning": "En créant ce conteneur avec l’indexation désactivée, vous ne pouvez pas modifier la stratégie d’indexation. Les modifications d’indexation ne sont autorisées que sur un conteneur disposant d’une stratégie d’indexation.",
|
||||
"acknowledgeSpendErrorMonthly": "Prenez en compte l’estimation des dépenses mensuelles.",
|
||||
"acknowledgeSpendErrorDaily": "Prenez en compte l’estimation des dépenses quotidiennes.",
|
||||
"unshardedMaxRuError": "Les collections non partitionnées prennent en charge un maximum de 10 000 RU",
|
||||
"acknowledgeShareThroughputError": "N’oubliez pas de prendre en compte le coût estimé de ce débit dédié.",
|
||||
"vectorPolicyError": "Corriger les erreurs dans la stratégie de vecteur du conteneur",
|
||||
"fullTextSearchPolicyError": "Corrigez les erreurs dans la stratégie de recherche en texte intégral du conteneur",
|
||||
"addingSampleDataSet": "Ajout en cours d’un exemple de jeu de données"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Utilisez les clés de partition (champ) pour fractionner vos données entre de nombreux jeux de réplicas (partitions) pour atteindre une scalabilité illimitée. Il est essentiel de choisir un champ qui répartit uniformément vos données.",
|
||||
"partitionKeyTooltip": "La {{partitionKeyName}} est utilisée pour distribuer automatiquement les données entre les partitions à des fins de scalabilité. Choisissez une propriété dans votre document JSON qui propose un grand éventail de valeurs et distribue uniformément le volume des requêtes.",
|
||||
"partitionKeyTooltipSqlSuffix": " Pour les charges de travail de petite taille à lecture intensive ou les charges de travail à écriture intensive de toute taille, l’ID est souvent un choix judicieux.",
|
||||
"shardKeyLabel": "Clé de partition",
|
||||
"partitionKeyLabel": "Clé de partition",
|
||||
"shardKeyPlaceholder": "p. ex. categoryId",
|
||||
"partitionKeyPlaceholderDefault": "p. ex. /address",
|
||||
"partitionKeyPlaceholderFirst": "Obligatoire : première clé de partition, p. ex. /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "deuxième clé de partition, par exemple, /UserId",
|
||||
"partitionKeyPlaceholderThird": "troisième clé de partition, p. ex. /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "p. ex. /address/zipCode",
|
||||
"uniqueKeysTooltip": "Les clés uniques permettent aux développeurs d’ajouter une couche d’intégrité des données à leur base de données. En créant une stratégie de clé unique lors de la création d’un conteneur, vous garantissez l’unicité d’une ou plusieurs valeurs par clé de partition.",
|
||||
"uniqueKeysLabel": "Clés uniques",
|
||||
"analyticalStoreLabel": "Magasin analytique",
|
||||
"analyticalStoreTooltip": "Activez la fonctionnalité de magasin analytique pour effectuer des analyses en quasi-temps réel sur vos données opérationnelles, sans impacter les performances des charges de travail transactionnelles.",
|
||||
"analyticalStoreDescription": "Activez la fonctionnalité de magasin analytique pour effectuer des analyses en quasi-temps réel sur vos données opérationnelles, sans impacter les performances des charges de travail transactionnelles.",
|
||||
"vectorPolicyTooltip": "Décrivez n’importe quelle propriété de vos données qui contient des vecteurs afin qu’elles puissent être utilisées pour des requêtes de similarité."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Options de page",
|
||||
"pageOptionsDescription": "Choisissez Personnalisé pour spécifier un nombre fixe de résultats de requête à afficher, ou Illimité pour afficher autant de résultats que possible par page.",
|
||||
"queryResultsPerPage": "Résultats de requête par page",
|
||||
"queryResultsPerPageTooltip": "Entrez le nombre de résultats de requête à afficher par page.",
|
||||
"customQueryItemsPerPage": "Le nombre d’éléments de requête personnalisés par page",
|
||||
"custom": "Personnalisé",
|
||||
"unlimited": "Illimité",
|
||||
"entraIdRbac": "Activer le RBAC d’Entra ID",
|
||||
"entraIdRbacDescription": "Choisissez Automatique pour activer automatiquement le RBAC d’Entra ID. True/False pour forcer l’activation ou la désactivation du RBAC d’Entra ID.",
|
||||
"true": "True",
|
||||
"false": "Faux",
|
||||
"regionSelection": "Sélection de zone",
|
||||
"regionSelectionDescription": "Modifie la région utilisée par le client Cosmos pour accéder au compte.",
|
||||
"selectRegion": "Sélectionner une région",
|
||||
"selectRegionTooltip": "Modifie le point de terminaison du compte utilisé pour effectuer des opérations client.",
|
||||
"globalDefault": "Global (par défaut)",
|
||||
"readWrite": "(En lecture et en écriture)",
|
||||
"read": "(Lecture)",
|
||||
"queryTimeout": "Expiration de la requête",
|
||||
"queryTimeoutDescription": "Lorsqu’une requête atteint une limite de temps spécifiée, une fenêtre contextuelle proposant d’annuler la requête s’affiche, sauf si l’annulation automatique est activée.",
|
||||
"enableQueryTimeout": "Activer le délai d’expiration de requête",
|
||||
"queryTimeoutMs": "Délai d’expiration de la requête (ms)",
|
||||
"automaticallyCancelQuery": "Annuler automatiquement la requête après expiration du délai d’attente",
|
||||
"ruLimit": "Limite de RU",
|
||||
"ruLimitDescription": "Si une requête dépasse une limite de RU configurée, elle sera annulée.",
|
||||
"enableRuLimit": "Activer la limite de RU",
|
||||
"ruLimitLabel": "Limite de RU (RU)",
|
||||
"defaultQueryResults": "Affichage par défaut des résultats de la requête",
|
||||
"defaultQueryResultsDescription": "Sélectionnez l’affichage par défaut à utiliser pour montrer les résultats de la requête.",
|
||||
"retrySettings": "Paramètres de nouvelle tentative",
|
||||
"retrySettingsDescription": "La stratégie de nouvelles tentatives associée aux requêtes limitées lors des requêtes CosmosDB.",
|
||||
"maxRetryAttempts": "Maximum de nouvelles tentatives",
|
||||
"maxRetryAttemptsTooltip": "Nombre maximal de tentatives à effectuer pour une requête. Valeur par défaut 9.",
|
||||
"fixedRetryInterval": "Intervalle fixe avant nouvelle tentative (ms)",
|
||||
"fixedRetryIntervalTooltip": "Intervalle fixe avant nouvelle tentative, en millisecondes, en ignorant la valeur retryAfter retournée dans la réponse. La valeur par défaut est de 0 milliseconde.",
|
||||
"maxWaitTime": "Temps d’attente maximal (s)",
|
||||
"maxWaitTimeTooltip": "Le temps d’attente maximal en secondes pour une requête pendant les nouvelles tentatives. La valeur par défaut est de 30 secondes.",
|
||||
"enableContainerPagination": "Activer la pagination du conteneur",
|
||||
"enableContainerPaginationDescription": "Chargez 50 conteneurs à la fois. Actuellement, les conteneurs ne sont pas tirés (pulled) dans l’ordre alphanumérique.",
|
||||
"enableCrossPartitionQuery": "Activer les requêtes entre les partitions",
|
||||
"enableCrossPartitionQueryDescription": "Envoyez plusieurs requêtes lors de l’exécution d’une requête. Plusieurs requêtes sont nécessaires si la requête ne cible pas une seule valeur de clé de partition.",
|
||||
"maxDegreeOfParallelism": "Degré maximal de parallélisme",
|
||||
"maxDegreeOfParallelismDescription": "Récupère ou définit le nombre d’opérations simultanées exécutées côté client lors de l’exécution parallèle d’une requête. Une valeur positive limite le nombre d’opérations simultanées à cette valeur. Si elle est inférieure à 0, le système détermine automatiquement le nombre d’opérations simultanées à exécuter.",
|
||||
"maxDegreeOfParallelismQuery": "Interrogez jusqu’au degré maximal de parallélisme.",
|
||||
"priorityLevel": "Niveau de priorité",
|
||||
"priorityLevelDescription": "Définit le niveau de priorité des requêtes du plan de données provenant de l’Explorateur de données lors de l’utilisation de l’exécution basée sur la priorité. Si « Aucun » est sélectionné, l’Explorateur de données ne spécifie pas de niveau de priorité et le niveau de priorité par défaut côté serveur est utilisé.",
|
||||
"displayGremlinQueryResults": "Afficher les résultats de la requête Gremlin sous forme de :",
|
||||
"displayGremlinQueryResultsDescription": "Sélectionnez Graphique pour visualiser automatiquement les résultats de la requête sous forme de graphique ou JSON pour afficher les résultats au format JSON.",
|
||||
"graph": "Graphique",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualisation automatique du graphique",
|
||||
"enableSampleDatabase": "Activer l’exemple de données",
|
||||
"enableSampleDatabaseDescription": "Il s’agit d’un exemple de base de données et de collection avec des données de produit synthétiques que vous pouvez utiliser pour découvrir les requêtes NoSQL. Elle apparaîtra comme toute autre base de données dans l’IU d’Explorateur de données. Elle est gratuitement créée et maintenue par Microsoft.",
|
||||
"enableSampleDbAriaLabel": "Activer l’exemple de base de données pour explorer les requêtes",
|
||||
"guidRepresentation": "Représentation de GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation dans MongoDB désigne la manière dont les identifiants uniques globaux (GUID) sont sérialisés et désérialisés lorsqu’ils sont stockés dans des documents BSON. Cela s’applique à toutes les opérations de documents.",
|
||||
"advancedSettings": "Paramètres avancés",
|
||||
"ignorePartitionKey": "Ignorer la clé de partition lors de la mise à jour du document",
|
||||
"ignorePartitionKeyTooltip": "Si cette option est cochée, la valeur de la clé de partition n’est pas utilisée pour localiser le document lors des opérations de mise à jour. Utilisez cette option uniquement si les mises à jour de document échouent à cause d’une clé de partition anormale.",
|
||||
"clearHistory": "Effacer l’historique",
|
||||
"clearHistoryConfirm": "Voulez-vous vraiment continuer ?",
|
||||
"clearHistoryDescription": "Cette action efface toutes les personnalisations pour ce compte dans ce navigateur, notamment :",
|
||||
"clearHistoryTabLayout": "Réinitialiser votre disposition d’onglets personnalisée, y compris les positions de séparateurs",
|
||||
"clearHistoryTableColumns": "Effacez les préférences de colonnes de votre tableau, y compris les colonnes personnalisées",
|
||||
"clearHistoryFilters": "Effacer votre historique de filtres",
|
||||
"clearHistoryRegion": "Réinitialiser la sélection de région à globale",
|
||||
"increaseValueBy1000": "Augmenter la valeur de 1 000",
|
||||
"decreaseValueBy1000": "Diminuer la valeur de 1 000",
|
||||
"none": "Aucun",
|
||||
"low": "Faible",
|
||||
"high": "Élevé",
|
||||
"automatic": "Automatique",
|
||||
"enhancedQueryControl": "Contrôle de requête amélioré",
|
||||
"enableQueryControl": "Activer le contrôle de requête",
|
||||
"explorerVersion": "Version d’Explorer",
|
||||
"accountId": "ID de compte",
|
||||
"sessionId": "ID de session",
|
||||
"popupsDisabledError": "Nous n’avons pas pu établir l’autorisation pour ce compte, car les fenêtres contextuelles sont désactivées dans le navigateur.\nActiver les fenêtres contextuelles pour ce site et cliquer sur le bouton « Connexion avec Entra ID »",
|
||||
"failedToAcquireTokenError": "Nous n’avons pas pu obtenir automatiquement le jeton d’autorisation. Cliquer sur le bouton « Connexion à Entra ID » pour activer les opérations de RBAC d’Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Enregistrer la requête",
|
||||
"setupCostMessage": "Pour des raisons de conformité, nous enregistrons les requêtes dans un conteneur de votre compte Azure Cosmos, au sein d’une base de données distincte appelée « {{databaseName}} ». Pour continuer, nous devons créer un conteneur dans votre compte. Le coût supplémentaire estimé est de 0,77 $ par jour.",
|
||||
"completeSetup": "Terminer la configuration",
|
||||
"noQueryNameError": "Aucun nom de requête n’est spécifié",
|
||||
"invalidQueryContentError": "Le contenu de requête spécifié n’est pas valide",
|
||||
"failedToSaveQueryError": "Nous n’avons pas pu enregistrer la requête {{queryName}}",
|
||||
"failedToSetupContainerError": "Nous n’avons pas pu configurer un conteneur pour les requêtes enregistrées",
|
||||
"accountNotSetupError": "Nous n’avons pas pu enregistrer la requête : le compte n’est pas configuré pour enregistrer les requêtes",
|
||||
"name": "Nom"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Aucun fichier n’est spécifié",
|
||||
"failedToLoadQueryError": "Impossible de charger la requête",
|
||||
"failedToLoadQueryFromFileError": "Nous n’avons pas pu charger la requête à partir du fichier {{fileName}}",
|
||||
"selectFilesToOpen": "Sélectionner un document de requête",
|
||||
"browseFiles": "Parcourir"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Saisir les paramètres d’entrée (le cas échéant)",
|
||||
"key": "Clé",
|
||||
"param": "Paramètre",
|
||||
"partitionKeyValue": "Valeur de la clé de partition",
|
||||
"value": "Valeur",
|
||||
"addNewParam": "Ajouter un nouveau paramètre",
|
||||
"addParam": "Ajouter un paramètre",
|
||||
"deleteParam": "Supprimer le paramètre",
|
||||
"invalidParamError": "Paramètre non valide spécifié : {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Paramètre non valide spécifié : {{invalidParam}} n’est pas une valeur littérale valide",
|
||||
"stringType": "Chaîne",
|
||||
"customType": "Personnalisé"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Aucun fichier n’est spécifié. Indiquez au moins un fichier.",
|
||||
"selectJsonFiles": "Sélectionner des fichiers JSON",
|
||||
"selectJsonFilesTooltip": "Sélectionnez un ou plusieurs fichiers JSON à charger. Chaque fichier peut contenir un document JSON unique ou un groupe de documents JSON. La taille combinée de tous les fichiers lors d’une opération de chargement individuelle doit être inférieure à 2 Mo. Vous pouvez effectuer plusieurs opérations de chargement pour des ensembles de données plus volumineux.",
|
||||
"fileNameColumn": "NOM DE FICHIER",
|
||||
"statusColumn": "ÉTAT",
|
||||
"uploadStatus": "{{numSucceeded}} créé(s), {{numThrottled}} limité(s), {{numFailed}} erreur(s)",
|
||||
"uploadedFiles": "Fichiers chargés"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Nous n’avons pas pu copier {{name}} vers {{destination}}",
|
||||
"uploadFailedError": "Nous n’avons pas pu charger {{name}}",
|
||||
"location": "Emplacement",
|
||||
"locationAriaLabel": "Emplacement",
|
||||
"selectLocation": "Sélectionner un emplacement de bloc-notes vers lequel effectuer une copie",
|
||||
"name": "Nom"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Nous n’avons pas pu publier {{notebookName}} dans la galerie",
|
||||
"publishDescription": "Une fois publié, ce bloc-notes apparaîtra dans la galerie publique de bloc-notes d’Azure Cosmos DB. Veillez à bien supprimer toutes les données sensibles et tout résultat avant la publication.",
|
||||
"publishPrompt": "Voulez-vous publier et partager « {{name}} » dans la galerie ?",
|
||||
"coverImage": "Image de couverture",
|
||||
"coverImageUrl": "URL d’image de couverture",
|
||||
"name": "Nom",
|
||||
"description": "Description",
|
||||
"tags": "Balises",
|
||||
"tagsPlaceholder": "Balise facultative 1, Balise facultative 2",
|
||||
"preview": "Aperçu",
|
||||
"urlType": "URL",
|
||||
"customImage": "Image personnalisée",
|
||||
"takeScreenshot": "Prendre une capture d’écran",
|
||||
"useFirstDisplayOutput": "Utiliser le résultat du premier affichage",
|
||||
"failedToCaptureOutput": "Nous n’avons pas pu capturer le premier résultat",
|
||||
"outputDoesNotExist": "Aucune des cellules ne présente de résultats.",
|
||||
"failedToConvertError": "Nous n’avons pas pu convertir {{fileName}} au format base64",
|
||||
"failedToUploadError": "Nous n’avons pas pu charger {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Nous n’avons pas pu démarrer la tâche de transfert de données",
|
||||
"suboptimalPartitionKeyError": "Avertissement : Le système a détecté que votre collection utilise peut-être une clé de partition sous-optimale",
|
||||
"description": "Lorsque vous modifiez la clé de partition d’un conteneur, vous devez créer un conteneur de destination avec la bonne clé de partition. Vous pouvez également sélectionner un conteneur de destination existant.",
|
||||
"sourceContainerId": "ID de source de {{collectionName}}",
|
||||
"destinationContainerId": "ID de destination de {{collectionName}}",
|
||||
"collectionIdTooltip": "L’identificateur unique du {{collectionName}}, également utilisé pour le routage basé sur l’ID dans REST et tous les SDK.",
|
||||
"collectionIdPlaceholder": "p. ex. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID {{collectionName}}, Exemple {{collectionName}}1",
|
||||
"existingContainers": "Conteneurs existants",
|
||||
"partitionKeyWarning": "Le conteneur de destination ne doit pas déjà exister. L’Explorateur de données vous crée un nouveau conteneur de destination."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nom de l’espace de clés",
|
||||
"keyspaceTooltip": "Sélectionnez un espace de clés existant ou saisissez un nouvel ID d’espace de clés.",
|
||||
"tableIdLabel": "Entrez la commande CQL pour créer le tableau.",
|
||||
"enterTableId": "Entrer l’ID de tableau",
|
||||
"tableSchemaAriaLabel": "Schéma de tableau",
|
||||
"provisionDedicatedThroughput": "Approvisionner le débit dédié pour ce tableau",
|
||||
"provisionDedicatedThroughputTooltip": "Vous pouvez éventuellement approvisionner un débit dédié pour un tableau dans un espace de clés dont le débit est approvisionné. Ce débit dédié ne sera pas partagé avec les autres tableaux de l’espace de clés et ne sera pas pris en compte dans le débit que vous approvisionnez pour l’espace de clés. Cette quantité de débit sera facturée en plus du débit que vous approvisionnez au niveau de l’espace de clés."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Ajouter une propriété",
|
||||
"addRow": "Ajouter une ligne",
|
||||
"addEntity": "Ajouter une entité",
|
||||
"back": "retour",
|
||||
"nullFieldsWarning": "Avertissement : Les champs nuls ne sont pas affichés pour la modification.",
|
||||
"propertyEmptyError": "{{property}} ne peut pas être vide. Entrer une valeur pour {{property}}",
|
||||
"whitespaceError": "{{property}} ne peut pas contenir d’espace. Saisir une valeur pour {{property}}, sans espaces",
|
||||
"propertyTypeEmptyError": "Le type de propriété ne peut pas être vide. Sélectionner un type dans la liste déroulante pour la propriété {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Sélectionnez les colonnes à interroger.",
|
||||
"availableColumns": "Colonnes disponibles"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Sélectionnez les colonnes à afficher dans la vue des éléments de votre conteneur.",
|
||||
"searchFields": "Champs de recherche",
|
||||
"reset": "Réinitialiser",
|
||||
"partitionKeySuffix": " (clé de partition)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Ajouter une propriété"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "ID de conteneur d’index secondaire global",
|
||||
"globalSecondaryIndexIdPlaceholder": "p. ex. indexbyEmailId",
|
||||
"projectionQuery": "Requête de projection",
|
||||
"projectionQueryPlaceholder": "SÉLECTIONNER c.email, c.accountId DE c",
|
||||
"projectionQueryTooltip": "En savoir plus sur la définition des index secondaires globaux.",
|
||||
"disabledTitle": "Un index secondaire global est déjà en cours de création. Attendez qu’il soit terminé avant d’en créer un nouveau."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "L’entrée {{input}} ne correspond pas à l’ID {{selectedId}} sélectionné"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informations",
|
||||
"moreDetails": "Plus de détails"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "Törlés",
|
||||
"update": "Frissítés",
|
||||
"discard": "Elvetés",
|
||||
"execute": "Végrehajtás",
|
||||
"execute": "Execute",
|
||||
"loading": "Betöltés folyamatban",
|
||||
"loadingEllipsis": "Betöltés...",
|
||||
"next": "Következő",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Feltöltés",
|
||||
"connect": "Kapcsolódás",
|
||||
"remove": "Eltávolítás",
|
||||
"load": "Betöltés",
|
||||
"publish": "Közzététel",
|
||||
"browse": "Tallózás",
|
||||
"increaseValueBy1": "Érték növelése 1-gyel",
|
||||
"decreaseValueBy1": "Érték csökkentése 1-gyel"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "Ismerje meg a minta adathalmazok, a dokumentáció és a további eszközök használatának első lépéseit."
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "A Rövid útmutató elindítása",
|
||||
"description": "Gyors üzembe helyezési oktatóanyag indítása a mintaadatok használatának első lépéseihez"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "Új {{collectionName}}",
|
||||
"description": "Új tároló létrehozása a tároláshoz és az átviteli sebességhez"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Azure Cosmos DB minták gyűjteménye",
|
||||
"description": "Fedezzen fel skálázható, intelligens alkalmazásmintákat. Próbálja ki most, hogy lássa, milyen gyorsan válthat a fogalmakról a kódolásra a Cosmos DB használatával"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "Csatlakozás",
|
||||
"description": "Inkább a saját eszközeit használná? Találja meg a kapcsolati sztringet, amire a csatlakozáshoz szüksége van",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "Kapcsolódás pgAdmin használatával",
|
||||
"description": "Előnyben részesíti a pgAdmin-t? Itt találja a kapcsolati sztringeket"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "Csatlakozás VS Code használatával",
|
||||
"description": "MongoDB- és DocumentDB-fürtök lekérdezése és kezelése Visual Studio Code-ban"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Tábla létrehozása és az adatok kezelése a PostgreSQL shell felület használatával"
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Mongo shell",
|
||||
"description": "Gyűjtemény létrehozása és az adatok kezelése a MongoDB felületének használatával"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Most ismerkedik a Cosmos DB PGSQL-lel?",
|
||||
"body": "Üdvözöljük! Ha most ismerkedik a Cosmos DB PGSQL használatával és segítségre van szüksége az első lépésekhez, itt találhat mintaadatokat, lekérdezéseket."
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "Jelszó létrehozása",
|
||||
"body": "Ha még nem módosította a jelszavát, módosítsa most."
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "Kezdje a(z) {{collectionName}} mintával",
|
||||
"body": "Végigvezetjük egy mintatároló létrehozásán mintaadatokkal, majd bemutatjuk az adatkezelőt. A bemutató indítását meg is szakíthatja, és felfedezheti önállóan"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "Legutóbbiak",
|
||||
"clearRecents": "Legutóbbiak törlése",
|
||||
"top3": "A 3 legfontosabb tudnivaló",
|
||||
"learningResources": "Tanulási források",
|
||||
"nextSteps": "Következő lépések",
|
||||
"tipsAndLearnMore": "Tippek és további információ",
|
||||
"notebook": "Jegyzetfüzet",
|
||||
"needHelp": "Segítségre van szüksége?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "Speciális modellezési minták",
|
||||
"description": "Ismerjen meg speciális stratégiákat z adatbázis optimalizálásához."
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Ajánlott particionálási eljárások",
|
||||
"description": "Tudja meg, hogyan alkalmazhat adatmodellt és particionálási stratégiákat."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "Az erőforrás-követelmények megtervezése",
|
||||
"description": "Ismerkedjen meg a különböző konfigurációs lehetőségekkel."
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "Mi az a MongoDB API?",
|
||||
"description": "Ismerje meg az Azure Cosmos DB for MongoDB használatát és funkcióit."
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "Funkciók és szintaxis",
|
||||
"description": "Az előnyök és funkciók felfedezése"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Adatok áttelepítése",
|
||||
"description": "Áttelepítés előtti lépések az adatok áthelyezéséhez"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Java-alkalmazás létrehozása",
|
||||
"description": "Java-alkalmazás létrehozása SDK használatával."
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Ajánlott particionálási eljárások",
|
||||
"description": "Ismerje meg a particionálás működését."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "Kérelemegységek (RU-k)",
|
||||
"description": "A kérelemegység-díjak ismertetése."
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "Adatmodellezés",
|
||||
"description": "Gráfadatok modellezésével kapcsolatos javaslatok"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Ajánlott particionálási eljárások",
|
||||
"description": "Ismerje meg a particionálás működését"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "Adatok lekérdezése",
|
||||
"description": "Adatok lekérdezése a Gremlinnel"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Mi a tábla-API?",
|
||||
"description": "Ismerje meg az Azure Cosmos DB for Table használatát és funkcióit"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Adatok áttelepítése",
|
||||
"description": "Ismerje meg, hogyan telepítheti át az adatait"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Azure Cosmos DB for Table GYIK",
|
||||
"description": "Gyakori kérdések a Azure Cosmos DB for Table kapcsán"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Adatkezelő billentyűparancsok",
|
||||
"description": "Ismerje meg a Data Explorer navigálásához használható billentyűparancsokat."
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "Az alapok megismerése",
|
||||
"description": "Nézze meg Azure Cosmos DB élő tv-műsor bevezető videóit és videóit."
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "Az SDK használatának első lépései",
|
||||
"description": "Tudnivalók a Azure Cosmos DB SDK-ról."
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Adatok áttelepítése",
|
||||
"description": "Adatok áttelepítése Azure-szolgáltatásokkal és nyílt forráskódú megoldásokkal."
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Alkalmazás készítése Node.js használatával",
|
||||
"description": "Hozzon létre egy Node.js alkalmazást."
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Első lépéseket ismertető útmutató",
|
||||
"description": "Első lépésként ismerkedjen meg az alapokkal."
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "Tároló létrehozása",
|
||||
"description": "Ismerje meg a tárolók létrehozásának lehetőségeit."
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "Átviteli sebesség kiosztása",
|
||||
"description": "Útmutató az átviteli sebesség konfigurálásához."
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "Első lépések ",
|
||||
"description": "Létrehozás, lekérdezés és bejárás a Gremlin-konzol használatával"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "Gráfadatok importálása",
|
||||
"description": "Tömeges betöltési adatok megismerése a BulkExecutor használatával"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": ".NET-alkalmazás létrehozása",
|
||||
"description": "Az Azure Cosmos DB for Table elérése .NET-alkalmazásból."
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Java-alkalmazás létrehozása",
|
||||
"description": "Azure Cosmos DB for Table alkalmazás létrehozása Java SDK használatával "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "Adatmodellezés",
|
||||
"distributionColumn": "Terjesztési oszlop kiválasztása",
|
||||
"buildApps": "Alkalmazások készítése Python/Java/Django használatával"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "Adatok áttelepítése",
|
||||
"vectorSearch": "AI-alkalmazások létrehozása vektor keresés használatával",
|
||||
"buildApps": "Alkalmazások létrehozása a Nodejs használatával"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "Teljesítményhangolás",
|
||||
"diagnosticQueries": "Hasznos diagnosztikai lekérdezések",
|
||||
"sqlReference": "Elosztott SQL-referencia"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "Vektor keresés",
|
||||
"textIndexing": "Szövegindexelés",
|
||||
"troubleshoot": "A leggyakoribb problémák elhárítása"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "Adatbázis létrehozása",
|
||||
"useTitle": "Saját adatbázis használata",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "Új tároló",
|
||||
"description": "Céltároló létrehozása az adatok tárolásához"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "Mintaadatok",
|
||||
"description": "Mintaadatok betöltése az adatbázisban"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "Mintavektoradatok",
|
||||
"description": "Mintavektoradatok betöltése text-embedding-ada-002 használatával"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "Alkalmazásfejlesztés",
|
||||
"description": "Kezdje itt az alkalmazások SDK-val történő létrehozásához"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "Mintagyűjtemény",
|
||||
"description": "Valós, teljes körű minták"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "Mintaadatok",
|
||||
"startButton": "Kezdés",
|
||||
"createPrompt": "Hozzon létre egy {{containerName}} tárolót, és importálja a mintaadatokat. Ez több percet is igénybe vehet.",
|
||||
"creatingContainer": "A(z) {{containerName}} tároló létrehozása...",
|
||||
"importingData": "Adatok importálása a következőbe: {{containerName}}...",
|
||||
"success": "A(z) {{containerName}} sikeresen létrehozva mintaadatokkal.",
|
||||
"errorContainerExists": "A(z) {{containerName}} tároló már létezik a(z) {{databaseName}} adatbázisban. Törölje, majd próbálkozzon újra.",
|
||||
"errorCreateContainer": "Nem sikerült létrehozni a tárolót: {{error}}",
|
||||
"errorImportData": "Nem sikerült az adatok importálása: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Új {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} visszaállítása",
|
||||
"deleteDatabase": "{{databaseName}} törlése",
|
||||
"deleteContainer": "{{containerName}} törlése",
|
||||
"newSqlQuery": "Új SQL-lekérdezés",
|
||||
"newQuery": "Új lekérdezés",
|
||||
"openMongoShell": "Mongo-felület megnyitása",
|
||||
"newShell": "Új felület",
|
||||
"openCassandraShell": "Cassandra-felület megnyitása",
|
||||
"newStoredProcedure": "Új tárolt eljárás",
|
||||
"newUdf": "Új UDF",
|
||||
"newTrigger": "Új eseményindító",
|
||||
"deleteStoredProcedure": "Tárolt eljárás törlése",
|
||||
"deleteTrigger": "Trigger törlése",
|
||||
"deleteUdf": "Felhasználó által definiált függvény törlése"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Új elem",
|
||||
"newDocument": "Új dokumentum",
|
||||
"uploadItem": "Elem feltöltése",
|
||||
"applyFilter": "Szűrő alkalmazása",
|
||||
"unsavedChanges": "Nem mentett módosítások",
|
||||
"unsavedChangesMessage": "A nem mentett módosítások elvesznek. Folytatja?",
|
||||
"createDocumentFailed": "A dokumentum létrehozása nem sikerült",
|
||||
"updateDocumentFailed": "A dokumentum frissítése nem sikerült",
|
||||
"documentDeleted": "A dokumentum törlése sikerült.",
|
||||
"deleteDocumentDialogTitle": "Dokumentum törlése",
|
||||
"deleteDocumentsDialogTitle": "Dokumentumok törlése",
|
||||
"throttlingError": "Néhány dokumentum törlése sebességkorlátozási hiba miatt nem sikerült. Próbálkozzon újra később. A jövőben a hasonló esetek elkerülése érdekében fontolja meg a tároló vagy az adatbázis átviteli sebességének növelését.",
|
||||
"deleteFailed": "Nem sikerült törölni a dokumentum(oka)t ({{error}})",
|
||||
"missingShardProperty": "A dokumentumból hiányzik a szegmens tulajdonság: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Nem sikerült frissíteni a dokumentumrácsot",
|
||||
"confirmDelete": "Biztosan törli a következőt: {{documentName}}?",
|
||||
"confirmDeleteTitle": "Törlés megerősítése",
|
||||
"selectedItems": "a kijelölt {{count}} elemek",
|
||||
"selectedItem": "a kijelölt elem",
|
||||
"selectedDocuments": "a kijelölt {{count}} dokumentumok",
|
||||
"selectedDocument": "a kijelölt dokumentum",
|
||||
"deleteDocumentFailedLog": "Nem sikerült törölni a(z) {{statusCode}} állapotkóddal rendelkező {{documentId}} dokumentumot",
|
||||
"deleteSuccessLog": "{{count}} dokumentum törlése sikerült",
|
||||
"deleteThrottledLog": "Nem sikerült törölni {{count}} dokumentumot a „Túl nagy kérés” (429) hiba miatt. Újrapróbálkozás...",
|
||||
"missingShardKeyLog": "Nem sikerült menteni az új dokumentumot: a dokumentum szegmenskulcsa nincs megadva",
|
||||
"filterTooltip": "Írjon be egy lekérdezési predikátumot, vagy válasszon egyet a listából.",
|
||||
"loadMore": "Továbbiak betöltése",
|
||||
"documentEditor": "Dokumentumszerkesztő",
|
||||
"savedFilters": "Mentett szűrők",
|
||||
"defaultFilters": "Alapértelmezett szűrők",
|
||||
"abort": "Megszakítás",
|
||||
"deletingDocuments": "{{count}} dokumentum törlése",
|
||||
"deletedDocumentsSuccess": "{{count}} dokumentum törlése sikerült.",
|
||||
"deleteAborted": "A dokumentum(ok) törlése megszakadt.",
|
||||
"failedToDeleteDocuments": "Nem sikerült törölni {{count}} dokumentumot.",
|
||||
"requestTooLargeBase": "Néhány törlési kérés sikertelen volt a „Túl nagy kérés” kivétel (429) miatt",
|
||||
"retriedSuccessfully": "de a rendszer sikeresen újrapróbálkozott.",
|
||||
"retryingNow": "Újrapróbálkozás most.",
|
||||
"increaseThroughputTip": "A jövőben a hasonló esetek elkerülése érdekében fontolja meg a tároló vagy az adatbázis átviteli sebességének növelését.",
|
||||
"numberOfSelectedDocuments": "A kijelölt dokumentumok száma: {{count}}",
|
||||
"mongoFilterPlaceholder": "Írjon be egy lekérdezési feltételt (pl. {\"id\":\"foo\"}), válasszon egyet a legördülő listából, vagy hagyja üresen az összes dokumentum lekérdezéséhez.",
|
||||
"sqlFilterPlaceholder": "Írjon be egy lekérdezési feltételt (pl. WHERE c.id=\"1\"), válasszon egyet a legördülő listából, vagy hagyja üresen az összes dokumentum lekérdezéséhez.",
|
||||
"error": "Hiba",
|
||||
"warning": "Figyelmeztetés"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Lekérdezés végrehajtása",
|
||||
"executeSelection": "Kijelölés végrehajtása",
|
||||
"saveQuery": "Lekérdezés mentése",
|
||||
"downloadQuery": "Lekérdezés letöltése",
|
||||
"cancelQuery": "Lekérdezés megszakítása",
|
||||
"openSavedQueries": "Mentett lekérdezések megnyitása",
|
||||
"vertical": "Ágazat",
|
||||
"horizontal": "Vízszintes",
|
||||
"view": "Megtekintés",
|
||||
"editingQuery": "Lekérdezés szerkesztése"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Tárolt eljárás azonosítója",
|
||||
"idPlaceholder": "Adja meg az új tárolt eljárás azonosítóját",
|
||||
"idAriaLabel": "Tárolt eljárás azonosítója",
|
||||
"body": "Tárolt eljárás törzse",
|
||||
"bodyAriaLabel": "Tárolt eljárás törzse",
|
||||
"successfulExecution": "A tárolt eljárás sikeres végrehajtása",
|
||||
"resultAriaLabel": "Tárolt eljárás végrehajtásának eredménye",
|
||||
"logsAriaLabel": "Tárolt eljárásnaplók végrehajtása",
|
||||
"errors": "Hibák:",
|
||||
"errorDetailsAriaLabel": "Hiba részleteinek hivatkozása",
|
||||
"moreDetails": "További részletek",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Eseményindító azonosítója",
|
||||
"idPlaceholder": "Adja meg az új eseményindító azonosítóját",
|
||||
"type": "Eseményindító típusa",
|
||||
"operation": "Triggerművelet",
|
||||
"body": "Triggertörzs",
|
||||
"bodyAriaLabel": "Eseményindító törzse",
|
||||
"pre": "Előzetes",
|
||||
"post": "Közzététel",
|
||||
"all": "Az összes",
|
||||
"operationCreate": "Létrehozás",
|
||||
"operationDelete": "Törlés",
|
||||
"operationReplace": "Lecserélés"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Felhasználó által meghatározott függvény azonosítója",
|
||||
"idPlaceholder": "Adja meg az új, felhasználó által meghatározott függvény azonosítóját",
|
||||
"body": "Felhasználó által meghatározott függvény törzse",
|
||||
"bodyAriaLabel": "Felhasználó által meghatározott függvény törzse"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Nem mentett módosítások",
|
||||
"changesWillBeLost": "Az összes módosítás elveszik. Folytatja?",
|
||||
"resolveConflictFailed": "Az ütközés feloldása meghiúsult",
|
||||
"deleteConflictFailed": "Az ütközés törlése nem sikerült",
|
||||
"refreshGridFailed": "Nem sikerült frissíteni a dokumentumrácsot"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo-felület"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "A(z) {{databaseName}} törlése",
|
||||
"warningMessage": "Figyelem! A végrehajtani kívánt művelet nem vonható vissza. Ha folytatja, úgy véglegesen törli az erőforrást és annak minden gyermekerőforrását.",
|
||||
"confirmPrompt": "Megerősítés a(z) {{databaseName}}-azonosító (név) beírásával",
|
||||
"inputMismatch": "A(z) {{databaseName}} bemenet {{input}} neve nem egyezik a kijelölt {{databaseName}} {{selectedId}} értékével",
|
||||
"feedbackTitle": "Segítsen a Azure Cosmos DB továbbfejlesztésében!",
|
||||
"feedbackReason": "Mi a(z) {{databaseName}} törlésének oka?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "A(z) {{collectionName}} törlése",
|
||||
"confirmPrompt": "Megerősítés a(z) {{collectionName}} azonosítójának beírásával",
|
||||
"inputMismatch": "A(z) {{input}} bemeneti azonosító nem egyezik a kijelölt {{selectedId}} értékével",
|
||||
"feedbackTitle": "Segítsen a Azure Cosmos DB továbbfejlesztésében!",
|
||||
"feedbackReason": "Mi a(z) {{collectionName}} törlésének oka?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "{{suffix}} adatbázis",
|
||||
"databaseIdLabel": "Adatbázis-azonosító",
|
||||
"keyspaceIdLabel": "Kulcstér azonosítója",
|
||||
"databaseIdPlaceholder": "Írjon be egy új {{databaseLabel}}-azonosítót",
|
||||
"databaseTooltip": "A(z) {{databaseLabel}} egy vagy több {{collectionsLabel}} logikai tárolója",
|
||||
"shareThroughput": "Átviteli sebesség megosztása az összes {{collectionsLabel}} között",
|
||||
"shareThroughputTooltip": "A(z) {{databaseLabel}} szinten kiépített átviteli sebesség meg lesz osztva az összes {{collectionsLabel}} között a(z) {{databaseLabel}} keretein belül.",
|
||||
"greaterThanError": "Az Autopilot átviteli sebességéhez olyan értéket adjon meg, ami nagyobb, mint {{minValue}}",
|
||||
"acknowledgeSpendError": "Nyugtázza a becsült {{period}} ráfordítást."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Új létrehozása",
|
||||
"useExisting": "Meglévő használata",
|
||||
"databaseTooltip": "Az adatbázis hasonló a névtérhez. Ez a(z) {{collectionName}}-készlet felügyeleti egysége.",
|
||||
"shareThroughput": "Átviteli sebesség megosztása az összes {{collectionName}} között",
|
||||
"shareThroughputTooltip": "Az adatbázis szintjén konfigurált átviteli sebesség az összes {{collectionName}} között meg lesz osztva az adatbázisban.",
|
||||
"collectionIdLabel": "{{collectionName}}-azonosító",
|
||||
"collectionIdTooltip": "A(z) {{collectionName}} egyedi azonosítója, amelyet a rendszer az azonosítóalapú útválasztás során használ a REST-ben és az összes SDK-ban.",
|
||||
"collectionIdPlaceholder": "például {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}}-azonosító, {{collectionName}}1. példa",
|
||||
"existingDatabaseAriaLabel": "Meglévő {{databaseName}}-azonosító kiválasztása",
|
||||
"existingDatabasePlaceholder": "Meglévő {{databaseName}}-azonosító kiválasztása",
|
||||
"indexing": "Indexelés",
|
||||
"turnOnIndexing": "Indexelés bekapcsolása",
|
||||
"automatic": "Automatikus",
|
||||
"turnOffIndexing": "Indexelés kikapcsolása",
|
||||
"off": "Ki",
|
||||
"sharding": "Horizontális skálázás",
|
||||
"shardingTooltip": "A horizontálisan skálázott gyűjtemények több replikakészletre (szegmensre) osztják fel az adatokat a korlátlan méretezhetőség érdekében. A horizontálisan skálázott gyűjtemények esetében ki kell választani egy szegmenskulcsot (mezőt) az adatok egyenletes elosztásához.",
|
||||
"unsharded": "Horizontálisan nem skálázott",
|
||||
"unshardedLabel": "Horizontálisan nem skálázott (20 GB-os korlát)",
|
||||
"sharded": "Horizontálisan skálázott",
|
||||
"addPartitionKey": "Hierarchikus partíciókulcs hozzáadása",
|
||||
"hierarchicalPartitionKeyInfo": "Ez a funkció lehetővé teszi, hogy akár három kulcsszinttel particionálja az adatokat a jobb adatelosztás érdekében. A használatához .NET V3, Java V4 SDK vagy előzetes verziójú JavaScript V3 SDK szükséges.",
|
||||
"provisionDedicatedThroughput": "Dedikált átviteli sebesség kiépítése ehhez: {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionálisan dedikált átviteli sebességet is kioszthat egy {{collectionName}} elemhez egy kiépített átviteli sebességgel rendelkező adatbázison belül. Ez a dedikált átviteli sebesség-mennyiség nem lesz megosztva a kulcstér más {{collectionNamePlural}} elemeivel, és nem számít bele az adatbázis kiosztott átviteli sebességbe. Ezt az átviteli sebességet az adatbázis szintjén kiosztott átviteli sebességen felül számlázzuk.",
|
||||
"uniqueKeysPlaceholderMongo": "Vesszővel elválasztott elérési utak, például firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Vesszővel elválasztott elérési utak, például /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Egyedi kulcs hozzáadása",
|
||||
"enableAnalyticalStore": "Elemzési tár engedélyezése",
|
||||
"disableAnalyticalStore": "Elemzési tár letiltása",
|
||||
"on": "Be",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link szükséges a(z) {{collectionName}} elemzési tár létrehozásához. Engedélyezze a Synapse Link szolgáltatást ehhez a Cosmos DB fiókhoz.",
|
||||
"enable": "Engedélyezés",
|
||||
"containerVectorPolicy": "Tárolóvektor-házirend",
|
||||
"containerFullTextSearchPolicy": "Tároló teljes szöveges keresési szabályzata",
|
||||
"advanced": "Speciális",
|
||||
"mongoIndexingTooltip": "Az _id mező alapértelmezés szerint indexelve van. Egy helyettesítő karakteres index létrehozása az összes mezőhöz optimalizálja a lekérdezéseket; ez ajánlott a fejlesztéshez.",
|
||||
"createWildcardIndex": "Helyettesítő karakteres index létrehozása az összes mezőhöz",
|
||||
"legacySdkCheckbox": "Az alkalmazásom egy régebbi Cosmos .NET- vagy Java SDK-verziót (.NET V1 vagy Java V2) használ",
|
||||
"legacySdkInfo": "A régebbi SDK-kkal való kompatibilitás biztosítása érdekében a létrehozott tároló egy örökölt particionálási sémát fog használni, amely legfeljebb 101 bájt méretű partíciókulcs-értékeket támogat. Ha ez engedélyezve van, nem használhat hierarchikus partíciókulcsokat.",
|
||||
"indexingOnInfo": "A dokumentumok összes tulajdonsága alapértelmezés szerint indexelve lesz a rugalmas és hatékony lekérdezések érdekében.",
|
||||
"indexingOffInfo": "Az indexelés ki lesz kapcsolva. Akkor ajánlott, ha nem kell lekérdezéseket futtatnia, vagy csak kulcsérték-műveletekkel rendelkezik.",
|
||||
"indexingOffWarning": "Ha úgy hozza létre ezt a tárolót, hogy az indexelés ki van kapcsolva, nem fogja tudni módosítani az indexelési szabályzatot. Az indexelési módosítások csak indexelési szabályzattal rendelkező tárolókon engedélyezettek.",
|
||||
"acknowledgeSpendErrorMonthly": "Nyugtázza a becsült havi ráfordítást.",
|
||||
"acknowledgeSpendErrorDaily": "Nyugtázza a becsült napi ráfordítást.",
|
||||
"unshardedMaxRuError": "A horizontálisan nem skálázott gyűjtemények legfeljebb 10 000 kérelemegységet támogatnak",
|
||||
"acknowledgeShareThroughputError": "Nyugtázza a dedikált átviteli sebesség becsült költségét.",
|
||||
"vectorPolicyError": "Javítsa ki a tároló vektorházirendjének hibáit",
|
||||
"fullTextSearchPolicyError": "Javítsa ki a tároló teljes szöveges keresési szabályzatának hibáit",
|
||||
"addingSampleDataSet": "Mintaadatkészlet hozzáadása"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "A szegmenskulcs (mező) az adatok több replikakészletre (szegmensre) való felosztására szolgál a korlátlan méretezhetőség érdekében. Kritikus fontosságú olyan mezőt választani, amely egyenletesen osztja el az adatokat.",
|
||||
"partitionKeyTooltip": "A(z) {{partitionKeyName}} automatikusan elosztja az adatokat a partíciók között a méretezhetőség érdekében. Válasszon egy olyan tulajdonságot a JSON-dokumentumban, amely számos értékkel rendelkezik, és egyenletesen osztja el a kérések mennyiségét.",
|
||||
"partitionKeyTooltipSqlSuffix": " A kisméretű olvasásigényes, vagy bármilyen méretű írásigényes számítási feladatok esetében az azonosító gyakran jó választás.",
|
||||
"shardKeyLabel": "Szegmenskulcs",
|
||||
"partitionKeyLabel": "Partíciókulcs",
|
||||
"shardKeyPlaceholder": "például categoryId",
|
||||
"partitionKeyPlaceholderDefault": "például /address",
|
||||
"partitionKeyPlaceholderFirst": "Kötelező – első partíciókulcs, például /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "második partíciókulcs, például /UserId",
|
||||
"partitionKeyPlaceholderThird": "harmadik partíciókulcs, például /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "például, /address/zipCode",
|
||||
"uniqueKeysTooltip": "Az egyedi kulcsok lehetővé teszik a fejlesztők számára, hogy adatintegritási réteget adjanak az adatbázisukhoz. Egy tároló létrehozásakor egy egyedi kulcsszabályzat létrehozásával biztosítja egy vagy több érték egyediségét partíciókulcsonként.",
|
||||
"uniqueKeysLabel": "Egyedi kulcsok",
|
||||
"analyticalStoreLabel": "Elemzési tár",
|
||||
"analyticalStoreTooltip": "Engedélyezze az elemzési tár képességet, hogy közel valós idejű elemzéseket végezhessen az operatív adatokon anélkül, hogy az hatással lenne a tranzakciós számítási feladatok teljesítményére.",
|
||||
"analyticalStoreDescription": "Engedélyezze az elemzési tár képességet, hogy közel valós idejű elemzéseket végezhessen az operatív adatokon anélkül, hogy az hatással lenne a tranzakciós számítási feladatok teljesítményére.",
|
||||
"vectorPolicyTooltip": "Ismertesse az adataiban a vektorokat tartalmazó tulajdonságokat, hogy elérhetővé lehessen tenni azokat hasonlósági lekérdezésekhez."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Lapbeállítások",
|
||||
"pageOptionsDescription": "Válassza az Egyéni lehetőséget a megjelenítendő lekérdezési eredmények rögzített mennyiségének megadásához, vagy válassza a Korlátlan lehetőséget, ha oldalanként annyi lekérdezési eredményt szeretne megjeleníteni.",
|
||||
"queryResultsPerPage": "Lekérdezési eredmények oldalanként",
|
||||
"queryResultsPerPageTooltip": "Adja meg az oldalanként megjelenítendő lekérdezési eredmények számát.",
|
||||
"customQueryItemsPerPage": "Egyéni lekérdezéselemek oldalanként",
|
||||
"custom": "Egyéni",
|
||||
"unlimited": "Korlátlan",
|
||||
"entraIdRbac": "Entra ID RBAC engedélyezése",
|
||||
"entraIdRbacDescription": "Válassza az Automatikus lehetőséget az Entra ID RBAC automatikus engedélyezéséhez. Igaz/Hamis az Entra ID RBAC engedélyezésének/letiltásának kényszerítéséhez.",
|
||||
"true": "Igaz",
|
||||
"false": "Hamis",
|
||||
"regionSelection": "Régió kiválasztása",
|
||||
"regionSelectionDescription": "A Cosmos-ügyfél által a fiók eléréséhez használt régiót módosítja.",
|
||||
"selectRegion": "Régió kiválasztása",
|
||||
"selectRegionTooltip": "Módosítja az ügyfélműveletek végrehajtásához használt fiókvégpontot.",
|
||||
"globalDefault": "Globális (alapértelmezett)",
|
||||
"readWrite": "(Olvasás/írás)",
|
||||
"read": "(Olvasás)",
|
||||
"queryTimeout": "Lekérdezés időkorlátja",
|
||||
"queryTimeoutDescription": "Ha egy lekérdezés eléri a megadott időkorlátot, megjelenik egy, a lekérdezés megszakítására szolgáló előugró ablak, kivéve, ha engedélyezve van az automatikus megszakítás.",
|
||||
"enableQueryTimeout": "Lekérdezés időtúllépésének engedélyezése",
|
||||
"queryTimeoutMs": "Lekérdezés időkorlátja (ms)",
|
||||
"automaticallyCancelQuery": "Lekérdezés automatikus megszakítása időtúllépés után",
|
||||
"ruLimit": "RU-korlát",
|
||||
"ruLimitDescription": "Ha egy lekérdezés túllépi a konfigurált RU-korlátot, a rendszer megszakítja a lekérdezést.",
|
||||
"enableRuLimit": "RU-korlát bekapcsolása",
|
||||
"ruLimitLabel": "RU-korlát (RU)",
|
||||
"defaultQueryResults": "Lekérdezési eredmények alapértelmezett nézete",
|
||||
"defaultQueryResultsDescription": "Válassza ki a lekérdezés eredményeinek megjelenítésekor használandó alapértelmezett nézetet.",
|
||||
"retrySettings": "Ismétlések beállításai",
|
||||
"retrySettingsDescription": "Szabályozott kérelmekhez társított újrapróbálkozási szabályzat a CosmosDB-lekérdezések során.",
|
||||
"maxRetryAttempts": "Újrapróbálkozások maximális száma",
|
||||
"maxRetryAttemptsTooltip": "A kérelmekhez végrehajtandó újrapróbálkozások maximális száma. Alapértelmezett érték: 9.",
|
||||
"fixedRetryInterval": "Rögzített újrapróbálkozási időköz (ms)",
|
||||
"fixedRetryIntervalTooltip": "Kijavítottuk az egyes újrapróbálkozások közötti várakozáshoz ezredmásodpercben megadott újrapróbálkozási időközt amely, figyelmen kívül hagyta a válasz részeként visszaadott retryAfter értéket. Az alapértelmezett érték 0 ezredmásodperc.",
|
||||
"maxWaitTime": "Maximális várakozási idő (s)",
|
||||
"maxWaitTimeTooltip": "Maximális várakozási idő másodpercben, amíg a rendszer egy kérelemre várakozik, amíg az újrapróbálkozások történnek. Alapértelmezett érték: 30 másodperc.",
|
||||
"enableContainerPagination": "Tároló oldalakra tördelésének engedélyezése",
|
||||
"enableContainerPaginationDescription": "Egyszerre 50 tároló betöltése. A tárolók lekérése jelenleg nem alfanumerikus sorrendben történik.",
|
||||
"enableCrossPartitionQuery": "Partíciók közötti lekérdezés engedélyezése",
|
||||
"enableCrossPartitionQueryDescription": "Lekérdezés végrehajtása során több kérés is küldhető. Egynél több kérésre van szükség, ha a lekérdezés hatóköre nincs egyetlen partíciókulcs-értékre korlátozva.",
|
||||
"maxDegreeOfParallelism": "Párhuzamosság maximális foka",
|
||||
"maxDegreeOfParallelismDescription": "Lekérdezi vagy beállítja az egyidejűleg futtatott műveletek számát az ügyféloldalon a párhuzamos lekérdezés-végrehajtás során. A pozitív tulajdonságérték az egyidejű műveletek számát a beállított értékre korlátozza. Ha 0-nál kisebb értékre van állítva, a rendszer automatikusan eldönti az egyidejű futtatandó műveletek számát.",
|
||||
"maxDegreeOfParallelismQuery": "Lekérdezés a párhuzamosság maximális mértékéig.",
|
||||
"priorityLevel": "Prioritásszint",
|
||||
"priorityLevelDescription": "Beállítja a prioritási szintet a Data Explorerből érkező adatsík-kérelmekhez prioritásalapú végrehajtás használatakor. Ha a Nincs érték van kiválasztva, a Data Explorer nem adja meg a prioritási szintet, és a kiszolgálóoldali alapértelmezett prioritási szintet fogja használni.",
|
||||
"displayGremlinQueryResults": "Gremlin-lekérdezés eredményeinek megjelenítése a következőként:",
|
||||
"displayGremlinQueryResultsDescription": "Válassza a Graph lehetőséget a lekérdezés eredményeinek automatikusan gráfként, vagy a JSON lehetőséget JSON-ként való megjelenítéséhez.",
|
||||
"graph": "Gráf",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Gráf automatikus vizualizációja",
|
||||
"enableSampleDatabase": "Mintaadatbázis engedélyezése",
|
||||
"enableSampleDatabaseDescription": "Ez egy mintaadatbázis és -gyűjtemény szintetikus termékadatokkal, amelyeket NoSQL-lekérdezésekkel való felderítésre használhat. Ez egy másik adatbázisként jelenik meg a Data Explorer felhasználói felületén, amelyet a Microsoft hoz létre és tart karban díjmentesen.",
|
||||
"enableSampleDbAriaLabel": "Mintaadatbázis engedélyezése a lekérdezések feltárásához",
|
||||
"guidRepresentation": "GUID-ábrázolás",
|
||||
"guidRepresentationDescription": "A MongoDB GuidRepresentation tulajdonsága arra utal, hogy a globálisan egyedi azonosítók (GUID-ok) szerializálása és deszerializálása hogyan történik BSON-dokumentumokban való tárolás esetén. Ez minden dokumentumműveletre érvényes lesz.",
|
||||
"advancedSettings": "Speciális beállítások",
|
||||
"ignorePartitionKey": "Partíciókulcs figyelmen kívül hagyása a dokumentum frissítésekor",
|
||||
"ignorePartitionKeyTooltip": "Ha be van jelölve, a rendszer nem használja a partíciókulcs értékét a dokumentum megkereséséhez a frissítési műveletek során. Csak akkor használja, ha a dokumentumfrissítések rendellenes partíciókulcs miatt meghiúsulnak.",
|
||||
"clearHistory": "Előzmények törlése",
|
||||
"clearHistoryConfirm": "Biztosan folytatja?",
|
||||
"clearHistoryDescription": "Ez a művelet törli a fiók összes testreszabását ebben a böngészőben, beleértve a következőket:",
|
||||
"clearHistoryTabLayout": "A testre szabott lapelrendezés alaphelyzetbe állítása, beleértve az elválasztóhelyeket is",
|
||||
"clearHistoryTableColumns": "A táblázat oszlopbeállításainak törlése, beleértve az egyéni oszlopokat is",
|
||||
"clearHistoryFilters": "Szűrőelőzmények törlése",
|
||||
"clearHistoryRegion": "Régiókiválasztás visszaállítása globálisra",
|
||||
"increaseValueBy1000": "Érték növelése 1000-rel",
|
||||
"decreaseValueBy1000": "Érték csökkentése 1000-rel",
|
||||
"none": "Nincs",
|
||||
"low": "Alacsony",
|
||||
"high": "Magas",
|
||||
"automatic": "Automatikus",
|
||||
"enhancedQueryControl": "Továbbfejlesztett lekérdezésvezérlő",
|
||||
"enableQueryControl": "Lekérdezésvezérlő engedélyezése",
|
||||
"explorerVersion": "Explorer verziója",
|
||||
"accountId": "Fiókazonosító",
|
||||
"sessionId": "Munkamenet-azonosító",
|
||||
"popupsDisabledError": "Nem sikerült hitelesítést létrehozni ehhez a fiókhoz, mert a böngészőben le vannak tiltva az előugró ablakok.\nEngedélyezze az előugró ablakokat ehhez a webhelyhez, majd kattintson az Entra ID bejelentkezés gombra",
|
||||
"failedToAcquireTokenError": "Nem sikerült automatikusan beszerezni az engedélyezési jogkivonatot. Kattintson az Entra ID bejelentkezés gombra az Entra ID RBAC-műveletek engedélyezéséhez"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Lekérdezés mentése",
|
||||
"setupCostMessage": "Megfelelőségi okokból a lekérdezéseket egy tárolóba mentjük az Azure Cosmos-fiókjában, egy különálló, {{databaseName}} nevű adatbázisban. A folytatáshoz létre kell hoznunk egy tárolót a fiókjában. A becsült további költség naponta 0,77 USD.",
|
||||
"completeSetup": "Beállítás befejezése",
|
||||
"noQueryNameError": "Nincs megadva lekérdezésnév",
|
||||
"invalidQueryContentError": "Érvénytelen lekérdezési tartalom megadva",
|
||||
"failedToSaveQueryError": "A(z) {{queryName}} lekérdezés mentése nem sikerült",
|
||||
"failedToSetupContainerError": "Nem sikerült beállítani tárolót a mentett lekérdezésekhez",
|
||||
"accountNotSetupError": "Nem sikerült menteni a lekérdezést: a fiók nincs beállítva a lekérdezések mentéséhez",
|
||||
"name": "Név"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Nincs megadva fájl",
|
||||
"failedToLoadQueryError": "Nem sikerült betölteni a lekérdezést",
|
||||
"failedToLoadQueryFromFileError": "Nem sikerült betölteni a lekérdezést (z) {{fileName}} fájlból",
|
||||
"selectFilesToOpen": "Lekérdezési dokumentum kiválasztása",
|
||||
"browseFiles": "Tallózás"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Adja meg a bemeneti paramétereket (ha vannak ilyenek)",
|
||||
"key": "Kulcs",
|
||||
"param": "Paraméter",
|
||||
"partitionKeyValue": "Partíciókulcs értéke",
|
||||
"value": "Érték",
|
||||
"addNewParam": "Új paraméter hozzáadása",
|
||||
"addParam": "Paraméter hozzáadása",
|
||||
"deleteParam": "Paraméter törlése",
|
||||
"invalidParamError": "Érvénytelen paraméter megadva: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Érvénytelen paraméter megadva: a(z) {{invalidParam}} nem érvényes konstansérték",
|
||||
"stringType": "Sztring",
|
||||
"customType": "Egyéni"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Nincs megadva fájl. Adjon meg legalább egy fájlt.",
|
||||
"selectJsonFiles": "JSON-fájlok kiválasztása",
|
||||
"selectJsonFilesTooltip": "Jelöljön ki egy vagy több feltöltendő JSON-fájlt. Minden fájl egyetlen JSON-dokumentumot vagy egy JSON-dokumentumtömböt tartalmazhat. Az egyes feltöltési műveletek összes fájljának összesített méretének 2 MB alatt kell lennie. Nagyobb adatkészletek esetében több feltöltési műveletet is végrehajthat.",
|
||||
"fileNameColumn": "FÁJLNÉV",
|
||||
"statusColumn": "ÁLLAPOT",
|
||||
"uploadStatus": "{{numSucceeded}} létrehozva, {{numThrottled}} szabályozva, {{numFailed}} hiba",
|
||||
"uploadedFiles": "Feltöltött fájlok"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Nem sikerült a(z) {{name}} másolása ide: {{destination}}",
|
||||
"uploadFailedError": "Nem sikerült a(z) {{name}} feltöltése",
|
||||
"location": "Hely",
|
||||
"locationAriaLabel": "Hely",
|
||||
"selectLocation": "Jegyzetfüzet másolási helyének kiválasztása",
|
||||
"name": "Név"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Nem sikerült a(z) {{notebookName}} közzététele a katalógusban",
|
||||
"publishDescription": "Közzétételkor ez a jegyzetfüzet megjelenik a Azure Cosmos DB jegyzetfüzetek nyilvános katalógusában. A közzététel előtt győződjön meg arról, hogy eltávolította a bizalmas adatokat vagy kimeneteket.",
|
||||
"publishPrompt": "Közzéteszi és megosztja a(z) {{name}} dokumentumot a katalógusban?",
|
||||
"coverImage": "Borítókép",
|
||||
"coverImageUrl": "Borítókép URL-címe",
|
||||
"name": "Név",
|
||||
"description": "Leírás",
|
||||
"tags": "Címkék",
|
||||
"tagsPlaceholder": "Nem kötelező címke 1, nem kötelező címke 2",
|
||||
"preview": "Előzetes verzió",
|
||||
"urlType": "URL-cím",
|
||||
"customImage": "Egyéni rendszerkép",
|
||||
"takeScreenshot": "Képernyőkép készítése",
|
||||
"useFirstDisplayOutput": "Első megjelenítési kimenet használata",
|
||||
"failedToCaptureOutput": "Nem sikerült rögzíteni az első kimenetet",
|
||||
"outputDoesNotExist": "A kimenet nem létezik egyik cellához sem.",
|
||||
"failedToConvertError": "Nem sikerült a(z) {{fileName}} base64 formátumra való konvertálása",
|
||||
"failedToUploadError": "Nem sikerült a(z) {{fileName}} feltöltése"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Nem sikerült elindítani az adatátviteli feladatot",
|
||||
"suboptimalPartitionKeyError": "Figyelmeztetés: A rendszer úgy észlelte, hogy a gyűjtemény valószínűleg nem optimális partíciókulcsot használ",
|
||||
"description": "A tároló partíciókulcsának módosításakor létre kell hoznia egy céltárolót a megfelelő partíciókulccsal. Kiválaszthat egy meglévő céltárolót is.",
|
||||
"sourceContainerId": "Forrás {{collectionName}}-azonosítója",
|
||||
"destinationContainerId": "Cél {{collectionName}}-azonosítója",
|
||||
"collectionIdTooltip": "A(z) {{collectionName}} egyedi azonosítója, amelyet a rendszer az azonosítóalapú útválasztás során használ a REST-ben és az összes SDK-ban.",
|
||||
"collectionIdPlaceholder": "például {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}}-azonosító, {{collectionName}}1. példa",
|
||||
"existingContainers": "Meglévő tárolók",
|
||||
"partitionKeyWarning": "A céltároló még nem létezhet. A Data Explorer egy új céltárolót hoz létre."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Kulcstér neve",
|
||||
"keyspaceTooltip": "Válasszon ki egy meglévő kulcsteret, vagy adjon meg egy új kulcstér-azonosítót.",
|
||||
"tableIdLabel": "A tábla létrehozásához írja be a CQL parancsot.",
|
||||
"enterTableId": "Táblaazonosító megadása",
|
||||
"tableSchemaAriaLabel": "Táblaséma",
|
||||
"provisionDedicatedThroughput": "Dedikált átviteli sebesség kiépítése ehhez a táblához",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionálisan dedikált átviteli sebességet is kioszthat egy táblához egy kiépített átviteli sebességgel rendelkező kulcstéren belül. Ez a dedikált átviteli sebesség nem lesz megosztva a kulcstér más tábláival, és nem számít bele a kulcstérhez kiosztott átviteli sebességbe. Ezt az átviteli sebességet a kulcstér szintjén kiosztott átviteli sebességen felül számlázzuk."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Tulajdonság hozzáadása",
|
||||
"addRow": "Sor hozzáadása",
|
||||
"addEntity": "Entitás hozzáadása",
|
||||
"back": "vissza",
|
||||
"nullFieldsWarning": "Figyelmeztetés: A null értékű mezők nem jelennek meg szerkesztésre.",
|
||||
"propertyEmptyError": "A(z) {{property}} nem lehet üres. Adjon meg egy értéket a(z) {{property}} tulajdonsághoz",
|
||||
"whitespaceError": "a(z) {{property}} nem rendelkezhet szóközzel. Adjon meg egy szóköz nélküli értéket a(z) {{property}} számára",
|
||||
"propertyTypeEmptyError": "A tulajdonságtípus nem lehet üres. Válasszon típust a(z) {{property}}tulajdonság legördülő listájából"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Válassza ki a lekérdezni kívánt oszlopokat.",
|
||||
"availableColumns": "Elérhető oszlopok"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Válassza ki, hogy mely oszlopok jelenjenek meg a tároló elemeinek nézetében.",
|
||||
"searchFields": "Mezők keresése",
|
||||
"reset": "Alaphelyzetbe állítás",
|
||||
"partitionKeySuffix": " (partíciókulcs)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Tulajdonság hozzáadása"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Globális másodlagos index tárolóazonosítója",
|
||||
"globalSecondaryIndexIdPlaceholder": "például indexbyEmailId",
|
||||
"projectionQuery": "Leképezési lekérdezés",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "További információ a globális másodlagos indexek definiálásáról.",
|
||||
"disabledTitle": "Már folyamatban van egy globális másodlagos index létrehozása. Várja meg, amíg befejeződik, mielőtt egy másikat hozna létre."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "A(z) {{input}} bemenet nem egyezik a kijelölt {{selectedId}} értékével"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Információ",
|
||||
"moreDetails": "További részletek"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Unggah",
|
||||
"connect": "Sambungkan",
|
||||
"remove": "Hapus",
|
||||
"load": "Muat",
|
||||
"publish": "Terbitkan",
|
||||
"browse": "Telusuri",
|
||||
"increaseValueBy1": "Tambah nilai sebesar 1",
|
||||
"decreaseValueBy1": "Kurangi nilai sebesar 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Gagal membuat kontainer: {{error}}",
|
||||
"errorImportData": "Gagal mengimpor data: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "{{containerName}} baru",
|
||||
"restoreContainer": "Pulihkan {{containerName}}",
|
||||
"deleteDatabase": "Hapus {{databaseName}}",
|
||||
"deleteContainer": "Hapus {{containerName}}",
|
||||
"newSqlQuery": "Kueri SQL Baru",
|
||||
"newQuery": "Kueri Baru",
|
||||
"openMongoShell": "Buka Mongo Shell",
|
||||
"newShell": "Shell Baru",
|
||||
"openCassandraShell": "Buka Cassandra Shell",
|
||||
"newStoredProcedure": "Prosedur Tersimpan Baru",
|
||||
"newUdf": "UDF baru",
|
||||
"newTrigger": "Pemicu Baru",
|
||||
"deleteStoredProcedure": "Hapus Prosedur tersimpan",
|
||||
"deleteTrigger": "Hapus Pemicu",
|
||||
"deleteUdf": "Hapus Fungsi yang Ditentukan Pengguna"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Item Baru",
|
||||
"newDocument": "Dokumen Baru",
|
||||
"uploadItem": "Unggah Item",
|
||||
"applyFilter": "Terapkan Filter",
|
||||
"unsavedChanges": "Perubahan yang belum disimpan",
|
||||
"unsavedChangesMessage": "Perubahan yang belum disimpan akan hilang. Lanjutkan?",
|
||||
"createDocumentFailed": "Gagal membuat dokumen",
|
||||
"updateDocumentFailed": "Gagal memperbarui dokumen",
|
||||
"documentDeleted": "Dokumen berhasil dihapus.",
|
||||
"deleteDocumentDialogTitle": "Hapus dokumen",
|
||||
"deleteDocumentsDialogTitle": "Hapus dokumen",
|
||||
"throttlingError": "Beberapa dokumen gagal dihapus karena kesalahan pembatasan laju. Coba lagi nanti. Untuk mencegah hal ini terjadi lagi, coba tambah throughput di kontainer atau database Anda.",
|
||||
"deleteFailed": "Gagal menghapus dokumen ({{error}})",
|
||||
"missingShardProperty": "Dokumen tidak memiliki properti shard: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Gagal me-refresh kisi dokumen",
|
||||
"confirmDelete": "Yakin ingin menghapus {{documentName}}?",
|
||||
"confirmDeleteTitle": "Konfirmasikan penghapusan",
|
||||
"selectedItems": "{{count}} item yang dipilih",
|
||||
"selectedItem": "item yang dipilih",
|
||||
"selectedDocuments": "{{count}} dokumen yang dipilih",
|
||||
"selectedDocument": "dokumen yang dipilih",
|
||||
"deleteDocumentFailedLog": "Gagal menghapus dokumen {{documentId}} dengan kode status {{statusCode}}",
|
||||
"deleteSuccessLog": "{{count}} dokumen berhasil dihapus",
|
||||
"deleteThrottledLog": "Gagal menghapus {{count}} dokumen karena kesalahan \"Permintaan terlalu besar\" (429). Mencoba lagi...",
|
||||
"missingShardKeyLog": "Gagal menyimpan dokumen baru: Kunci shard dokumen tidak ditentukan",
|
||||
"filterTooltip": "Ketik predikat kueri atau pilih salah satu dari daftar.",
|
||||
"loadMore": "Muat lainnya",
|
||||
"documentEditor": "Editor dokumen",
|
||||
"savedFilters": "Filter tersimpan",
|
||||
"defaultFilters": "Filter default",
|
||||
"abort": "Batalkan",
|
||||
"deletingDocuments": "Menghapus {{count}} dokumen",
|
||||
"deletedDocumentsSuccess": "Berhasil menghapus {{count}} dokumen.",
|
||||
"deleteAborted": "Penghapusan dokumen dibatalkan.",
|
||||
"failedToDeleteDocuments": "Gagal menghapus {{count}} dokumen.",
|
||||
"requestTooLargeBase": "Beberapa permintaan penghapusan gagal karena pengecualian \"Permintaan terlalu besar\" (429)",
|
||||
"retriedSuccessfully": "tetapi berhasil dicoba ulang.",
|
||||
"retryingNow": "Mencoba lagi sekarang.",
|
||||
"increaseThroughputTip": "Untuk mencegah hal ini terjadi lagi, coba tambah throughput di kontainer atau database Anda.",
|
||||
"numberOfSelectedDocuments": "Jumlah dokumen yang dipilih: {{count}}",
|
||||
"mongoFilterPlaceholder": "Ketik predikat kueri (misalnya, {\"id\":\"foo\"}), atau pilih salah satu dari daftar menurun, atau biarkan kosong untuk mengkueri semua dokumen.",
|
||||
"sqlFilterPlaceholder": "Ketik predikat kueri (misalnya, WHERE c.id=\"1\"), atau pilih salah satu dari daftar menurun, atau kosongkan untuk mengkueri semua dokumen.",
|
||||
"error": "Kesalahan",
|
||||
"warning": "Peringatan"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Jalankan Kueri",
|
||||
"executeSelection": "Jalankan Pilihan",
|
||||
"saveQuery": "Simpan Kueri",
|
||||
"downloadQuery": "Unduh Kueri",
|
||||
"cancelQuery": "Batalkan kueri",
|
||||
"openSavedQueries": "Buka Kueri Tersimpan",
|
||||
"vertical": "Vertikal",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "Tampilkan",
|
||||
"editingQuery": "Mengedit Kueri"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID Prosedur Tersimpan",
|
||||
"idPlaceholder": "Masukkan ID prosedur baru yang disimpan",
|
||||
"idAriaLabel": "ID prosedur tersimpan",
|
||||
"body": "Isi Prosedur Tersimpan",
|
||||
"bodyAriaLabel": "Isi prosedur tersimpan",
|
||||
"successfulExecution": "Eksekusi prosedur tersimpan berhasil",
|
||||
"resultAriaLabel": "Jalankan hasil prosedur tersimpan",
|
||||
"logsAriaLabel": "Jalankan log prosedur tersimpan",
|
||||
"errors": "Kesalahan:",
|
||||
"errorDetailsAriaLabel": "Tautan detail kesalahan",
|
||||
"moreDetails": "Detail selengkapnya",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID Pemicu",
|
||||
"idPlaceholder": "Masukkan ID pemicu baru",
|
||||
"type": "Tipe Pemicu",
|
||||
"operation": "Operasi Pemicu",
|
||||
"body": "Isi Pemicu",
|
||||
"bodyAriaLabel": "Isi pemicu",
|
||||
"pre": "Pra",
|
||||
"post": "Posting",
|
||||
"all": "Semua",
|
||||
"operationCreate": "Buat",
|
||||
"operationDelete": "Hapus",
|
||||
"operationReplace": "Ganti"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID Fungsi yang Ditentukan Pengguna",
|
||||
"idPlaceholder": "Masukkan ID fungsi yang ditentukan pengguna baru",
|
||||
"body": "Isi Fungsi yang Ditentukan Pengguna",
|
||||
"bodyAriaLabel": "Isi fungsi yang ditentukan pengguna"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Perubahan yang belum disimpan",
|
||||
"changesWillBeLost": "Perubahan akan hilang. Lanjutkan?",
|
||||
"resolveConflictFailed": "Gagal mengatasi konflik",
|
||||
"deleteConflictFailed": "Gagal menghapus konflik",
|
||||
"refreshGridFailed": "Gagal me-refresh kisi dokumen"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Hapus {{databaseName}}",
|
||||
"warningMessage": "Peringatan! Tindakan yang akan Anda lakukan tidak dapat dibatalkan. Melanjutkan akan menghapus sumber daya dan semua sumber daya anaknya secara permanen.",
|
||||
"confirmPrompt": "Konfirmasikan dengan mengetik id {{databaseName}} (nama)",
|
||||
"inputMismatch": "Nama {{databaseName}} input \"{{input}}\" tidak cocok dengan {{databaseName}} \"{{selectedId}}\" yang dipilih",
|
||||
"feedbackTitle": "Bantuan kami meningkatkan Azure Cosmos DB!",
|
||||
"feedbackReason": "Apa alasan menghapus {{databaseName}} ini?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Hapus {{collectionName}}",
|
||||
"confirmPrompt": "Konfirmasikan dengan mengetik id {{collectionName}}",
|
||||
"inputMismatch": "Id input {{input}} tidak cocok dengan {{selectedId}} yang dipilih",
|
||||
"feedbackTitle": "Bantuan kami meningkatkan Azure Cosmos DB!",
|
||||
"feedbackReason": "Apa alasan menghapus {{collectionName}} ini?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Database {{suffix}}",
|
||||
"databaseIdLabel": "Id database",
|
||||
"keyspaceIdLabel": "Id ruang kunci",
|
||||
"databaseIdPlaceholder": "Ketik id {{databaseLabel}} baru",
|
||||
"databaseTooltip": "{{databaseLabel}} adalah kontainer logis dari satu atau beberapa {{collectionsLabel}}",
|
||||
"shareThroughput": "Bagikan throughput di {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Throughput yang diprovisi di tingkat {{databaseLabel}} akan dibagikan ke semua {{collectionsLabel}} dalam {{databaseLabel}}.",
|
||||
"greaterThanError": "Masukkan nilai yang lebih besar dari {{minValue}} untuk throughput autopilot",
|
||||
"acknowledgeSpendError": "Setujui perkiraan pengeluaran {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Buat baru",
|
||||
"useExisting": "Gunakan yang sudah ada",
|
||||
"databaseTooltip": "Database serupa dengan namespace. Ini adalah unit manajemen untuk serangkaian {{collectionName}}.",
|
||||
"shareThroughput": "Bagikan throughput di {{collectionName}}",
|
||||
"shareThroughputTooltip": "Throughput yang dikonfigurasi di tingkat database akan dibagikan ke semua {{collectionName}} dalam database.",
|
||||
"collectionIdLabel": "{{collectionName}} id",
|
||||
"collectionIdTooltip": "Pengidentifikasi unik untuk {{collectionName}} dan digunakan untuk perutean berbasis id melalui REST dan semua SDK.",
|
||||
"collectionIdPlaceholder": "misalnya, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Contoh {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Pilih id {{databaseName}} yang sudah ada",
|
||||
"existingDatabasePlaceholder": "Pilih id {{databaseName}} yang sudah ada",
|
||||
"indexing": "Mengindeks",
|
||||
"turnOnIndexing": "Aktifkan pengindeksan",
|
||||
"automatic": "Otomatis",
|
||||
"turnOffIndexing": "Nonaktifkan pengindeksan",
|
||||
"off": "Nonaktif",
|
||||
"sharding": "Pecahan",
|
||||
"shardingTooltip": "Koleksi yang dipecah membagi data Anda ke banyak set replika (shard) untuk mencapai skalabilitas tanpa batas. Koleksi yang dipecah mengharuskan pemilihan kunci shard (bidang) untuk mendistribusikan data secara merata.",
|
||||
"unsharded": "Tidak dipecah",
|
||||
"unshardedLabel": "Tidak dipecah (batas 20GB)",
|
||||
"sharded": "Dipecah",
|
||||
"addPartitionKey": "Tambahkan kunci partisi hierarkis",
|
||||
"hierarchicalPartitionKeyInfo": "Fitur ini memungkinkan partisi data dengan maksimal tiga tingkat kunci untuk distribusi data yang lebih baik. Memerlukan .NET V3, Java V4 SDK, atau pratinjau JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Provisikan throughput khusus untuk {{collectionName}} ini",
|
||||
"provisionDedicatedThroughputTooltip": "Anda juga dapat memprovisikan throughput khusus untuk {{collectionName}} dalam ruang kunci yang sudah memiliki provisi throughput. Jumlah throughput khusus ini tidak akan dibagikan dengan {{collectionNamePlural}} lain dalam ruang kunci dan tidak dihitung ke dalam throughput yang Anda provisikan untuk ruang kunci tersebut. Jumlah throughput ini akan ditagih di luar throughput yang Anda provisikan di tingkat database.",
|
||||
"uniqueKeysPlaceholderMongo": "Jalur yang dipisahkan koma, misalnya firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Jalur yang dipisahkan koma, misalnya /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Tambahkan kunci unik",
|
||||
"enableAnalyticalStore": "Aktifkan penyimpanan analitik",
|
||||
"disableAnalyticalStore": "Nonaktifkan penyimpanan analitik",
|
||||
"on": "Aktif",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link diperlukan untuk membuat penyimpanan analitik {{collectionName}}. Aktifkan Azure Synapse Link untuk akun Cosmos DB ini.",
|
||||
"enable": "Aktifkan",
|
||||
"containerVectorPolicy": "Kebijakan Vektor Kontainer",
|
||||
"containerFullTextSearchPolicy": "Kebijakan Pencarian Teks Lengkap Kontainer",
|
||||
"advanced": "Tingkat lanjut",
|
||||
"mongoIndexingTooltip": "Field _id diindeks secara default. Membuat indeks wildcard untuk semua bidang akan mengoptimalkan kueri dan disarankan untuk pengembangan.",
|
||||
"createWildcardIndex": "Buat Indeks Wildcard di semua bidang",
|
||||
"legacySdkCheckbox": "Aplikasi saya menggunakan versi Cosmos .NET atau Java SDK lama (.NET V1 atau Java V2)",
|
||||
"legacySdkInfo": "Untuk memastikan kompatibilitas dengan SDK lama, kontainer yang dibuat akan menggunakan skema partisi lama yang mendukung nilai kunci partisi dengan ukuran maksimal 101 byte. Jika diaktifkan, Anda tidak dapat menggunakan kunci partisi hierarkis.",
|
||||
"indexingOnInfo": "Semua properti dalam dokumen akan diindeks secara default untuk kueri yang fleksibel dan efisien.",
|
||||
"indexingOffInfo": "Pengindeksan akan dinonaktifkan. Disarankan jika Anda tidak perlu menjalankan kueri atau hanya melakukan operasi nilai kunci.",
|
||||
"indexingOffWarning": "Dengan membuat kontainer ini dengan pengindeksan dinonaktifkan, Anda tidak dapat mengubah kebijakan pengindeksan. Perubahan pengindeksan hanya diperbolehkan terhadap kontainer dengan kebijakan pengindeksan.",
|
||||
"acknowledgeSpendErrorMonthly": "Setujui perkiraan pengeluaran bulanan.",
|
||||
"acknowledgeSpendErrorDaily": "Setujui perkiraan pengeluaran harian.",
|
||||
"unshardedMaxRuError": "Koleksi yang tidak dipecah mendukung hingga 10.000 RU",
|
||||
"acknowledgeShareThroughputError": "Setujui perkiraan biaya throughput khusus ini.",
|
||||
"vectorPolicyError": "Perbaiki kesalahan dalam kebijakan vektor kontainer",
|
||||
"fullTextSearchPolicyError": "Perbaiki kesalahan dalam kebijakan pencarian teks lengkap kontainer",
|
||||
"addingSampleDataSet": "Menambahkan sampel himpunan data"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Kunci shard (bidang) digunakan untuk membagi data Anda ke banyak set replika (shard) untuk mencapai skalabilitas tanpa batas. Penting memilih bidang yang mendistribusikan data secara merata.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} digunakan untuk mendistribusikan data secara otomatis di seluruh partisi untuk skalabilitas. Pilih properti dalam dokumen JSON Anda yang memiliki berbagai nilai dan mendistribusikan volume permintaan secara merata.",
|
||||
"partitionKeyTooltipSqlSuffix": " Untuk beban kerja baca berat atau beban kerja tulis berat yang kecil dengan ukuran apa pun, id sering menjadi pilihan yang baik.",
|
||||
"shardKeyLabel": "Tombol shard",
|
||||
"partitionKeyLabel": "Kunci partisi",
|
||||
"shardKeyPlaceholder": "misalnya, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "misalnya, /address",
|
||||
"partitionKeyPlaceholderFirst": "Wajib - kunci partisi pertama misalnya, /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "kunci partisi kedua misalnya, /UserId",
|
||||
"partitionKeyPlaceholderThird": "kunci partisi ketiga misalnya, /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "misalnya /address/zipCode",
|
||||
"uniqueKeysTooltip": "Kunci unik memberi pengembang kemampuan menambahkan lapisan integritas data ke database. Dengan membuat kebijakan kunci unik saat kontainer dibuat, Anda memastikan keunikan satu atau beberapa nilai per kunci partisi.",
|
||||
"uniqueKeysLabel": "Kunci unik",
|
||||
"analyticalStoreLabel": "Penyimpanan Analitik",
|
||||
"analyticalStoreTooltip": "Aktifkan kemampuan penyimpanan analitik untuk melakukan analitik mendekati real-time terhadap data operasional tanpa memengaruhi performa beban kerja transaksional.",
|
||||
"analyticalStoreDescription": "Aktifkan kemampuan penyimpanan analitik untuk melakukan analitik mendekati real-time terhadap data operasional tanpa memengaruhi performa beban kerja transaksional.",
|
||||
"vectorPolicyTooltip": "Jelaskan properti dalam data Anda yang berisi vektor agar dapat disediakan untuk kueri kemiripan."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opsi Halaman",
|
||||
"pageOptionsDescription": "Pilih Kustom untuk menentukan jumlah hasil kueri tetap yang akan ditampilkan, atau pilih Tak Terbatas untuk menampilkan sebanyak mungkin hasil kueri per halaman.",
|
||||
"queryResultsPerPage": "Hasil kueri per halaman",
|
||||
"queryResultsPerPageTooltip": "Masukkan jumlah hasil kueri yang harus ditampilkan per halaman.",
|
||||
"customQueryItemsPerPage": "Item kueri kustom per halaman",
|
||||
"custom": "Kustom",
|
||||
"unlimited": "Tidak terbatas",
|
||||
"entraIdRbac": "Aktifkan RBAC Entra ID",
|
||||
"entraIdRbacDescription": "Pilih Otomatis untuk mengaktifkan RBAC Entra ID secara otomatis. True/False untuk mengaktifkan atau menonaktifkan RBAC Entra ID secara paksa.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "Pemilihan Wilayah",
|
||||
"regionSelectionDescription": "Mengubah wilayah yang digunakan Klien Cosmos untuk mengakses akun.",
|
||||
"selectRegion": "Pilih Wilayah",
|
||||
"selectRegionTooltip": "Mengubah titik akhir akun yang digunakan untuk melakukan operasi klien.",
|
||||
"globalDefault": "Global (Default)",
|
||||
"readWrite": "(Baca/Tulis)",
|
||||
"read": "(Baca)",
|
||||
"queryTimeout": "Batas Waktu Kueri",
|
||||
"queryTimeoutDescription": "Saat kueri mencapai batas waktu yang ditentukan, popup dengan opsi untuk membatalkan kueri akan muncul kecuali pembatalan otomatis telah diaktifkan.",
|
||||
"enableQueryTimeout": "Aktifkan batas waktu kueri",
|
||||
"queryTimeoutMs": "Batas waktu kueri (mdtk)",
|
||||
"automaticallyCancelQuery": "Batalkan kueri secara otomatis setelah batas waktu",
|
||||
"ruLimit": "RU Limit",
|
||||
"ruLimitDescription": "Jika kueri melebihi batas RU yang dikonfigurasi, kueri akan dibatalkan.",
|
||||
"enableRuLimit": "Aktifkan batas RU",
|
||||
"ruLimitLabel": "RU Limit (RU)",
|
||||
"defaultQueryResults": "Tampilan Hasil Kueri Default",
|
||||
"defaultQueryResultsDescription": "Pilih tampilan default untuk digunakan saat menampilkan hasil kueri.",
|
||||
"retrySettings": "Pengaturan Coba Lagi",
|
||||
"retrySettingsDescription": "Kebijakan percobaan kembali yang terkait dengan permintaan yang dibatasi selama kueri CosmosDB.",
|
||||
"maxRetryAttempts": "Upaya percobaan kembali maks",
|
||||
"maxRetryAttemptsTooltip": "Jumlah maks percobaan kembali yang akan dilakukan untuk sebuah permintaan. Nilai default 9.",
|
||||
"fixedRetryInterval": "Interval percobaan kembali tetap (mdtk)",
|
||||
"fixedRetryIntervalTooltip": "Interval percobaan kembali tetap dalam milidetik untuk menunggu di antara setiap percobaan kembali, mengabaikan retryAfter yang dihasilkan sebagai bagian dari respons. Nilai default-nya adalah 0 milidetik.",
|
||||
"maxWaitTime": "Waktu tunggu maks (dtk)",
|
||||
"maxWaitTimeTooltip": "Waktu tunggu maks dalam detik untuk menunggu permintaan selama percobaan kembali berlangsung. Nilai default 30 detik.",
|
||||
"enableContainerPagination": "Aktifkan penomoran halaman kontainer",
|
||||
"enableContainerPaginationDescription": "Muat 50 kontainer sekaligus. Saat ini, kontainer tidak dimuat dalam urutan alfanumerik.",
|
||||
"enableCrossPartitionQuery": "Aktifkan kueri partisi silang",
|
||||
"enableCrossPartitionQueryDescription": "Kirim lebih dari satu permintaan saat menjalankan kueri. Lebih dari satu permintaan diperlukan jika kueri tidak dibatasi pada satu nilai kunci partisi.",
|
||||
"maxDegreeOfParallelism": "Tingkat paralelisme maksimum",
|
||||
"maxDegreeOfParallelismDescription": "Mengambil atau mengatur jumlah operasi serentak yang dijalankan di sisi klien selama eksekusi kueri paralel. Nilai properti positif membatasi jumlah operasi serentak sesuai nilai yang ditetapkan. Jika diatur kurang dari 0, sistem menentukan secara otomatis jumlah operasi serentak yang dijalankan.",
|
||||
"maxDegreeOfParallelismQuery": "Kueri hingga tingkat paralelisme maks.",
|
||||
"priorityLevel": "Tingkat Prioritas",
|
||||
"priorityLevelDescription": "Menetapkan tingkat prioritas untuk permintaan data-plane dari Data Explorer saat menggunakan Eksekusi Berbasis Prioritas. Jika dipilih \"Tidak ada\", Data Explorer tidak akan menentukan tingkat prioritas dan tingkat prioritas default sisi server akan digunakan.",
|
||||
"displayGremlinQueryResults": "Tampilkan hasil kueri Gremlin sebagai:",
|
||||
"displayGremlinQueryResultsDescription": "Pilih Grafik untuk memvisualisasikan hasil kueri secara otomatis sebagai Grafik atau JSON untuk menampilkan hasil sebagai JSON.",
|
||||
"graph": "Grafik",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualisasi Otomatis Grafik",
|
||||
"enableSampleDatabase": "Aktifkan sampel database",
|
||||
"enableSampleDatabaseDescription": "Ini adalah database dan koleksi sampel dengan data produk sintetis yang dapat digunakan untuk menjelajahi kueri NoSQL. Ini akan muncul sebagai database lain di UI Data Explorer, dibuat dan dikelola oleh Microsoft tanpa biaya untuk Anda.",
|
||||
"enableSampleDbAriaLabel": "Aktifkan db sampel untuk penjelajahan kueri",
|
||||
"guidRepresentation": "Representasi Guid",
|
||||
"guidRepresentationDescription": "GuidRepresentation di MongoDB mengacu pada cara Pengidentifikasi Unik Global (GUID) diserialisasi dan dideserialisasi saat disimpan dalam dokumen BSON. Ini berlaku untuk semua operasi dokumen.",
|
||||
"advancedSettings": "Pengaturan Tingkat Lanjut",
|
||||
"ignorePartitionKey": "Abaikan kunci partisi saat memperbarui dokumen",
|
||||
"ignorePartitionKeyTooltip": "Jika dicentang, nilai kunci partisi tidak akan digunakan untuk menemukan dokumen selama operasi pembaruan. Gunakan hanya jika pembaruan dokumen gagal karena kunci partisi yang tidak normal.",
|
||||
"clearHistory": "Hapus Riwayat",
|
||||
"clearHistoryConfirm": "Yakin ingin melanjutkan?",
|
||||
"clearHistoryDescription": "Tindakan ini akan menghapus semua kustomisasi untuk akun ini di browser ini, termasuk:",
|
||||
"clearHistoryTabLayout": "Atur ulang tata letak tab yang dikustomisasi, termasuk posisi pemisah",
|
||||
"clearHistoryTableColumns": "Hapus preferensi kolom tabel Anda, termasuk kolom kustom apa pun",
|
||||
"clearHistoryFilters": "Hapus riwayat filter Anda",
|
||||
"clearHistoryRegion": "Atur ulang pilihan wilayah ke global",
|
||||
"increaseValueBy1000": "Naikkan nilai sebesar 1000",
|
||||
"decreaseValueBy1000": "Kurangi nilai sebesar 1000",
|
||||
"none": "Tidak ada",
|
||||
"low": "Rendah",
|
||||
"high": "Tinggi",
|
||||
"automatic": "Otomatis",
|
||||
"enhancedQueryControl": "Kontrol kueri yang disempurnakan",
|
||||
"enableQueryControl": "Aktifkan kontrol kueri",
|
||||
"explorerVersion": "Versi Explorer",
|
||||
"accountId": "ID Akun",
|
||||
"sessionId": "ID Sesi",
|
||||
"popupsDisabledError": "Kami tidak dapat melakukan otorisasi untuk akun ini karena pop-up dinonaktifkan di browser.\nAktifkan pop-up untuk situs ini dan klik tombol \"Masuk untuk ID Entra\"",
|
||||
"failedToAcquireTokenError": "Gagal memperoleh token otorisasi secara otomatis. Klik tombol \"Masuk untuk Entra ID\" untuk mengaktifkan operasi RBAC Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Simpan Kueri",
|
||||
"setupCostMessage": "Untuk alasan kepatuhan, kami menyimpan kueri dalam kontainer di akun Azure Cosmos Anda, di database terpisah bernama \"{{databaseName}}\". Untuk melanjutkan, kami perlu membuat kontainer di akun Anda, dengan perkiraan biaya tambahan $0,77 per hari.",
|
||||
"completeSetup": "Selesaikan penyiapan",
|
||||
"noQueryNameError": "Tidak ada nama kueri yang ditentukan",
|
||||
"invalidQueryContentError": "Konten kueri yang ditentukan tidak valid",
|
||||
"failedToSaveQueryError": "Gagal menyimpan kueri {{queryName}}",
|
||||
"failedToSetupContainerError": "Gagal menyiapkan kontainer untuk kueri tersimpan",
|
||||
"accountNotSetupError": "Gagal menyimpan kueri: akun tidak disiapkan untuk menyimpan kueri",
|
||||
"name": "Nama"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Tidak ada file yang ditentukan",
|
||||
"failedToLoadQueryError": "Gagal memuat kueri.",
|
||||
"failedToLoadQueryFromFileError": "Gagal memuat kueri dari file {{fileName}}",
|
||||
"selectFilesToOpen": "Pilih dokumen kueri",
|
||||
"browseFiles": "Telusuri"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Masukkan parameter input (jika ada)",
|
||||
"key": "Kunci",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Nilai kunci partisi",
|
||||
"value": "Nilai",
|
||||
"addNewParam": "Tambahkan Parameter Baru",
|
||||
"addParam": "Tambahkan parameter",
|
||||
"deleteParam": "Hapus parameter",
|
||||
"invalidParamError": "Parameter yang ditentukan tidak valid: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Parameter yang ditentukan tidak valid: {{invalidParam}} bukan nilai literal yang valid",
|
||||
"stringType": "String",
|
||||
"customType": "Kustom"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Tidak ada file yang ditentukan. Masukkan setidaknya satu file.",
|
||||
"selectJsonFiles": "Pilih Files JSON",
|
||||
"selectJsonFilesTooltip": "Pilih satu atau beberapa file JSON untuk diunggah. Setiap file dapat berisi satu dokumen JSON atau susunan dokumen JSON. Ukuran gabungan semua file dalam satu operasi pengunggahan harus kurang dari 2 MB. Anda dapat melakukan beberapa operasi pengunggahan untuk himpunan data yang lebih besar.",
|
||||
"fileNameColumn": "NAMA FILE",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} dibuat, {{numThrottled}} dibatasi, {{numFailed}} kesalahan",
|
||||
"uploadedFiles": "File yang diunggah"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Gagal menyalin {{name}} ke {{destination}}",
|
||||
"uploadFailedError": "Gagal mengunggah {{name}}",
|
||||
"location": "Lokasi",
|
||||
"locationAriaLabel": "Lokasi",
|
||||
"selectLocation": "Pilih lokasi buku catatan untuk disalin",
|
||||
"name": "Nama"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Gagal menerbitkan {{notebookName}} ke galeri",
|
||||
"publishDescription": "Saat diterbitkan, buku catatan ini akan muncul di galeri publik buku catatan Azure Cosmos DB. Pastikan Anda telah menghapus data atau output sensitif sebelum menerbitkan.",
|
||||
"publishPrompt": "Apakah Anda ingin menerbitkan dan membagikan \"{{name}}\" ke galeri?",
|
||||
"coverImage": "Gambar sampul",
|
||||
"coverImageUrl": "Url gambar sampul",
|
||||
"name": "Nama",
|
||||
"description": "Deskripsi",
|
||||
"tags": "Tag",
|
||||
"tagsPlaceholder": "Tag opsional 1, Tag opsional 2",
|
||||
"preview": "Pratinjau",
|
||||
"urlType": "URL",
|
||||
"customImage": "Gambar Kustom",
|
||||
"takeScreenshot": "Ambil Cuplikan Layar",
|
||||
"useFirstDisplayOutput": "Gunakan Output Tampilan Pertama",
|
||||
"failedToCaptureOutput": "Gagal mengambil output pertama",
|
||||
"outputDoesNotExist": "Output tidak ada untuk sel mana pun.",
|
||||
"failedToConvertError": "Gagal mengonversi {{fileName}} ke format base64",
|
||||
"failedToUploadError": "Gagal mengunggah {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Gagal memulai tugas transfer data",
|
||||
"suboptimalPartitionKeyError": "Peringatan: Sistem mendeteksi bahwa koleksi Anda mungkin menggunakan kunci partisi yang kurang optimal",
|
||||
"description": "Saat mengubah kunci partisi kontainer, Anda harus membuat kontainer tujuan dengan kunci partisi yang benar. Anda juga dapat memilih kontainer tujuan yang sudah ada.",
|
||||
"sourceContainerId": "ID {{collectionName}} sumber",
|
||||
"destinationContainerId": "Id {{collectionName}} tujuan",
|
||||
"collectionIdTooltip": "Pengidentifikasi unik untuk {{collectionName}} dan digunakan untuk perutean berbasis id melalui REST dan semua SDK.",
|
||||
"collectionIdPlaceholder": "misalnya, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Contoh {{collectionName}}1",
|
||||
"existingContainers": "Kontainer yang Sudah Ada",
|
||||
"partitionKeyWarning": "Kontainer tujuan tidak boleh sudah ada. Data Explorer akan membuat kontainer tujuan baru untuk Anda."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nama ruang kunci",
|
||||
"keyspaceTooltip": "Pilih ruang kunci yang sudah ada atau masukkan ID ruang kunci baru.",
|
||||
"tableIdLabel": "Masukkan perintah CQL untuk membuat tabel.",
|
||||
"enterTableId": "Masukkan id tabel",
|
||||
"tableSchemaAriaLabel": "Skema tabel",
|
||||
"provisionDedicatedThroughput": "Provisikan throughput khusus untuk tabel ini",
|
||||
"provisionDedicatedThroughputTooltip": "Anda juga dapat memprovisikan throughput khusus untuk tabel dalam ruang kunci yang sudah memiliki provisi throughput. Jumlah throughput khusus ini tidak akan dibagikan dengan tabel lain dalam ruang kunci dan tidak dihitung ke dalam throughput yang Anda provisikan untuk ruang kunci tersebut. Jumlah throughput ini akan ditagih di luar throughput yang Anda provisikan di tingkat ruang kunci."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Tambahkan Properti",
|
||||
"addRow": "Tambahkan Baris",
|
||||
"addEntity": "Tambahkan Entitas",
|
||||
"back": "kembali",
|
||||
"nullFieldsWarning": "Peringatan: Field null tidak akan ditampilkan untuk pengeditan.",
|
||||
"propertyEmptyError": "{{property}} tidak boleh kosong. Masukkan nilai untuk {{property}}",
|
||||
"whitespaceError": "{{property}} tidak boleh berisi spasi. Masukkan nilai untuk {{property}} tanpa spasi",
|
||||
"propertyTypeEmptyError": "Jenis properti tidak boleh kosong. Pilih tipe dari dropdown untuk properti {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Pilih kolom yang ingin dikueri.",
|
||||
"availableColumns": "Kolom yang Tersedia"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Pilih kolom yang akan ditampilkan dalam tampilan item di kontainer Anda.",
|
||||
"searchFields": "Bidang pencarian",
|
||||
"reset": "Atur ulang",
|
||||
"partitionKeySuffix": " (kunci partisi)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Tambahkan Properti"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Id kontainer indeks sekunder global",
|
||||
"globalSecondaryIndexIdPlaceholder": "misalnya, indexbyEmailId",
|
||||
"projectionQuery": "Kueri proyeksi",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Pelajari lebih lanjut tentang mendefinisikan indeks sekunder global.",
|
||||
"disabledTitle": "Indeks sekunder global sedang dibuat. Tunggu hingga selesai sebelum memulai yang lain."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Input {{input}} tidak cocok dengan {{selectedId}} yang dipilih"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informasi",
|
||||
"moreDetails": "Detail selengkapnya"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,2 +0,0 @@
|
||||
export { Keys } from "./Keys.generated";
|
||||
export { t } from "./t";
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "Elimina",
|
||||
"update": "Aggiorna",
|
||||
"discard": "Rimuovi",
|
||||
"execute": "Esegui",
|
||||
"execute": "Execute",
|
||||
"loading": "Caricamento",
|
||||
"loadingEllipsis": "Caricamento...",
|
||||
"next": "Avanti",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Carica",
|
||||
"connect": "Connetti",
|
||||
"remove": "Rimuovi",
|
||||
"load": "Carica",
|
||||
"publish": "Pubblica",
|
||||
"browse": "Sfoglia",
|
||||
"increaseValueBy1": "Aumentare il valore di 1",
|
||||
"decreaseValueBy1": "Diminuisci il valore di 1"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "Inizia con i nostri set di dati di esempio, la documentazione e gli strumenti aggiuntivi."
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "Avviare l'avvio rapido",
|
||||
"description": "Avvia un'esercitazione di avvio rapido per iniziare con i dati di esempio"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "Nuova {{collectionName}}",
|
||||
"description": "Crea un nuovo contenitore per archiviazione e velocità effettiva"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Galleria di esempi di Azure Cosmos DB",
|
||||
"description": "Scoprire esempi che mostrano modelli di app scalabili e intelligenti. Prova subito uno di questi esempi per vedere quanto velocemente puoi passare dal concetto al codice con Cosmos DB"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "Connetti",
|
||||
"description": "Preferisci usare gli strumenti che scegli tu? Trova la stringa di connessione necessaria per collegarti",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "Connettiti con pgAdmin",
|
||||
"description": "Preferisci pgAdmin? Trovare le stringhe di connessione qui"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "Connetti con VS Code",
|
||||
"description": "Esegui query e gestisci i cluster MongoDB e DocumentDB in Visual Studio Code"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "Shell di PostgreSQL",
|
||||
"description": "Creare una tabella e interagire con i dati usando l'interfaccia shell di PostgreSQL"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Shell Mongo",
|
||||
"description": "Creare una raccolta e interagire con i dati usando l'interfaccia shell di MongoDB"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Nuovo utente di Cosmos DB PGSQL?",
|
||||
"body": "Ti diamo il benvenuto! Se non si ha familiarità con Cosmos DB PGSQL e si ha bisogno di assistenza per iniziare, qui è possibile trovare dati di esempio ed eseguire query."
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "Crea la password",
|
||||
"body": "Se la password non è ancora stata modificata, modificarla ora."
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "Inizia con l'esempio {{collectionName}}",
|
||||
"body": "L'utente verrà guidato nella creazione di un contenitore di esempio con dati di esempio, quindi verrà visualizzata una presentazione di Esplora dati. È anche possibile annullare l'avvio di questa presentazione ed eseguire l'esplorazione da soli"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "Recenti",
|
||||
"clearRecents": "Cancella recenti",
|
||||
"top3": "Le 3 cose principali da sapere",
|
||||
"learningResources": "Risorse di formazione",
|
||||
"nextSteps": "Passaggi successivi",
|
||||
"tipsAndLearnMore": "Suggerimenti e altre informazioni",
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Serve aiuto?"
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "Modelli di modellazione avanzati",
|
||||
"description": "Informazioni sulle strategie avanzate per ottimizzare il database."
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Procedure consigliate per il partizionamento",
|
||||
"description": "Informazioni su come applicare il modello di dati e le strategie di partizionamento."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "Pianifica i requisiti delle risorse",
|
||||
"description": "Informazioni sulle diverse opzioni di configurazione."
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "Cos'è l'API MongoDB?",
|
||||
"description": "Informazioni su Azure Cosmos DB for MongoDB e le relative funzionalità."
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "Funzionalità e sintassi",
|
||||
"description": "Scoprire i vantaggi e le funzionalità"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Esegui la migrazione dei dati",
|
||||
"description": "Passaggi preliminari per la migrazione dei dati"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Crea un'app Java",
|
||||
"description": "Crea un'app Java usando un SDK."
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Procedure consigliate per il partizionamento",
|
||||
"description": "Informazioni sul funzionamento del partizionamento."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "Unità richiesta",
|
||||
"description": "Informazioni sugli addebiti per le UR."
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "Modellazione dei dati",
|
||||
"description": "Raccomandazioni per la modellazione dei dati di Graph"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Procedure consigliate per il partizionamento",
|
||||
"description": "Informazioni sul funzionamento del partizionamento"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "Esegui query sui dati",
|
||||
"description": "Esecuzione di query sui dati con Gremlin"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Cos'è l'API Table?",
|
||||
"description": "Informazioni su Azure Cosmos DB for Table e le relative funzionalità"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Esegui la migrazione dei dati",
|
||||
"description": "Informazioni su come eseguire la migrazione dei dati"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Domande frequenti su Azure Cosmos DB for Table",
|
||||
"description": "Domande comuni su Azure Cosmos DB for Table"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Scelte rapide da tastiera di Esplora dati",
|
||||
"description": "Informazioni sulle scelte rapide da tastiera per spostarsi in Esplora dati."
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "Informazioni sulle nozioni fondamentali",
|
||||
"description": "Guarda il programma Azure Cosmos DB Live TV e i video introduttivi e dimostrativi."
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "Attività iniziali con un SDK",
|
||||
"description": "Informazioni sull'SDK di Azure Cosmos DB."
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Esegui la migrazione dei dati",
|
||||
"description": "Esegui la migrazione dei dati con i servizi di Azure e le soluzioni open source."
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Crea un'app con Node.js",
|
||||
"description": "Crea un'app Node.js."
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Guida introduttiva",
|
||||
"description": "Informazioni di base per iniziare."
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "Crea un contenitore",
|
||||
"description": "Informazioni sulle opzioni di creazione di un contenitore."
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "Provisioning velocità effettiva",
|
||||
"description": "Informazioni su come configurare la velocità effettiva."
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "Attività iniziali ",
|
||||
"description": "Crea, esegui query e naviga usando la console Gremlin"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "Importa dati di Graph",
|
||||
"description": "Informazioni sull'inserimento di dati in blocco con BulkExecutor"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": "Crea un'app .NET",
|
||||
"description": "Come accedere ad Azure Cosmos DB for Table da un'app .NET."
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Crea un'app Java",
|
||||
"description": "Crea un'app Azure Cosmos DB for Table con Java SDK "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "Modellazione dei dati",
|
||||
"distributionColumn": "Come scegliere una colonna di distribuzione",
|
||||
"buildApps": "Crea app con Python/Java/Django"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "Esegui la migrazione dei dati",
|
||||
"vectorSearch": "Crea app IA con Ricerca vettoriale",
|
||||
"buildApps": "Crea app con Node.js"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "Ottimizzazione delle prestazioni",
|
||||
"diagnosticQueries": "Query diagnostiche utili",
|
||||
"sqlReference": "Riferimento SQL distribuito"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "Ricerca vettoriale",
|
||||
"textIndexing": "Indicizzazione del testo",
|
||||
"troubleshoot": "Risolvere i problemi comuni"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "Crea il database",
|
||||
"useTitle": "Usa il database",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "Nuovo contenitore",
|
||||
"description": "Crea un contenitore di destinazione per archiviare i dati"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "Dati di esempio",
|
||||
"description": "Carica i dati di esempio nel database"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "Dati vettoriali di esempio",
|
||||
"description": "Carica dati vettoriali di esempio con text-embedding-ada-002"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "Sviluppo di app",
|
||||
"description": "Inizia da qui per usare un SDK per creare le app"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "Raccolta di esempi",
|
||||
"description": "Ottieni esempi end-to-end reali"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "Dati di esempio",
|
||||
"startButton": "Avvia",
|
||||
"createPrompt": "Crea un contenitore \"{{containerName}}\" e importa al suo interno i dati di esempio. L'operazione potrebbe richiedere alcuni minuti.",
|
||||
"creatingContainer": "Creazione del contenitore \"{{containerName}}\"...",
|
||||
"importingData": "Importazione dei dati in \"{{containerName}}\"...",
|
||||
"success": "Creazione di \"{{containerName}}\" con dati di esempio completata.",
|
||||
"errorContainerExists": "Il contenitore \"{{containerName}}\" nel database \"{{databaseName}}\" esiste già. Eliminarlo e riprovare.",
|
||||
"errorCreateContainer": "Non è possibile creare il contenitore {{error}}",
|
||||
"errorImportData": "Non è possibile importare i dati: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nuovo {{containerName}}",
|
||||
"restoreContainer": "Ripristina {{containerName}}",
|
||||
"deleteDatabase": "Elimina {{databaseName}}",
|
||||
"deleteContainer": "Elimina {{containerName}}",
|
||||
"newSqlQuery": "Nuova query SQL",
|
||||
"newQuery": "Nuova query",
|
||||
"openMongoShell": "Apri shell Mongo",
|
||||
"newShell": "Nuova Shell",
|
||||
"openCassandraShell": "Apri shell Cassandra",
|
||||
"newStoredProcedure": "Nuova stored procedure",
|
||||
"newUdf": "Nuova funzione definita dall'utente",
|
||||
"newTrigger": "Nuovo trigger",
|
||||
"deleteStoredProcedure": "Elimina stored procedure",
|
||||
"deleteTrigger": "Elimina trigger",
|
||||
"deleteUdf": "Elimina funzione definita dall'utente"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nuovo elemento",
|
||||
"newDocument": "Nuovo documento",
|
||||
"uploadItem": "Carica elemento",
|
||||
"applyFilter": "Applica filtro",
|
||||
"unsavedChanges": "Modifiche non salvate",
|
||||
"unsavedChangesMessage": "Le modifiche non salvate andranno perse. Continuare?",
|
||||
"createDocumentFailed": "Non è possibile creare il documento",
|
||||
"updateDocumentFailed": "Non è possibile aggiornare il documento",
|
||||
"documentDeleted": "Documento eliminato correttamente.",
|
||||
"deleteDocumentDialogTitle": "Eliminare il documento",
|
||||
"deleteDocumentsDialogTitle": "Elimina documenti",
|
||||
"throttlingError": "Alcuni documenti non sono stati eliminati a causa di un errore di limitazione della velocità. Riprova più tardi. Per evitare che si ripeta in futuro, valuta la possibilità di aumentare la velocità effettiva nel tuo contenitore o database.",
|
||||
"deleteFailed": "Eliminazione documento/i non riuscita ({{error}})",
|
||||
"missingShardProperty": "Nel documento manca la proprietà di partizione: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Aggiornamento griglia documenti non riuscito",
|
||||
"confirmDelete": "Eliminare {{documentName}}?",
|
||||
"confirmDeleteTitle": "Conferma eliminazione",
|
||||
"selectedItems": "i {{count}} elementi selezionati",
|
||||
"selectedItem": "l'elemento selezionato",
|
||||
"selectedDocuments": "i {{count}} documenti selezionati",
|
||||
"selectedDocument": "il documento selezionato",
|
||||
"deleteDocumentFailedLog": "Non è possibile eliminare il documento {{documentId}} con codice di stato {{statusCode}}",
|
||||
"deleteSuccessLog": "Eliminazione di {{count}} documento/i eseguita correttamente",
|
||||
"deleteThrottledLog": "Non è possibile eliminare {{count}} documento/i a causa di un errore di tipo \"Richiesta troppo grande\" (429). Nuovo tentativo in corso...",
|
||||
"missingShardKeyLog": "Non è possibile salvare il nuovo documento: chiave di partizione del documento non definita",
|
||||
"filterTooltip": "Digitare un predicato di query o sceglierne uno dall'elenco.",
|
||||
"loadMore": "Carica altro",
|
||||
"documentEditor": "Editor di documenti",
|
||||
"savedFilters": "Filtri salvati",
|
||||
"defaultFilters": "Filtri predefiniti",
|
||||
"abort": "Interrompi",
|
||||
"deletingDocuments": "Eliminazione di {{count}} documento/i",
|
||||
"deletedDocumentsSuccess": "Eliminazione di {{count}} documento/i eseguita correttamente.",
|
||||
"deleteAborted": "L'eliminazione di uno o più documenti è stata interrotta.",
|
||||
"failedToDeleteDocuments": "Non è possibile eliminare {{count}} documento/i.",
|
||||
"requestTooLargeBase": "Non è possibile eliminare alcune richieste a causa di un'eccezione di tipo \"Richiesta troppo grande\" (429)",
|
||||
"retriedSuccessfully": "ma un nuovo tentativo è andato a buon fine.",
|
||||
"retryingNow": "Nuovo tentativo in corso.",
|
||||
"increaseThroughputTip": "Per evitare che si ripeta in futuro, valuta la possibilità di aumentare la velocità effettiva nel tuo contenitore o database.",
|
||||
"numberOfSelectedDocuments": "Numero di documenti selezionati: {{count}}",
|
||||
"mongoFilterPlaceholder": "Digitare un predicato di query (ad esempio {\"id\":\"foo\"}), sceglierne uno dall'elenco a discesa oppure lasciare vuoto il campo per eseguire la query su tutti i documenti.",
|
||||
"sqlFilterPlaceholder": "Digitare un predicato di query (ad esempio WHERE c.id=\"1\"), sceglierne uno dall'elenco a discesa oppure lasciare vuoto il campo per eseguire la query su tutti i documenti.",
|
||||
"error": "Errore",
|
||||
"warning": "Avviso"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Esegui query",
|
||||
"executeSelection": "Esegui selezione",
|
||||
"saveQuery": "Salva query",
|
||||
"downloadQuery": "Scarica query",
|
||||
"cancelQuery": "Annulla query",
|
||||
"openSavedQueries": "Apri query salvate",
|
||||
"vertical": "Verticale",
|
||||
"horizontal": "Orizzontale",
|
||||
"view": "Visualizza",
|
||||
"editingQuery": "Modifica della query"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID stored procedure",
|
||||
"idPlaceholder": "Immettere il nuovo ID stored procedure",
|
||||
"idAriaLabel": "ID stored procedure",
|
||||
"body": "Corpo della stored procedure",
|
||||
"bodyAriaLabel": "Corpo stored procedure",
|
||||
"successfulExecution": "Stored procedure eseguita correttamente",
|
||||
"resultAriaLabel": "Eseguire il risultato della stored procedure",
|
||||
"logsAriaLabel": "Eseguire log delle stored procedure",
|
||||
"errors": "Errori:",
|
||||
"errorDetailsAriaLabel": "Collegamento dettagli errori",
|
||||
"moreDetails": "Altri dettagli",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID trigger",
|
||||
"idPlaceholder": "Immettere il nuovo ID trigger",
|
||||
"type": "Tipo di trigger",
|
||||
"operation": "Operazione trigger",
|
||||
"body": "Corpo trigger",
|
||||
"bodyAriaLabel": "Corpo del trigger",
|
||||
"pre": "Pre",
|
||||
"post": "Pubblicare",
|
||||
"all": "Tutti",
|
||||
"operationCreate": "Crea",
|
||||
"operationDelete": "Elimina",
|
||||
"operationReplace": "Sostituisci"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID funzione definita dall'utente",
|
||||
"idPlaceholder": "Immettere l'ID della nuova funzione definita dall'utente",
|
||||
"body": "Corpo della funzione definita dall'utente",
|
||||
"bodyAriaLabel": "Corpo della funzione definita dall'utente"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Modifiche non salvate",
|
||||
"changesWillBeLost": "Le modifiche andranno perse. Continuare?",
|
||||
"resolveConflictFailed": "Risoluzione conflitto non riuscita",
|
||||
"deleteConflictFailed": "Non è possibile eliminare il conflitto",
|
||||
"refreshGridFailed": "Aggiornamento griglia documenti non riuscito"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Shell Mongo"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Elimina {{databaseName}}",
|
||||
"warningMessage": "Avviso! L'azione che si sta per eseguire non può essere annullata. Se si continua, la risorsa verrà definitivamente eliminata insieme a tutte le relative risorse figlio.",
|
||||
"confirmPrompt": "Conferma digitando l'ID {{databaseName}} (nome)",
|
||||
"inputMismatch": "Il nome di input {{databaseName}} \"{{input}}\" non corrisponde all'elemento {{databaseName}} selezionato \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Aiutaci a migliorare Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual è il motivo per cui si sta eliminando {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Elimina {{collectionName}}",
|
||||
"confirmPrompt": "Conferma digitando l'ID {{collectionName}}",
|
||||
"inputMismatch": "L'ID input {{input}} non corrisponde all'elemento {{selectedId}} selezionato",
|
||||
"feedbackTitle": "Aiutaci a migliorare Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual è il motivo per cui si sta eliminando {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Database {{suffix}}",
|
||||
"databaseIdLabel": "ID database",
|
||||
"keyspaceIdLabel": "ID spazio chiavi",
|
||||
"databaseIdPlaceholder": "Digitare un nuovo ID {{databaseLabel}}",
|
||||
"databaseTooltip": "Un {{databaseLabel}} è un contenitore logico di una o più {{collectionsLabel}}",
|
||||
"shareThroughput": "Condividi velocità effettiva in {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "La velocità effettiva con provisioning al livello {{databaseLabel}} sarà condivisa tra tutte le {{collectionsLabel}} all'interno di {{databaseLabel}}.",
|
||||
"greaterThanError": "Immettere un valore maggiore di {{minValue}} per la velocità effettiva di Autopilot",
|
||||
"acknowledgeSpendError": "Confermare la spesa stimata di {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Crea nuovo",
|
||||
"useExisting": "Usa esistente",
|
||||
"databaseTooltip": "Un database è analogo a uno spazio dei nomi. È l'unità di gestione per un set di {{collectionName}}.",
|
||||
"shareThroughput": "Condividi velocità effettiva in {{collectionName}}",
|
||||
"shareThroughputTooltip": "La velocità effettiva configurata a livello di database sarà condivisa tra tutte le {{collectionName}} all'interno del database.",
|
||||
"collectionIdLabel": "ID {{collectionName}}",
|
||||
"collectionIdTooltip": "Identificatore univoco per {{collectionName}} e usato per il routing basato su IP in REST e in tutti gli SDK.",
|
||||
"collectionIdPlaceholder": "Ad esempio, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID {{collectionName}}, esempio {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Sceglierne un id {{databaseName}} esistente",
|
||||
"existingDatabasePlaceholder": "Sceglierne un id {{databaseName}} esistente",
|
||||
"indexing": "Indicizzazione",
|
||||
"turnOnIndexing": "Attiva indicizzazione",
|
||||
"automatic": "Automatico",
|
||||
"turnOffIndexing": "Disattiva indicizzazione",
|
||||
"off": "Disattivato",
|
||||
"sharding": "Partizionamento orizzontale",
|
||||
"shardingTooltip": "Le raccolte partizionate distribuiscono i dati su molti set di repliche (partizioni) per ottenere scalabilità illimitata. Le raccolte partizionate richiedono la scelta di una chiave di partizione (campo) per distribuire uniformemente i dati.",
|
||||
"unsharded": "Non partizionato",
|
||||
"unshardedLabel": "Non partizionato (limite di 20 GB)",
|
||||
"sharded": "Partizionato",
|
||||
"addPartitionKey": "Aggiungi chiave di partizione gerarchica",
|
||||
"hierarchicalPartitionKeyInfo": "Questa funzionalità consente di partizionare i dati con fino a tre livelli di chiavi per una migliore distribuzione dei dati. Richiede .NET V3, Java V4 SDK o JavaScript V3 SDK in anteprima.",
|
||||
"provisionDedicatedThroughput": "Eseguire il provisioning della velocità effettiva dedicata per {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "È possibile effettuare facoltativamente il provisioning di una velocità effettiva dedicata per un {{collectionName}} di un database che ha già una velocità effettiva con provisioning. Questa velocità effettiva dedicata non sarà condivisa con altri {{collectionNamePlural}} nel database e non verrà conteggiata nella velocità effettiva con provisioning per il database. Questa velocità effettiva verrà fatturata in aggiunta a quella con provisioning a livello di database.",
|
||||
"uniqueKeysPlaceholderMongo": "Percorsi separati da virgole, ad esempio, firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Percorsi separati da virgole, ad esempio /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Aggiungi chiave univoca",
|
||||
"enableAnalyticalStore": "Abilita archivio analitico",
|
||||
"disableAnalyticalStore": "Disabilita archivio analitico",
|
||||
"on": "Attivato",
|
||||
"analyticalStoreSynapseLinkRequired": "Il Collegamento ad Azure Synapse è necessario per creare un archivio analitico {{collectionName}}. Abilita Collegamento ad Azure Synapse per questo account Cosmos DB.",
|
||||
"enable": "Abilita",
|
||||
"containerVectorPolicy": "Criteri vettore contenitore",
|
||||
"containerFullTextSearchPolicy": "Criterio di ricerca full-text contenitore",
|
||||
"advanced": "Avanzate",
|
||||
"mongoIndexingTooltip": "Il campo _id è indicizzato per impostazione predefinita. La creazione di un indice di caratteri jolly per tutti i campi ottimizza le query ed è consigliata per lo sviluppo.",
|
||||
"createWildcardIndex": "Creare un indice di caratteri jolly su tutti i campi",
|
||||
"legacySdkCheckbox": "L'applicazione usa una versione precedente di Cosmos .NET o Java SDK (.NET V1 o Java V2)",
|
||||
"legacySdkInfo": "Per garantire la compatibilità con SDK meno recenti, il contenitore creato utilizzerà uno schema di partizionamento legacy che supporta valori di chiave di partizione di dimensioni di fino a 101 byte. Se questa opzione è abilitata, non sarà possibile usare chiavi di partizione gerarchiche.",
|
||||
"indexingOnInfo": "Tutte le proprietà nei documenti verranno indicizzate per impostazione predefinita per query flessibili ed efficienti.",
|
||||
"indexingOffInfo": "L'indicizzazione verrà disattivata. Consigliato se non è necessario eseguire query o se si effettuano solo operazioni chiave-valore.",
|
||||
"indexingOffWarning": "Creando questo contenitore con indicizzazione disattivata, non sarà possibile modificare i criteri di indicizzazione. Le modifiche sono consentite solo su contenitori con un criterio di indicizzazione attivo.",
|
||||
"acknowledgeSpendErrorMonthly": "Confermare la spesa mensile stimata.",
|
||||
"acknowledgeSpendErrorDaily": "Confermare la spesa giornaliera stimata.",
|
||||
"unshardedMaxRuError": "Le raccolte non partizionate supportano fino a 10.000 UR",
|
||||
"acknowledgeShareThroughputError": "Confermare il costo stimato di questa velocità effettiva dedicata.",
|
||||
"vectorPolicyError": "Correggere gli errori nei criteri sul vettore contenitore",
|
||||
"fullTextSearchPolicyError": "Correggere gli errori nei criteri di ricerca full-text del contenitore",
|
||||
"addingSampleDataSet": "Aggiunta dei set di dati di esempio"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "La chiave di partizione (campo) viene usata per distribuire i dati su molti set di repliche (partizioni) per ottenere scalabilità illimitata. È fondamentale scegliere un campo che distribuisca uniformemente i dati.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} viene usata per distribuire automaticamente i dati tra le partizioni per la scalabilità. Scegliere una proprietà nel documento JSON che abbia un'ampia gamma di valori e distribuisca uniformemente il volume delle richieste.",
|
||||
"partitionKeyTooltipSqlSuffix": " Per carichi di lavoro piccoli e con molte letture o per carichi di qualsiasi dimensione con molte scritture, ID è spesso una buona scelta.",
|
||||
"shardKeyLabel": "Chiave di partizione",
|
||||
"partitionKeyLabel": "Chiave di partizione",
|
||||
"shardKeyPlaceholder": "Ad esempio, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "Ad esempio, /address",
|
||||
"partitionKeyPlaceholderFirst": "Obbligatorio - prima chiave di partizione, ad esempio /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "seconda chiave di partizione, ad esempio /UserId",
|
||||
"partitionKeyPlaceholderThird": "terza chiave di partizione, ad esempio /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "Ad esempio, /address/zipCode",
|
||||
"uniqueKeysTooltip": "Le chiavi univoche permettono agli sviluppatori di aggiungere un livello di integrità dei dati al database. Creando un criterio di chiave univoca alla creazione del contenitore, si garantisce l'unicità di uno o più valori per chiave di partizione.",
|
||||
"uniqueKeysLabel": "Chiavi univoche",
|
||||
"analyticalStoreLabel": "Archivio analitico",
|
||||
"analyticalStoreTooltip": "Abilitare la funzionalità di archivio analitico per eseguire analisi near real-time sui dati operativi, senza influire sulle prestazioni dei carichi di lavoro transazionali.",
|
||||
"analyticalStoreDescription": "Abilitare la funzionalità di archivio analitico per eseguire analisi near real-time sui dati operativi, senza influire sulle prestazioni dei carichi di lavoro transazionali.",
|
||||
"vectorPolicyTooltip": "Descrivere le proprietà nei dati che contengono vettori, in modo che possano essere rese disponibili per query di similarità."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opzioni pagina",
|
||||
"pageOptionsDescription": "Scegliere Personalizzato per specificare un numero fisso di risultati della query da visualizzare, oppure Senza limiti per mostrare quanti più risultati possibile per pagina.",
|
||||
"queryResultsPerPage": "Risultati query per pagina",
|
||||
"queryResultsPerPageTooltip": "Immettere il numero di risultati della query da visualizzare per pagina.",
|
||||
"customQueryItemsPerPage": "Elementi query personalizzati per pagina",
|
||||
"custom": "Personalizzato",
|
||||
"unlimited": "Senza limiti",
|
||||
"entraIdRbac": "Abilita controllo degli accessi in base al ruolo per Entra ID",
|
||||
"entraIdRbacDescription": "Scegliere Automatico per abilitare automaticamente il controllo degli accessi in base al ruolo di Entra ID. True/False per forzare l'abilitazione/disabilitazione del controllo degli accessi in base al ruolo di Entra ID.",
|
||||
"true": "Vero",
|
||||
"false": "Falso",
|
||||
"regionSelection": "Selezione area",
|
||||
"regionSelectionDescription": "Modifica l'area geografica che il client Cosmos usa per accedere all'account.",
|
||||
"selectRegion": "Seleziona area",
|
||||
"selectRegionTooltip": "Modifica l'endpoint dell'account usato per eseguire le operazioni client.",
|
||||
"globalDefault": "Globale (impostazione predefinita)",
|
||||
"readWrite": "(Lettura/Scrittura)",
|
||||
"read": "(Lettura)",
|
||||
"queryTimeout": "Timeout query",
|
||||
"queryTimeoutDescription": "Quando una query raggiunge un limite di tempo specificato, viene mostrato un popup con l'opzione per annullare la query, a meno che non sia stato abilitato l'annullamento automatico.",
|
||||
"enableQueryTimeout": "Abilita timeout query",
|
||||
"queryTimeoutMs": "Timeout query (ms)",
|
||||
"automaticallyCancelQuery": "Cancella automaticamente la query dopo il timeout",
|
||||
"ruLimit": "Limite UR",
|
||||
"ruLimitDescription": "Se una query supera un limite di UR configurato, la query verrà interrotta.",
|
||||
"enableRuLimit": "Abilita limite UR",
|
||||
"ruLimitLabel": "Limite UR (UR)",
|
||||
"defaultQueryResults": "Visualizzazione predefinita dei risultati della query",
|
||||
"defaultQueryResultsDescription": "Selezionare la visualizzazione predefinita da usare per mostrare i risultati della query.",
|
||||
"retrySettings": "Impostazioni nuovi tentativi",
|
||||
"retrySettingsDescription": "Criteri di ripetizione associati alle richieste limitate durante le query di CosmosDB.",
|
||||
"maxRetryAttempts": "Numero massimo di nuovi tentativi",
|
||||
"maxRetryAttemptsTooltip": "Numero massimo di nuovi tentativi da eseguire per una richiesta. Valore predefinito 9.",
|
||||
"fixedRetryInterval": "Intervallo fisso tra tentativi (ms)",
|
||||
"fixedRetryIntervalTooltip": "Intervallo tra tentativi fisso di attesa in millisecondi tra ogni tentativo, ignorando il valore retryAfter restituito nella risposta. Il valore predefinito è 0 millisecondi.",
|
||||
"maxWaitTime": "Tempo massimo di attesa (s)",
|
||||
"maxWaitTimeTooltip": "Tempo massimo di attesa in secondi per una richiesta durante i nuovi tentativi. Il valore predefinito è 30 secondi.",
|
||||
"enableContainerPagination": "Abilita impaginazione contenitore",
|
||||
"enableContainerPaginationDescription": "Carica 50 contenitori alla volta. Attualmente, i contenitori non vengono caricati in ordine alfanumerico.",
|
||||
"enableCrossPartitionQuery": "Abilita query su più partizioni",
|
||||
"enableCrossPartitionQueryDescription": "Invia più di una richiesta durante l'esecuzione di una query. Sono necessarie più richieste se l'ambito della query non è limitato a un singolo valore di chiave di partizione.",
|
||||
"maxDegreeOfParallelism": "Massimo grado di parallelismo",
|
||||
"maxDegreeOfParallelismDescription": "Ottiene o imposta il numero di operazioni simultanee eseguite lato client durante l'esecuzione parallela di query. Un valore positivo limita il numero di operazioni simultanee al valore impostato. Se impostato su un valore inferiore a 0, il sistema decide automaticamente quante operazioni simultanee eseguire.",
|
||||
"maxDegreeOfParallelismQuery": "Esegui query fino al massimo grado di parallelismo.",
|
||||
"priorityLevel": "Livello di priorità",
|
||||
"priorityLevelDescription": "Imposta il livello di priorità per le richieste del piano dati da Esplora dati quando si usa Esecuzione basata sulla priorità. Se si seleziona \"Nessuno\", Esplora dati non specificherà il livello di priorità e verrà usato il livello predefinito lato server.",
|
||||
"displayGremlinQueryResults": "Visualizza i risultati della query Gremlin come:",
|
||||
"displayGremlinQueryResultsDescription": "Selezionare Graph per visualizzare automaticamente i risultati della query come grafico o JSON per visualizzarli come JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualizzazione automatica Graph",
|
||||
"enableSampleDatabase": "Abilita database di esempio",
|
||||
"enableSampleDatabaseDescription": "Questo è un database e una raccolta di esempio con dati prodotto sintetici che è possibile usare per esplorare le query NoSQL. Verrà visualizzato come un altro database nell'interfaccia Esplora dati, ed è creato e mantenuto da Microsoft gratuitamente.",
|
||||
"enableSampleDbAriaLabel": "Abilita database di esempio per l'esplorazione delle query",
|
||||
"guidRepresentation": "Dichiarazione GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation in MongoDB indica come gli identificatori univoci globali (GUID) vengono serializzati e deserializzati quando archiviati in documenti BSON. Si applica a tutte le operazioni sui documenti.",
|
||||
"advancedSettings": "Impostazioni avanzate",
|
||||
"ignorePartitionKey": "Ignora chiave di partizione durante l'aggiornamento del documento",
|
||||
"ignorePartitionKeyTooltip": "Se selezionato, il valore della chiave di partizione non verrà usato per individuare il documento durante le operazioni di aggiornamento. Usare solo se gli aggiornamenti del documento non riescono a causa di una chiave di partizione anomala.",
|
||||
"clearHistory": "Cancella cronologia",
|
||||
"clearHistoryConfirm": "Continuare?",
|
||||
"clearHistoryDescription": "Questa azione cancellerà tutte le personalizzazioni per questo account in questo browser, tra cui:",
|
||||
"clearHistoryTabLayout": "Reimpostare il layout di scheda personalizzato, incluse le posizioni della barra di divisione",
|
||||
"clearHistoryTableColumns": "Cancellare le preferenze di colonna della tabella, incluse le colonne personalizzate",
|
||||
"clearHistoryFilters": "Cancella cronologia filtri",
|
||||
"clearHistoryRegion": "Reimposta la selezione dell'area geografica su globale",
|
||||
"increaseValueBy1000": "Aumentare il valore di 1000",
|
||||
"decreaseValueBy1000": "Riduci valore di 1000",
|
||||
"none": "Nessuno",
|
||||
"low": "Basso",
|
||||
"high": "Alto",
|
||||
"automatic": "Automatico",
|
||||
"enhancedQueryControl": "Controllo query avanzato",
|
||||
"enableQueryControl": "Abilita controllo query",
|
||||
"explorerVersion": "Versione di Explorer",
|
||||
"accountId": "ID account",
|
||||
"sessionId": "ID sessione",
|
||||
"popupsDisabledError": "Non è stato possibile stabilire l'autorizzazione per questo account perché i popup sono disabilitati nel browser.\nAbilitare i popup per questo sito e fare clic sul pulsante \"Accedi per Entra ID\"",
|
||||
"failedToAcquireTokenError": "Non è stato possibile acquisire il token di autorizzazione automaticamente. Fare clic sul pulsante \"Accedi per Entra ID\" per abilitare le operazioni di controllo degli accessi in base al ruolo di Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Salva query",
|
||||
"setupCostMessage": "Per motivi di conformità, le query vengono salvate in un contenitore nell'account Azure Cosmos, in un database separato chiamato \"{{databaseName}}\". Per procedere, è necessario creare un contenitore nell'account, il costo aggiuntivo stimato è di 0,77 $ al giorno.",
|
||||
"completeSetup": "Completa configurazione",
|
||||
"noQueryNameError": "Nessun nome query specificato",
|
||||
"invalidQueryContentError": "Contenuto query non valido specificato",
|
||||
"failedToSaveQueryError": "Non è stato possibile salvare la query {{queryName}}",
|
||||
"failedToSetupContainerError": "Non è stato possibile configurare un contenitore per le query salvate",
|
||||
"accountNotSetupError": "Non è stato possibile salvare la query: l'account non è configurato per salvare query",
|
||||
"name": "Nome"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Nessun file specificato",
|
||||
"failedToLoadQueryError": "Non è stato possibile caricare la query",
|
||||
"failedToLoadQueryFromFileError": "Non è stato possibile caricare la query dal file {{fileName}}",
|
||||
"selectFilesToOpen": "Selezionare un documento di query",
|
||||
"browseFiles": "Esplora"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Inserisci i parametri di input (se presenti)",
|
||||
"key": "Chiave",
|
||||
"param": "Parametro",
|
||||
"partitionKeyValue": "Valore chiave di partizione",
|
||||
"value": "Valore",
|
||||
"addNewParam": "Aggiungi nuovo parametro",
|
||||
"addParam": "Aggiungi parametro",
|
||||
"deleteParam": "Elimina parametro",
|
||||
"invalidParamError": "Parametro non valido specificato: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Parametro specificato non valido: {{invalidParam}} non è un valore letterale valido",
|
||||
"stringType": "Stringa",
|
||||
"customType": "Personalizzato"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Non è stato specificato alcun file. Immettere almeno un file.",
|
||||
"selectJsonFiles": "Seleziona Files JSON",
|
||||
"selectJsonFilesTooltip": "Selezionare uno o più file JSON da caricare. Ogni file può contenere un singolo documento JSON o una matrice di documenti JSON. Le dimensioni combinate di tutti i file in una singola operazione di caricamento deve essere inferiore a 2 MB. Per set di dati più grandi, è possibile eseguire più operazioni di caricamento.",
|
||||
"fileNameColumn": "NOME FILE",
|
||||
"statusColumn": "STATO",
|
||||
"uploadStatus": "{{numSucceeded}} creati, {{numThrottled}} con limitazione, {{numFailed}} errori",
|
||||
"uploadedFiles": "File caricati"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Non è stato possibile copiare {{name}} in {{destination}}",
|
||||
"uploadFailedError": "Non è possibile caricare {{name}}",
|
||||
"location": "Posizione",
|
||||
"locationAriaLabel": "Posizione",
|
||||
"selectLocation": "Selezionare una posizione del notebook in cui copiare",
|
||||
"name": "Nome"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Non è stato possibile pubblicare {{notebookName}} nella raccolta",
|
||||
"publishDescription": "Quando viene pubblicato, questo notebook sarà visualizzato nella raccolta pubblica di Azure Cosmos DB. Assicurarsi di aver rimosso dati o output sensibili prima della pubblicazione.",
|
||||
"publishPrompt": "Pubblicare e condividere \"{{name}}\" nella raccolta?",
|
||||
"coverImage": "Immagine di copertina",
|
||||
"coverImageUrl": "URL immagine di copertina",
|
||||
"name": "Nome",
|
||||
"description": "Descrizione",
|
||||
"tags": "Tag",
|
||||
"tagsPlaceholder": "Tag facoltativo 1, tag facoltativo 2",
|
||||
"preview": "Anteprima",
|
||||
"urlType": "URL",
|
||||
"customImage": "Immagine personalizzata",
|
||||
"takeScreenshot": "Crea screenshot",
|
||||
"useFirstDisplayOutput": "Usa output prima visualizzazione",
|
||||
"failedToCaptureOutput": "Non è stato possibile acquisire il primo output",
|
||||
"outputDoesNotExist": "L'output non esiste per nessuna delle celle.",
|
||||
"failedToConvertError": "Non è stato possibile convertire {{fileName}} nel formato base64",
|
||||
"failedToUploadError": "Non è possibile caricare {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Non è stato possibile avviare il processo di trasferimento dati",
|
||||
"suboptimalPartitionKeyError": "Avviso: il sistema ha rilevato che la raccolta potrebbe usare una chiave di partizione non ottimale",
|
||||
"description": "Quando si modifica la chiave di partizione di un contenitore, è necessario creare un contenitore di destinazione con la chiave corretta. È anche possibile selezionare un contenitore di destinazione esistente.",
|
||||
"sourceContainerId": "ID {{collectionName}} origine",
|
||||
"destinationContainerId": "ID {{collectionName}} destinazione",
|
||||
"collectionIdTooltip": "Identificatore univoco per {{collectionName}} e usato per il routing basato su IP in REST e in tutti gli SDK.",
|
||||
"collectionIdPlaceholder": "Ad esempio, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID {{collectionName}}, esempio {{collectionName}}1",
|
||||
"existingContainers": "Contenitori esistenti",
|
||||
"partitionKeyWarning": "Il contenitore di destinazione non deve essere già presente. Esplora dati creerà un nuovo contenitore di destinazione per l'utente."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nome spazio chiavi",
|
||||
"keyspaceTooltip": "Selezionare uno spazio chiavi esistente o inserire un nuovo ID spazio chiavi.",
|
||||
"tableIdLabel": "Immettere il comando CQL per creare la tabella.",
|
||||
"enterTableId": "Immetti ID tabella",
|
||||
"tableSchemaAriaLabel": "Schema della tabella",
|
||||
"provisionDedicatedThroughput": "Eseguire il provisioning della velocità effettiva dedicata per questa tabella",
|
||||
"provisionDedicatedThroughputTooltip": "È possibile effettuare facoltativamente il provisioning di una velocità effettiva dedicata per una tabella all'interno di uno spazio chiavi che ha già una velocità con provisioning. Questa velocità effettiva dedicata non sarà condivisa con altre tabelle nello spazio chiavi e non verrà conteggiata nella velocità con provisioning per lo spazio chiavi. Questa velocità effettiva verrà fatturata in aggiunta a quella con provisioning a livello di spazio chiavi."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Aggiungi proprietà",
|
||||
"addRow": "Aggiungi riga",
|
||||
"addEntity": "Aggiungi entità",
|
||||
"back": "indietro",
|
||||
"nullFieldsWarning": "Avviso: i campi Null non saranno mostrati per la modifica.",
|
||||
"propertyEmptyError": "{{property}} non può essere vuoto. Immettere un valore per {{property}}",
|
||||
"whitespaceError": "{{property}} non può contenere spazi vuoti. Immettere un valore per {{property}} senza spazi vuoti",
|
||||
"propertyTypeEmptyError": "Il tipo di proprietà non può essere vuoto. Selezionare un tipo dal menu a discesa per la proprietà {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Selezionare le colonne da usare per eseguire la query.",
|
||||
"availableColumns": "Colonne disponibili"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Selezionare le colonne da visualizzare nella vista degli elementi nel contenitore.",
|
||||
"searchFields": "Campi di ricerca",
|
||||
"reset": "Ripristina",
|
||||
"partitionKeySuffix": " (chiave di partizione)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Aggiungi proprietà"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "ID contenitore indice secondario globale",
|
||||
"globalSecondaryIndexIdPlaceholder": "Ad esempio, indexbyEmailId",
|
||||
"projectionQuery": "Query di proiezione",
|
||||
"projectionQueryPlaceholder": "SELEZIONA c.email, c.accountId DA c",
|
||||
"projectionQueryTooltip": "Altre informazioni sulla definizione degli indici secondari globali.",
|
||||
"disabledTitle": "È già in corso la creazione di un indice secondario globale. Attendere il completamento prima di crearne un altro."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "L'input {{input}} non corrisponde all'elemento {{selectedId}} selezionato"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informazioni",
|
||||
"moreDetails": "Altri dettagli"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "削除",
|
||||
"update": "更新",
|
||||
"discard": "破棄",
|
||||
"execute": "実行",
|
||||
"execute": "Execute",
|
||||
"loading": "読み込み中",
|
||||
"loadingEllipsis": "読み込み中...",
|
||||
"next": "次へ",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "アップロード",
|
||||
"connect": "接続",
|
||||
"remove": "削除",
|
||||
"load": "読み込み",
|
||||
"publish": "公開",
|
||||
"browse": "参照",
|
||||
"increaseValueBy1": "値を 1 増加",
|
||||
"decreaseValueBy1": "値を 1 減少"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "サンプル データセット、ドキュメント、追加ツールを使用して開始してください。"
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "クイック スタートの起動",
|
||||
"description": "クイック スタート チュートリアルを起動してサンプル データの使用を開始します"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "新しい {{collectionName}}",
|
||||
"description": "ストレージとスループット用の新しいコンテナーを作成します"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Azure Cosmos DB サンプル ギャラリー",
|
||||
"description": "スケーラブルでインテリジェントなアプリ パターンを紹介するサンプルをご確認ください。今すぐ試して、Cosmos DB を使用して概念からコードにどれほど迅速に移行できるか確認してください"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "接続",
|
||||
"description": "独自に選択したツールの使用を優先しますか?接続に必要な接続文字列を検索します",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "pgAdmin を使用して接続",
|
||||
"description": "pgAdmin を優先しますか?ここで接続文字列を検索します"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "VS Code で接続する",
|
||||
"description": "Visual Studio Code で MongoDB および DocumentDB クラスターのクエリの実行と管理を行います"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "PostgreSQL シェル",
|
||||
"description": "PostgreSQL のシェル インターフェイスを使用して、テーブルを作成し、データを操作します"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Mongo シェル",
|
||||
"description": "MongoDB のシェル インターフェイスを使用して、コレクションを作成し、データを操作します"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Cosmos DB PGSQL を使用するのは初めてですか?",
|
||||
"body": "ようこそ! Cosmos DB PGSQL を使用するのが初めてで、作業の開始に関するヘルプが必要な場合は、ここでサンプル データやクエリを見つけることができます。"
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "パスワードの作成",
|
||||
"body": "パスワードをまだ変更していない場合は、今すぐ変更してください。"
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "サンプル {{collectionName}} から開始する",
|
||||
"body": "サンプル データを含むサンプル コンテナーを作成するように案内され、その後、データ エクスプローラーのツアーが表示されます。このツアーの開始を取り消して、自分で探索することもできます"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "最近使用したもの",
|
||||
"clearRecents": "最近使用したものをクリアする",
|
||||
"top3": "知っておくべき上位 3 つのこと",
|
||||
"learningResources": "学習リソース",
|
||||
"nextSteps": "次の手順",
|
||||
"tipsAndLearnMore": "ヒントと詳細の確認",
|
||||
"notebook": "ノートブック",
|
||||
"needHelp": "ヘルプが必要ですか?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "高度なモデリング パターン",
|
||||
"description": "データベースを最適化するための高度な戦略について説明します。"
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "パーティション分割のベスト プラクティス",
|
||||
"description": "データ モデルとパーティション分割戦略の適用について説明します。"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "リソース要件の計画",
|
||||
"description": "さまざまな構成の選択肢について理解を深めます。"
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "MongoDB API とは",
|
||||
"description": "Azure Cosmos DB for MongoDB とその機能について理解します。"
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "機能と構文",
|
||||
"description": "利点と機能を確認します"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "データの移行",
|
||||
"description": "データを移動するための移行前の手順"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Java アプリのビルド",
|
||||
"description": "SDK を使用して Java アプリを作成します。"
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "パーティション分割のベスト プラクティス",
|
||||
"description": "パーティション分割のしくみについて説明します。"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "要求ユニット (RU)",
|
||||
"description": "RU 料金について理解します。"
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "データ モデリング",
|
||||
"description": "グラフ データ モデリングの推奨事項"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "パーティション分割のベスト プラクティス",
|
||||
"description": "パーティション分割のしくみについて確認します"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "データのクエリを実行",
|
||||
"description": "Gremlin を使用してデータのクエリを実行しています"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Table API とは",
|
||||
"description": "Azure Cosmos DB for Table とその機能について理解します"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "データの移行",
|
||||
"description": "データを移行する方法について確認します"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Azure Cosmos DB for Table に関する FAQ",
|
||||
"description": "Azure Cosmos DB for Table に関する一般的な質問"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Data Explorer のキーボード ショートカット",
|
||||
"description": "データ エクスプローラーを操作するためのキーボード ショートカットについて説明します。"
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "基礎を確認する",
|
||||
"description": "Azure Cosmos DB のライブ テレビ ショーの紹介や使い方に関するビデオをご覧ください。"
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "SDK を使用して開始",
|
||||
"description": "Azure Cosmos DB SDK について説明します。"
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "データの移行",
|
||||
"description": "Azure サービスとオープンソース ソリューションを使用してデータを移行します。"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Node.js を使用してアプリをビルド",
|
||||
"description": "Node.js アプリを作成します。"
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "作業の開始ガイド",
|
||||
"description": "開始するための基本情報について説明します。"
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "コンテナーの作成",
|
||||
"description": "コンテナーの作成オプションについて理解を深めます。"
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "スループットのプロビジョニング",
|
||||
"description": "スループットを構成する方法について説明します。"
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "開始 ",
|
||||
"description": "Gremlin コンソールを使用して作成、クエリの実行、走査を行います"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "グラフ データのインポート",
|
||||
"description": "BulkExecutor を使用した一括インジェスト データについて確認します"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": ".NET アプリのビルド",
|
||||
"description": ".NET アプリから Azure Cosmos DB for Table にアクセスする方法。"
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Java アプリのビルド",
|
||||
"description": "Java SDK を使用して Azure Cosmos DB for Table アプリを作成します "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "データ モデリング",
|
||||
"distributionColumn": "ディストリビューション列を選択する方法",
|
||||
"buildApps": "Python/Java/Django を使用してアプリをビルド"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "データの移行",
|
||||
"vectorSearch": "ベクトル検索を使用して AI アプリをビルド",
|
||||
"buildApps": "Nodejs を使用してアプリをビルド"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "パフォーマンス チューニング",
|
||||
"diagnosticQueries": "有用な診断クエリ",
|
||||
"sqlReference": "分散 SQL リファレンス"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "ベクトル検索",
|
||||
"textIndexing": "テキストのインデックス作成",
|
||||
"troubleshoot": "一般的な問題のトラブルシューティング"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "データベースのビルド",
|
||||
"useTitle": "データベースの使用",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "新しいコンテナー",
|
||||
"description": "データを格納する先のコンテナーを作成します"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "サンプル データ",
|
||||
"description": "データベースにサンプル データを読み込みます"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "サンプル ベクトル データ",
|
||||
"description": "text-embedding-ada-002 を使用してサンプル ベクトル データを読み込みます"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "アプリ開発",
|
||||
"description": "SDK を使用してアプリをビルドするには、ここから開始してください"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "サンプル ギャラリー",
|
||||
"description": "実際のエンド ツー エンドのサンプルを取得します"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "サンプル データ",
|
||||
"startButton": "開始",
|
||||
"createPrompt": "コンテナー \"{{containerName}}\" を作成し、そこにサンプル データをインポートしてください。これには数分かかる場合があります。",
|
||||
"creatingContainer": "コンテナー \"{{containerName}}\" を作成しています...",
|
||||
"importingData": "データを \"{{containerName}}\" にインポートしています...",
|
||||
"success": "サンプル データを含む \"{{containerName}}\" が正常に作成されました。",
|
||||
"errorContainerExists": "データベース \"{{databaseName}}\" のコンテナー \"{{containerName}}\" は既に存在します。削除してから、もう一度お試しください。",
|
||||
"errorCreateContainer": "コンテナーを作成できませんでした: {{error}}",
|
||||
"errorImportData": "データをインポートできませんでした: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "新しい {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} の復元",
|
||||
"deleteDatabase": "{{databaseName}} の削除",
|
||||
"deleteContainer": "{{containerName}} の削除",
|
||||
"newSqlQuery": "新しい SQL クエリ",
|
||||
"newQuery": "新しいクエリ",
|
||||
"openMongoShell": "Mongo シェルを開く",
|
||||
"newShell": "新しいシェル",
|
||||
"openCassandraShell": "Cassandra シェルを開く",
|
||||
"newStoredProcedure": "新しいストアド プロシージャ",
|
||||
"newUdf": "新しい UDF",
|
||||
"newTrigger": "新しいトリガー",
|
||||
"deleteStoredProcedure": "ストアド プロシージャの削除",
|
||||
"deleteTrigger": "トリガーの削除",
|
||||
"deleteUdf": "ユーザー定義関数の削除"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "新しい項目",
|
||||
"newDocument": "新規ドキュメント",
|
||||
"uploadItem": "項目のアップロード",
|
||||
"applyFilter": "フィルターの適用",
|
||||
"unsavedChanges": "未保存の変更",
|
||||
"unsavedChangesMessage": "保存されていない変更はすべて失われます。続行しますか?",
|
||||
"createDocumentFailed": "ドキュメントの作成に失敗しました",
|
||||
"updateDocumentFailed": "ドキュメントの更新に失敗しました",
|
||||
"documentDeleted": "ドキュメントが正常に削除されました。",
|
||||
"deleteDocumentDialogTitle": "ドキュメントの削除",
|
||||
"deleteDocumentsDialogTitle": "ドキュメントの削除",
|
||||
"throttlingError": "レート制限エラーにより、一部のドキュメントの削除に失敗しました。後でもう一度お試しください。今後これを防ぐには、コンテナーまたはデータベースのスループットを増やすことを検討してください。",
|
||||
"deleteFailed": "ドキュメントの削除に失敗しました ({{error}})",
|
||||
"missingShardProperty": "ドキュメントにシャード プロパティがありません: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "ドキュメント グリッドの更新に失敗しました",
|
||||
"confirmDelete": "{{documentName}} を削除しますか?",
|
||||
"confirmDeleteTitle": "削除の確認",
|
||||
"selectedItems": "選択した {{count}} 個の項目",
|
||||
"selectedItem": "選択した項目",
|
||||
"selectedDocuments": "選択した {{count}} 件のドキュメント",
|
||||
"selectedDocument": "選択したドキュメント",
|
||||
"deleteDocumentFailedLog": "状態コード {{statusCode}} で、ドキュメント {{documentId}} を削除できませんでした",
|
||||
"deleteSuccessLog": "{{count}} 件のドキュメントが正常に削除されました",
|
||||
"deleteThrottledLog": "\"要求が大きすぎる\" (429) エラーにより {{count}} 件のドキュメントを削除できませんでした。再試行しています...",
|
||||
"missingShardKeyLog": "新しいドキュメントを保存できませんでした: ドキュメントのシャード キーが定義されていません",
|
||||
"filterTooltip": "クエリ述語を入力するか、一覧から 1 つ選択してください。",
|
||||
"loadMore": "さらに読み込む",
|
||||
"documentEditor": "ドキュメント エディター",
|
||||
"savedFilters": "保存済みのフィルター",
|
||||
"defaultFilters": "既定のフィルター",
|
||||
"abort": "中止",
|
||||
"deletingDocuments": "{{count}} 件のドキュメントを削除しています",
|
||||
"deletedDocumentsSuccess": "{{count}} 件のドキュメントが正常に削除されました。",
|
||||
"deleteAborted": "ドキュメントの削除が中止されました。",
|
||||
"failedToDeleteDocuments": "{{count}} 件のドキュメントを削除できませんでした。",
|
||||
"requestTooLargeBase": "\"要求が大きすぎる\" 例外 (429) により、一部の削除要求が失敗しました",
|
||||
"retriedSuccessfully": "正常に再試行されました。",
|
||||
"retryingNow": "再試行しています。",
|
||||
"increaseThroughputTip": "今後これを防ぐには、コンテナーまたはデータベースのスループットを増やすことを検討してください。",
|
||||
"numberOfSelectedDocuments": "選択したドキュメントの数: {{count}}",
|
||||
"mongoFilterPlaceholder": "クエリ述語 (例: {\"id\":\"foo\"}) を入力するか、ドロップダウン リストから 1 つ選択するか、すべてのドキュメントをクエリする場合は空のままにします。",
|
||||
"sqlFilterPlaceholder": "クエリ述語 (WHERE c.id=\"1\" など) を入力するか、ドロップダウン リストからクエリ述語を選択するか、空のままにしてすべてのドキュメントのクエリを実行します。",
|
||||
"error": "エラー",
|
||||
"warning": "警告"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "クエリの実行",
|
||||
"executeSelection": "選択範囲の実行",
|
||||
"saveQuery": "クエリの保存",
|
||||
"downloadQuery": "クエリのダウンロード",
|
||||
"cancelQuery": "クエリのキャンセル",
|
||||
"openSavedQueries": "保存したクエリを開く",
|
||||
"vertical": "縦",
|
||||
"horizontal": "水平",
|
||||
"view": "表示",
|
||||
"editingQuery": "クエリを編集しています"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ストアド プロシージャ ID",
|
||||
"idPlaceholder": "新しいストアド プロシージャ ID を入力してください",
|
||||
"idAriaLabel": "ストアド プロシージャ ID",
|
||||
"body": "ストアド プロシージャ本文",
|
||||
"bodyAriaLabel": "ストアド プロシージャ本文",
|
||||
"successfulExecution": "ストアド プロシージャの正常な実行",
|
||||
"resultAriaLabel": "ストアド プロシージャの実行結果",
|
||||
"logsAriaLabel": "ストアド プロシージャの実行ログ",
|
||||
"errors": "エラー:",
|
||||
"errorDetailsAriaLabel": "エラーの詳細リンク",
|
||||
"moreDetails": "その他の詳細",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "トリガー ID",
|
||||
"idPlaceholder": "新しいトリガー ID を入力してください",
|
||||
"type": "トリガーの種類",
|
||||
"operation": "トリガーの操作",
|
||||
"body": "トリガー本文",
|
||||
"bodyAriaLabel": "トリガー本文",
|
||||
"pre": "プレ",
|
||||
"post": "投稿",
|
||||
"all": "すべて",
|
||||
"operationCreate": "作成",
|
||||
"operationDelete": "削除",
|
||||
"operationReplace": "置換"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ユーザー定義関数 ID",
|
||||
"idPlaceholder": "新しいユーザー定義関数 ID を入力してください",
|
||||
"body": "ユーザー定義関数本文",
|
||||
"bodyAriaLabel": "ユーザー定義関数本文"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "未保存の変更",
|
||||
"changesWillBeLost": "変更が失われます。続行しますか?",
|
||||
"resolveConflictFailed": "競合の解決に失敗しました",
|
||||
"deleteConflictFailed": "削除の競合が失敗しました",
|
||||
"refreshGridFailed": "ドキュメント グリッドの更新に失敗しました"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo シェル"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "{{databaseName}} の削除",
|
||||
"warningMessage": "警告!実行しようとしている操作を元に戻すことはできません。続行すると、このリソースとそのすべての子リソースが完全に削除されます。",
|
||||
"confirmPrompt": "{{databaseName}} ID (名前) を入力して確認してください",
|
||||
"inputMismatch": "入力 {{databaseName}} 名 \"{{input}}\" が、選択した {{databaseName}} \"{{selectedId}}\" と一致しません",
|
||||
"feedbackTitle": "Azure Cosmos DB の改善にご協力ください。",
|
||||
"feedbackReason": "この {{databaseName}} を削除する理由を教えてください。"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "{{collectionName}} の削除",
|
||||
"confirmPrompt": "{{collectionName}} ID を入力して確認してください",
|
||||
"inputMismatch": "入力 ID {{input}} が選択した {{selectedId}} と一致しません",
|
||||
"feedbackTitle": "Azure Cosmos DB の改善にご協力ください。",
|
||||
"feedbackReason": "この {{collectionName}} を削除する理由を教えてください。"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "データベース {{suffix}}",
|
||||
"databaseIdLabel": "データベース ID",
|
||||
"keyspaceIdLabel": "キースペース ID",
|
||||
"databaseIdPlaceholder": "新しい {{databaseLabel}} ID を入力してください",
|
||||
"databaseTooltip": "{{databaseLabel}} は 1 つ以上の {{collectionsLabel}} の論理コンテナーです",
|
||||
"shareThroughput": "{{collectionsLabel}} 全体でスループットを共有する",
|
||||
"shareThroughputTooltip": "{{databaseLabel}} レベルでプロビジョニングされたスループットは、{{collectionsLabel}} 内のすべての {{databaseLabel}} で共有されます。",
|
||||
"greaterThanError": "オートパイロット スループットの {{minValue}} より大きい値を入力してください",
|
||||
"acknowledgeSpendError": "毎月の推定 {{period}} 支出に同意してください。"
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "新規作成",
|
||||
"useExisting": "既存のものを使用",
|
||||
"databaseTooltip": "データベースは名前空間に類似しています。{{collectionName}} のセットの管理単位です。",
|
||||
"shareThroughput": "{{collectionName}} 全体でスループットを共有する",
|
||||
"shareThroughputTooltip": "データベース レベルで構成されたスループットは、データベース内のすべての {{collectionName}} で共有されます。",
|
||||
"collectionIdLabel": "{{collectionName}} ID",
|
||||
"collectionIdTooltip": "REST とすべての SDK を介した ID ベースのルーティングに使用される {{collectionName}} の一意識別子。",
|
||||
"collectionIdPlaceholder": "例: {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID、例 {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "既存の {{databaseName}} ID を選択してください",
|
||||
"existingDatabasePlaceholder": "既存の {{databaseName}} ID を選択してください",
|
||||
"indexing": "インデックス作成",
|
||||
"turnOnIndexing": "インデックス作成を有効にする",
|
||||
"automatic": "自動",
|
||||
"turnOffIndexing": "インデックス作成を無効にする",
|
||||
"off": "オフ",
|
||||
"sharding": "シャーディング",
|
||||
"shardingTooltip": "シャード化されたコレクションは、無制限のスケーラビリティを実現するために、データを多数のレプリカ セット (シャード) に分割します。シャード コレクションでは、データを均等に分散するためにシャード キー (フィールド) を選択する必要があります。",
|
||||
"unsharded": "シャードなし",
|
||||
"unshardedLabel": "シャードなし (20 GB の制限)",
|
||||
"sharded": "シャード化",
|
||||
"addPartitionKey": "階層パーティション キーの追加",
|
||||
"hierarchicalPartitionKeyInfo": "この機能を使用すると、データを最大 3 レベルのキーでパーティション分割して、データの分散を向上できます。.NET V3、Java V4 SDK、またはプレビュー JavaScript V3 SDK が必要です。",
|
||||
"provisionDedicatedThroughput": "この {{collectionName}} の専用スループットをプロビジョニングする",
|
||||
"provisionDedicatedThroughputTooltip": "必要に応じて、スループットがプロビジョニングされているデータベース内の {{collectionName}} に対して専用のスループットをプロビジョニングできます。この専用スループット量は、データベース内の他の {{collectionNamePlural}} と共有されず、データベース用にプロビジョニングしたスループットにはカウントされません。このスループットはデータベース レベルでプロビジョニングしたスループットに加えて課金されます。",
|
||||
"uniqueKeysPlaceholderMongo": "コンマ区切りのパス (例: firstName,address.zipCode)",
|
||||
"uniqueKeysPlaceholderSql": "コンマ区切りのパス (例: /firstName,/address/zipCode)",
|
||||
"addUniqueKey": "一意キーの追加",
|
||||
"enableAnalyticalStore": "分析ストアを有効にする",
|
||||
"disableAnalyticalStore": "分析ストアを無効にする",
|
||||
"on": "オン",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse リンクは、{{collectionName}} 分析ストアを作成するために必要です。この Cosmos DB アカウントで Synapse Link を有効にします。",
|
||||
"enable": "有効にする",
|
||||
"containerVectorPolicy": "コンテナー ベクトル ポリシー",
|
||||
"containerFullTextSearchPolicy": "コンテナーのフルテキスト検索ポリシー",
|
||||
"advanced": "詳細",
|
||||
"mongoIndexingTooltip": "_id フィールドは、既定でインデックスが作成されます。すべてのフィールドにワイルドカード インデックスを作成すると、クエリが最適化され、開発に推奨されます。",
|
||||
"createWildcardIndex": "すべてのフィールドにワイルドカード インデックスを作成する",
|
||||
"legacySdkCheckbox": "アプリケーションで以前の Cosmos .NET または Java SDK バージョン (.NET V1 または Java V2) を使用しています",
|
||||
"legacySdkInfo": "古い SDK との互換性を確保するため、作成されるコンテナーは最大 101 バイトのサイズのパーティション キー値のみをサポートするレガシ パーティション スキーマを使用します。これを有効にすると、階層パーティション キーは使用できません。",
|
||||
"indexingOnInfo": "ドキュメント内のすべてのプロパティは、柔軟で効率的なクエリのために既定でインデックスが作成されます。",
|
||||
"indexingOffInfo": "インデックス作成は無効になります。クエリを実行する必要がない、またはキー値操作のみを行う場合に推奨されます。",
|
||||
"indexingOffWarning": "インデックス作成をオフにしてこのコンテナーを作成すると、インデックス作成ポリシーの変更はできません。インデックス作成ポリシーの変更は、インデックス作成ポリシーを持つコンテナーでのみ許可されます。",
|
||||
"acknowledgeSpendErrorMonthly": "毎月の推定支出に同意してください。",
|
||||
"acknowledgeSpendErrorDaily": "毎日の推定支出に同意してください。",
|
||||
"unshardedMaxRuError": "シャーディングされていないコレクションでは、最大 10,000 RU がサポートされます",
|
||||
"acknowledgeShareThroughputError": "この専用スループットの推定コストを確認してください。",
|
||||
"vectorPolicyError": "コンテナー ベクトル ポリシーのエラーを修正してください",
|
||||
"fullTextSearchPolicyError": "コンテナーのフルテキスト検索ポリシーのエラーを修正してください",
|
||||
"addingSampleDataSet": "サンプル データ セットの追加"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "シャード キー (フィールド) は、無制限のスケーラビリティを実現するために、多数のレプリカ セット (シャード) にデータを分割するために使用されます。データを均等に分散するフィールドを選択することが重要です。",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} は、スケーラビリティのためにパーティション間でデータを自動的に分散するために使用されます。さまざまな値を持ち、要求ボリュームを均等に分散する JSON ドキュメントのプロパティを選択します。",
|
||||
"partitionKeyTooltipSqlSuffix": " 読み取り負荷の高い小規模なワークロードや、任意のサイズの書き込み負荷の高いワークロードの場合、ID が適していることがよくあります。",
|
||||
"shardKeyLabel": "シャード キー",
|
||||
"partitionKeyLabel": "パーティション キー",
|
||||
"shardKeyPlaceholder": "例: categoryId",
|
||||
"partitionKeyPlaceholderDefault": "例: /address",
|
||||
"partitionKeyPlaceholderFirst": "必須: 最初のパーティション キー (例: /TenantId)",
|
||||
"partitionKeyPlaceholderSecond": "2 番目のパーティション キー (例: /UserId)",
|
||||
"partitionKeyPlaceholderThird": "3 番目のパーティション キー 例: /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "例: /address/zipCode",
|
||||
"uniqueKeysTooltip": "一意キーにより、開発者はデータベースにデータ整合性の層を追加できます。コンテナーの作成時に一意キー ポリシーを作成することで、パーティション キーごとに 1 つ以上の値の一意性を確保します。",
|
||||
"uniqueKeysLabel": "一意キー",
|
||||
"analyticalStoreLabel": "分析ストア",
|
||||
"analyticalStoreTooltip": "分析ストア機能を有効にすると、トランザクション ワークロードのパフォーマンスに影響を与えずに、操作データに対してほぼリアルタイムの分析を実行できます。",
|
||||
"analyticalStoreDescription": "分析ストア機能を有効にすると、トランザクション ワークロードのパフォーマンスに影響を与えずに、操作データに対してほぼリアルタイムの分析を実行できます。",
|
||||
"vectorPolicyTooltip": "ベクトルを含むデータ内のプロパティを記述して、類似性クエリで使用できるようにします。"
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "ページ オプション",
|
||||
"pageOptionsDescription": "[カスタム] を選択して表示するクエリ結果の固定数を指定するか、[無制限] を選択してページあたりのクエリ結果の数を無制限に表示します。",
|
||||
"queryResultsPerPage": "ページあたりのクエリ結果",
|
||||
"queryResultsPerPageTooltip": "ページごとに表示するクエリ結果の数を入力します。",
|
||||
"customQueryItemsPerPage": "ページあたりのカスタム クエリ アイテム数",
|
||||
"custom": "カスタム",
|
||||
"unlimited": "無制限",
|
||||
"entraIdRbac": "Entra ID RBAC を有効にする",
|
||||
"entraIdRbacDescription": "[自動] を選択すると Entra ID RBAC が自動的に有効になります。強制的に有効または無効にする場合は True/False を選択します。",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "リージョンの選択",
|
||||
"regionSelectionDescription": "Cosmos Client がアカウントへのアクセスに使用するリージョンを変更します。",
|
||||
"selectRegion": "リージョンの選択",
|
||||
"selectRegionTooltip": "クライアント操作の実行に使用するアカウント エンドポイントを変更します。",
|
||||
"globalDefault": "グローバル (既定)",
|
||||
"readWrite": "(読み取り/書き込み)",
|
||||
"read": "(読み取り)",
|
||||
"queryTimeout": "クエリ タイムアウト",
|
||||
"queryTimeoutDescription": "クエリが指定された制限時間に達すると、自動キャンセルが有効になっていない限り、クエリをキャンセルするオプションを含むポップアップが表示されます。",
|
||||
"enableQueryTimeout": "クエリタイムアウトを有効にする",
|
||||
"queryTimeoutMs": "クエリ タイムアウト (ms)",
|
||||
"automaticallyCancelQuery": "タイムアウト後にクエリを自動的にキャンセルする",
|
||||
"ruLimit": "RU 制限",
|
||||
"ruLimitDescription": "クエリが構成された RU 制限を超えた場合、クエリは中止されます。",
|
||||
"enableRuLimit": "RU 制限を有効にする",
|
||||
"ruLimitLabel": "RU 制限 (RU)",
|
||||
"defaultQueryResults": "既定のクエリ結果ビュー",
|
||||
"defaultQueryResultsDescription": "クエリ結果を表示するときに使用する既定のビューを選択します。",
|
||||
"retrySettings": "再試行の設定",
|
||||
"retrySettingsDescription": "CosmosDB クエリ中に調整された要求に関連付けられている再試行ポリシー。",
|
||||
"maxRetryAttempts": "最大再試行回数",
|
||||
"maxRetryAttemptsTooltip": "要求に対して実行される再試行の最大数。既定値 9。",
|
||||
"fixedRetryInterval": "固定再試行間隔 (ミリ秒)",
|
||||
"fixedRetryIntervalTooltip": "応答の一部として返された retryAfter を無視して、各再試行の間に待機する固定の間隔 (ミリ秒単位)。既定値は 0 ミリ秒です。",
|
||||
"maxWaitTime": "最大待機時間 (秒)",
|
||||
"maxWaitTimeTooltip": "再試行が行われている間に要求を待機する最大待機時間 (秒)。既定値は 30 秒です。",
|
||||
"enableContainerPagination": "コンテナーのページネーションを有効にする",
|
||||
"enableContainerPaginationDescription": "一度に 50 個のコンテナーを読み込みます。現時点では、コンテナーは英数字順にプルされません。",
|
||||
"enableCrossPartitionQuery": "クロスパーティション クエリを有効にする",
|
||||
"enableCrossPartitionQueryDescription": "クエリ実行中に複数の要求を送信します。クエリのスコープが 1 つのパーティション キー値でない場合は、複数の要求が必要です。",
|
||||
"maxDegreeOfParallelism": "並列処理の最大次数",
|
||||
"maxDegreeOfParallelismDescription": "並列クエリの実行中にクライアント側で実行される同時実行操作の数を取得または設定します。正のプロパティ値は、同時操作の数を設定値に制限します。0 未満に設定すると、システムが同時に実行する操作の数を自動的に決定します。",
|
||||
"maxDegreeOfParallelismQuery": "並列処理の最大限度までクエリを実行します。",
|
||||
"priorityLevel": "優先度レベル",
|
||||
"priorityLevelDescription": "優先度ベースの実行を使用する場合のデータ エクスプローラーからのデータ プレーン要求の優先度レベルを設定します。[なし] が選択されている場合、データ エクスプローラーは優先度レベルを指定せず、サーバー側の既定の優先度レベルが使用されます。",
|
||||
"displayGremlinQueryResults": "Gremlin クエリの結果を次のように表示します:",
|
||||
"displayGremlinQueryResultsDescription": "[グラフ] を選択すると、クエリ結果がグラフまたは JSON として自動的に視覚化され、結果が JSON として表示されます。",
|
||||
"graph": "グラフ",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "グラフの自動視覚化",
|
||||
"enableSampleDatabase": "サンプル データベースを有効にする",
|
||||
"enableSampleDatabaseDescription": "これは、NoSQL クエリの探索に使用できる合成製品データを含むサンプルのデータベースとコレクションです。データ エクスプローラー UI に別のデータベースとして表示され、Microsoft によって作成、管理され、無料で利用できます。",
|
||||
"enableSampleDbAriaLabel": "クエリ探索用にサンプル db を有効にします",
|
||||
"guidRepresentation": "GUID 表現",
|
||||
"guidRepresentationDescription": "MongoDB の GuidRepresentation は、BSON ドキュメントに格納されている場合にグローバル一意識別子 (GUID) をシリアル化および逆シリアル化する方法を示します。これは、すべてのドキュメント操作に適用されます。",
|
||||
"advancedSettings": "詳細設定",
|
||||
"ignorePartitionKey": "ドキュメントの更新時にパーティション キーを無視する",
|
||||
"ignorePartitionKeyTooltip": "オンにした場合、パーティション キーの値は、更新操作中にドキュメントを検索するために使用されません。これは、異常なパーティション キーが原因でドキュメントの更新が失敗する場合にのみ使用します。",
|
||||
"clearHistory": "履歴のクリア",
|
||||
"clearHistoryConfirm": "続行しますか?",
|
||||
"clearHistoryDescription": "この操作により、このブラウザーでこのアカウントのすべてのカスタマイズがクリアされます。次のものが含まれます:",
|
||||
"clearHistoryTabLayout": "スプリッターの位置を含め、カスタマイズしたタブ レイアウトをリセットする",
|
||||
"clearHistoryTableColumns": "カスタム列を含むテーブル列の基本設定を消去する",
|
||||
"clearHistoryFilters": "フィルター履歴をクリアする",
|
||||
"clearHistoryRegion": "リージョンの選択をグローバルにリセットする",
|
||||
"increaseValueBy1000": "値を 1000 増やす",
|
||||
"decreaseValueBy1000": "値を 1000 減らす",
|
||||
"none": "なし",
|
||||
"low": "低",
|
||||
"high": "高",
|
||||
"automatic": "自動",
|
||||
"enhancedQueryControl": "拡張クエリ コントロール",
|
||||
"enableQueryControl": "クエリ コントロールを有効にする",
|
||||
"explorerVersion": "エクスプローラー バージョン",
|
||||
"accountId": "アカウント ID",
|
||||
"sessionId": "セッション ID",
|
||||
"popupsDisabledError": "ブラウザーでポップアップが無効になっているため、このアカウントの承認を確立できませんでした。\nこのサイトのポップアップを有効にし、[Entra ID のログイン] ボタンをクリックしてください",
|
||||
"failedToAcquireTokenError": "承認トークンを自動的に取得できませんでした。[Entra ID のログイン] ボタンをクリックして、Entra ID RBAC 操作を有効にしてください"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "クエリの保存",
|
||||
"setupCostMessage": "コンプライアンス上の理由から、クエリは Azure Cosmos アカウントのコンテナーに保存され、“{{databaseName}}”という名の別のデータベースに保存されます。続行するには、アカウントにコンテナーを作成する必要があります。推定追加コストは 1 日 0.77 ドルです。",
|
||||
"completeSetup": "セットアップが完了しました",
|
||||
"noQueryNameError": "クエリ名が指定されていません",
|
||||
"invalidQueryContentError": "無効なクエリ コンテンツが指定されました",
|
||||
"failedToSaveQueryError": "クエリ {{queryName}} の保存に失敗しました",
|
||||
"failedToSetupContainerError": "保存されたクエリ用のコンテナーをセットアップできませんでした",
|
||||
"accountNotSetupError": "クエリの保存に失敗しました: アカウントがクエリ保存用に設定されていません",
|
||||
"name": "名前"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "ファイルが指定されていません",
|
||||
"failedToLoadQueryError": "クエリを読み込めませんでした",
|
||||
"failedToLoadQueryFromFileError": "ファイル {{fileName}} からクエリを読み込めませんでした",
|
||||
"selectFilesToOpen": "クエリ ドキュメントを選択してください",
|
||||
"browseFiles": "参照"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "入力パラメーターを入力します (存在する場合)",
|
||||
"key": "キー",
|
||||
"param": "パラメーター",
|
||||
"partitionKeyValue": "パーティション キーの値",
|
||||
"value": "値",
|
||||
"addNewParam": "新しいパラメーターを追加する",
|
||||
"addParam": "パラメーターを追加する",
|
||||
"deleteParam": "パラメーターを削除する",
|
||||
"invalidParamError": "無効なパラメーターが指定されました: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "無効なパラメーターが指定されました: {{invalidParam}} は有効なリテラル値ではありません",
|
||||
"stringType": "文字列",
|
||||
"customType": "カスタム"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "ファイルが指定されていません。少なくとも 1 つのファイルを入力してください。",
|
||||
"selectJsonFiles": "JSON ファイルの選択",
|
||||
"selectJsonFilesTooltip": "アップロードする JSON ファイルを 1 つ以上選択します。各ファイルには単一の JSON ドキュメントまたは JSON ドキュメントの配列を含めることができます。個々のアップロード操作でのすべてのファイルの合計サイズは 2 MB 未満である必要があります。大規模なデータ セットに対して複数のアップロード操作を実行できます。",
|
||||
"fileNameColumn": "ファイル名",
|
||||
"statusColumn": "状態",
|
||||
"uploadStatus": "{{numSucceeded}} 件作成済み、{{numThrottled}} 件調整済み、{{numFailed}} 件のエラー",
|
||||
"uploadedFiles": "ファイルをアップロードしました"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "{{name}} を {{destination}} にコピーできませんでした",
|
||||
"uploadFailedError": "{{name}} をアップロードできませんでした",
|
||||
"location": "場所",
|
||||
"locationAriaLabel": "場所",
|
||||
"selectLocation": "コピーするノートブックの場所を選択する",
|
||||
"name": "名前"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "{{notebookName}} をギャラリーに発行できませんでした",
|
||||
"publishDescription": "公開すると、このノートブックは Azure Cosmos DB ノートブックのパブリック ギャラリーに表示されます。公開前に機密データや出力が削除されていることを確認してください。",
|
||||
"publishPrompt": "\"{{name}}\" をギャラリーに公開して共有しますか?",
|
||||
"coverImage": "カバー画像",
|
||||
"coverImageUrl": "カバー画像の URL",
|
||||
"name": "名前",
|
||||
"description": "説明",
|
||||
"tags": "タグ",
|
||||
"tagsPlaceholder": "オプションのタグ 1、オプションのタグ 2",
|
||||
"preview": "プレビュー",
|
||||
"urlType": "URL",
|
||||
"customImage": "カスタム イメージ",
|
||||
"takeScreenshot": "スクリーンショットを撮る",
|
||||
"useFirstDisplayOutput": "最初のディスプレイ出力を使用する",
|
||||
"failedToCaptureOutput": "最初の出力をキャプチャできませんでした",
|
||||
"outputDoesNotExist": "どのセルにも出力が存在しません。",
|
||||
"failedToConvertError": "{{fileName}} を base64 形式に変換できませんでした",
|
||||
"failedToUploadError": "{{fileName}} をアップロードできませんでした"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "データ転送ジョブの開始に失敗しました",
|
||||
"suboptimalPartitionKeyError": "警告: システムはコレクションが最適でないパーティション キーを使用している可能性を検出しました",
|
||||
"description": "コンテナーのパーティション キーを変更する場合は、適切なパーティション キーを使用して宛先コンテナーを作成する必要があります。既存の宛先コンテナーを選択することも可能です。",
|
||||
"sourceContainerId": "ソース {{collectionName}} ID",
|
||||
"destinationContainerId": "宛先 {{collectionName}} ID",
|
||||
"collectionIdTooltip": "REST とすべての SDK を介した ID ベースのルーティングに使用される {{collectionName}} の一意識別子。",
|
||||
"collectionIdPlaceholder": "例: {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID、例 {{collectionName}}1",
|
||||
"existingContainers": "既存のコンテナー",
|
||||
"partitionKeyWarning": "宛先コンテナーがまだ存在していない必要があります。データ エクスプローラーが新しい宛先コンテナーを作成します。"
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "キースペース名",
|
||||
"keyspaceTooltip": "既存のキースペースを選択するか、新しいキースペース ID を入力します。",
|
||||
"tableIdLabel": "CQL コマンドを入力してテーブルを作成します。",
|
||||
"enterTableId": "テーブル ID の入力",
|
||||
"tableSchemaAriaLabel": "テーブル スキーマ",
|
||||
"provisionDedicatedThroughput": "このテーブルの専用スループットをプロビジョニングする",
|
||||
"provisionDedicatedThroughputTooltip": "必要に応じて、スループットがプロビジョニングされているキースペース内のテーブルの専用スループットをプロビジョニングできます。この専用スループットはキースペース内の他のテーブルと共有されず、キースペースにプロビジョニングしたスループットには含まれません。このスループットはキースペース レベルでプロビジョニングしたスループットに加えて課金されます。"
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "プロパティの追加",
|
||||
"addRow": "行の追加",
|
||||
"addEntity": "エンティティの追加",
|
||||
"back": "戻る",
|
||||
"nullFieldsWarning": "警告: null 値フィールドは編集用に表示されません。",
|
||||
"propertyEmptyError": "{{property}} を空にすることはできません。{{property}} の値を入力してください",
|
||||
"whitespaceError": "{{property}} に空白を含めることはできません。空白を含まない {{property}} の値を入力してください",
|
||||
"propertyTypeEmptyError": "プロパティの型を空にすることはできません。プロパティ {{property}} のドロップダウンから型を選択してください"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "クエリを実行する列を選択してください。",
|
||||
"availableColumns": "使用可能な列"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "コンテナー内の項目のビューに表示する列を選択します。",
|
||||
"searchFields": "検索フィールド",
|
||||
"reset": "リセット",
|
||||
"partitionKeySuffix": " (パーティション キー)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "プロパティの追加"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "グローバル セカンダリ インデックス コンテナー ID",
|
||||
"globalSecondaryIndexIdPlaceholder": "例: indexbyEmailId",
|
||||
"projectionQuery": "プロジェクション クエリ",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "グローバル セカンダリ インデックスの定義に関する詳細情報",
|
||||
"disabledTitle": "グローバル セカンダリ インデックスは既に作成されています。完了するまで待ってから、別のものを作成してください。"
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "入力 {{input}} が選択した {{selectedId}} と一致しません"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "情報",
|
||||
"moreDetails": "その他の詳細"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "업로드",
|
||||
"connect": "연결",
|
||||
"remove": "제거",
|
||||
"load": "로드",
|
||||
"publish": "게시",
|
||||
"browse": "찾아보기",
|
||||
"increaseValueBy1": "값을 1만큼 늘리기",
|
||||
"decreaseValueBy1": "값을 1만큼 줄이기"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "컨테이너를 만들지 못했습니다. {{error}}",
|
||||
"errorImportData": "데이터를 가져오지 못했습니다. {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "새 {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} 복원",
|
||||
"deleteDatabase": "{{databaseName}} 삭제",
|
||||
"deleteContainer": "{{containerName}} 삭제",
|
||||
"newSqlQuery": "새 SQL 쿼리",
|
||||
"newQuery": "새 쿼리",
|
||||
"openMongoShell": "Mongo Shell 열기",
|
||||
"newShell": "새 셸",
|
||||
"openCassandraShell": "Cassandra Shell 열기",
|
||||
"newStoredProcedure": "새 저장 프로시저",
|
||||
"newUdf": "새 UDF",
|
||||
"newTrigger": "새 트리거",
|
||||
"deleteStoredProcedure": "저장 프로시저 삭제",
|
||||
"deleteTrigger": "트리거 삭제",
|
||||
"deleteUdf": "사용자 정의 함수 삭제"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "새 항목",
|
||||
"newDocument": "새 문서",
|
||||
"uploadItem": "항목 업로드",
|
||||
"applyFilter": "필터 적용",
|
||||
"unsavedChanges": "저장되지 않은 변경 내용",
|
||||
"unsavedChangesMessage": "저장하지 않은 변경 내용이 손실됩니다. 계속하시겠습니까?",
|
||||
"createDocumentFailed": "문서 만들기 실패",
|
||||
"updateDocumentFailed": "문서 업데이트 실패",
|
||||
"documentDeleted": "문서를 삭제했습니다.",
|
||||
"deleteDocumentDialogTitle": "문서 삭제",
|
||||
"deleteDocumentsDialogTitle": "문서 삭제",
|
||||
"throttlingError": "트래픽률 제한 오류로 인해 일부 문서 삭제에 실패했습니다. 나중에 다시 시도하세요. 앞으로 이런 일이 없도록 컨테이너나 데이터베이스의 처리량을 늘려 보세요.",
|
||||
"deleteFailed": "문서 삭제 실패({{error}})",
|
||||
"missingShardProperty": "문서에 분할 속성이 없습니다. {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "문서 그리드 새로 고침 실패",
|
||||
"confirmDelete": "{{documentName}}을(를) 삭제하시겠습니까?",
|
||||
"confirmDeleteTitle": "삭제 확인",
|
||||
"selectedItems": "선택한 항목 {{count}}개",
|
||||
"selectedItem": "선택한 항목",
|
||||
"selectedDocuments": "선택한 문서 {{count}}개",
|
||||
"selectedDocument": "선택한 문서",
|
||||
"deleteDocumentFailedLog": "문서 {{documentId}}개 삭제 실패(상태 코드 {{statusCode}})",
|
||||
"deleteSuccessLog": "문서 {{count}}개를 삭제함",
|
||||
"deleteThrottledLog": "\"요청이 너무 큽니다\"(429) 오류로 인해 문서 {{count}}개를 삭제하지 못했습니다. 다시 시도하는 중...",
|
||||
"missingShardKeyLog": "새 문서 저장에 실패했습니다. 문서 분할 키가 정의되어 있지 않습니다.",
|
||||
"filterTooltip": "쿼리 조건을 입력하거나 목록에서 하나를 선택하세요.",
|
||||
"loadMore": "더 많이 로드",
|
||||
"documentEditor": "문서 편집기",
|
||||
"savedFilters": "저장된 필터",
|
||||
"defaultFilters": "기본 필터",
|
||||
"abort": "중단",
|
||||
"deletingDocuments": "문서 {{count}}개를 삭제하는 중",
|
||||
"deletedDocumentsSuccess": "문서 {{count}}개를 삭제했습니다.",
|
||||
"deleteAborted": "문서 삭제를 중단했습니다.",
|
||||
"failedToDeleteDocuments": "문서 {{count}}개를 삭제하지 못했습니다.",
|
||||
"requestTooLargeBase": "\"요청이 너무 큼\" 예외(429)로 인해 일부 삭제 요청이 실패했습니다.",
|
||||
"retriedSuccessfully": "하지만 다시 시도하여 성공했습니다.",
|
||||
"retryingNow": "지금 다시 시도 중입니다.",
|
||||
"increaseThroughputTip": "앞으로 이런 일이 없도록 컨테이너나 데이터베이스의 처리량을 늘려 보세요.",
|
||||
"numberOfSelectedDocuments": "선택한 문서 수: {{count}}개",
|
||||
"mongoFilterPlaceholder": "쿼리 조건자(예: {\"id\":\"foo\"})를 입력하거나 드롭다운 목록에서 하나를 선택하거나, 모든 문서를 쿼리하려면 비워두세요.",
|
||||
"sqlFilterPlaceholder": "쿼리 조건자(예: WHERE c.id=\"1\")를 입력하거나 드롭다운 목록에서 하나를 선택하거나, 모든 문서를 쿼리하려면 비워두세요.",
|
||||
"error": "오류",
|
||||
"warning": "경고"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "쿼리 실행",
|
||||
"executeSelection": "선택 영역 실행",
|
||||
"saveQuery": "쿼리 저장",
|
||||
"downloadQuery": "쿼리 다운로드",
|
||||
"cancelQuery": "쿼리 취소",
|
||||
"openSavedQueries": "저장된 쿼리 열기",
|
||||
"vertical": "수직",
|
||||
"horizontal": "수평",
|
||||
"view": "보기",
|
||||
"editingQuery": "쿼리를 편집하는 증"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "저장 프로시저 ID",
|
||||
"idPlaceholder": "새 저장 프로시저 ID 입력",
|
||||
"idAriaLabel": "저장 프로시저 ID",
|
||||
"body": "저장 프로시저 본문",
|
||||
"bodyAriaLabel": "저장 프로시저 본문",
|
||||
"successfulExecution": "저장 프로시저 실행 성공",
|
||||
"resultAriaLabel": "저장 프로시저 결과 실행",
|
||||
"logsAriaLabel": "저장 프로시저 로그 실행",
|
||||
"errors": "오류:",
|
||||
"errorDetailsAriaLabel": "오류 세부 정보 링크",
|
||||
"moreDetails": "추가 세부 정보",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "트리거 ID",
|
||||
"idPlaceholder": "새 트리거 ID 입력",
|
||||
"type": "트리거 유형",
|
||||
"operation": "트리거 작업",
|
||||
"body": "트리거 본문",
|
||||
"bodyAriaLabel": "트리거 본문",
|
||||
"pre": "사전",
|
||||
"post": "게시",
|
||||
"all": "모두",
|
||||
"operationCreate": "만들기",
|
||||
"operationDelete": "삭제",
|
||||
"operationReplace": "바꾸기"
|
||||
},
|
||||
"udf": {
|
||||
"id": "사용자 정의 함수 ID",
|
||||
"idPlaceholder": "새 사용자 정의 함수 ID 입력",
|
||||
"body": "사용자 정의 함수 본문",
|
||||
"bodyAriaLabel": "사용자 정의 함수 본문"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "저장되지 않은 변경 내용",
|
||||
"changesWillBeLost": "모든 변경 내용이 손실됩니다. 계속하시겠습니까?",
|
||||
"resolveConflictFailed": "충돌 확인에 실패했습니다.",
|
||||
"deleteConflictFailed": "충돌 삭제 실패",
|
||||
"refreshGridFailed": "문서 그리드 새로 고침 실패"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "{{databaseName}} 삭제",
|
||||
"warningMessage": "경고! 수행하려는 작업은 실행 취소할 수 없습니다. 계속하면 이 리소스와 모든 자식 리소스가 영구적으로 삭제됩니다.",
|
||||
"confirmPrompt": "{{databaseName}} ID(이름)를 입력하여 확인",
|
||||
"inputMismatch": "입력한 {{databaseName}} 이름 \"{{input}}\"이(가) 선택한 {{databaseName}} \"{{selectedId}}\"와(과) 일치하지 않습니다.",
|
||||
"feedbackTitle": "Azure Cosmos DB 개선에 도움을 주세요!",
|
||||
"feedbackReason": "이 {{databaseName}}을(를) 삭제하는 이유는 무엇인가요?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "{{collectionName}} 삭제",
|
||||
"confirmPrompt": "{{collectionName}} ID를 입력하여 확인하세요",
|
||||
"inputMismatch": "입력한 ID {{input}}이(가) 선택한 {{selectedId}}와(과) 일치하지 않습니다.",
|
||||
"feedbackTitle": "Azure Cosmos DB 개선에 도움을 주세요!",
|
||||
"feedbackReason": "이 {{collectionName}}을(를) 삭제하는 이유가 무엇인가요?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "데이터베이스 {{suffix}}",
|
||||
"databaseIdLabel": "데이터베이스 ID",
|
||||
"keyspaceIdLabel": "키스페이스 ID",
|
||||
"databaseIdPlaceholder": "새 {{databaseLabel}} ID 입력",
|
||||
"databaseTooltip": "{{databaseLabel}}은(는) 하나 이상의 {{collectionsLabel}} 논리 컨테이너입니다.",
|
||||
"shareThroughput": "{{collectionsLabel}} 전체에서 처리량 공유",
|
||||
"shareThroughputTooltip": "{{databaseLabel}} 수준에서 프로비전된 처리량은 {{databaseLabel}} 내의 모든 {{collectionsLabel}}에서 공유됩니다.",
|
||||
"greaterThanError": "autopilot 처리량에 대해 {{minValue}} 보다 큰 값을 입력하세요.",
|
||||
"acknowledgeSpendError": "예상 {{period}} 지출을 확인하세요."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "새로 만들기",
|
||||
"useExisting": "기존 항목 사용",
|
||||
"databaseTooltip": "데이터베이스는 네임스페이스와 유사합니다. 데이터베이스는 {{collectionName}} 집합을 관리하는 단위입니다.",
|
||||
"shareThroughput": "{{collectionName}}의 처리량 공유",
|
||||
"shareThroughputTooltip": "데이터베이스 수준에서 구성된 처리량은 데이터베이스 내 모든 {{collectionName}}에서 공유됩니다.",
|
||||
"collectionIdLabel": "{{collectionName}} ID",
|
||||
"collectionIdTooltip": "{{collectionName}}의 고유 식별자이며 REST 및 모든 SDK를 통해 ID 기반 라우팅에 사용됩니다.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, 예제 {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "기존 {{databaseName}} ID 선택",
|
||||
"existingDatabasePlaceholder": "기존 {{databaseName}} ID 선택",
|
||||
"indexing": "인덱싱",
|
||||
"turnOnIndexing": "인덱싱 켜기",
|
||||
"automatic": "자동",
|
||||
"turnOffIndexing": "인덱싱 끄기",
|
||||
"off": "끄기",
|
||||
"sharding": "분할",
|
||||
"shardingTooltip": "분할된 컬렉션은 데이터를 여러 복제본 집합(샤드)에 분산하여 무제한 확장성을 제공합니다. 분할된 컬렉션을 사용하려면 데이터를 고르게 분산할 샤드 키(필드)를 선택해야 합니다.",
|
||||
"unsharded": "분할되지 않음",
|
||||
"unshardedLabel": "분할되지 않음(20GB 제한)",
|
||||
"sharded": "분할됨",
|
||||
"addPartitionKey": "계층형 파티션 키 추가",
|
||||
"hierarchicalPartitionKeyInfo": "이 기능을 사용하면 최대 3단계 키로 데이터를 분할해 데이터 분포를 개선할 수 있습니다. .NET V3, Java V4 SDK 또는 미리 보기 JavaScript V3 SDK가 필요합니다.",
|
||||
"provisionDedicatedThroughput": "이 {{collectionName}}에 대한 전용 처리량 프로비전",
|
||||
"provisionDedicatedThroughputTooltip": "필요에 따라 처리량이 프로비전된 데이터베이스 내의 {{collectionName}}에 대한 전용 처리량을 프로비전할 수 있습니다. 이 전용 처리량은 데이터베이스의 다른 {{collectionNamePlural}} 공유되지 않으며 데이터베이스에 대해 프로비전한 처리량에 포함되지 않습니다. 이 처리량은 데이터베이스 수준에서 프로비전한 처리량 외에도 요금이 청구됩니다.",
|
||||
"uniqueKeysPlaceholderMongo": "쉼표로 구분된 경로(예: firstName,address.zipCode)",
|
||||
"uniqueKeysPlaceholderSql": "쉼표로 구분된 경로 예: /firstName,/address/zipCode",
|
||||
"addUniqueKey": "고유 키 추가",
|
||||
"enableAnalyticalStore": "분석 저장소 사용",
|
||||
"disableAnalyticalStore": "분석 저장소 사용 안 함",
|
||||
"on": "켜기",
|
||||
"analyticalStoreSynapseLinkRequired": "분석 저장소 {{collectionName}}을(를) 만들려면 Azure Synapse Link가 필요합니다. 이 Cosmos DB 계정에서 Synapse Link를 사용하도록 설정하세요.",
|
||||
"enable": "활성화",
|
||||
"containerVectorPolicy": "컨테이너 벡터 정책",
|
||||
"containerFullTextSearchPolicy": "컨테이너 전체 텍스트 검색 정책",
|
||||
"advanced": "고급",
|
||||
"mongoIndexingTooltip": "_id 필드는 기본적으로 인덱싱됩니다. 모든 필드에 와일드카드 인덱스를 생성하면 쿼리가 최적화되어 개발에 권장됩니다.",
|
||||
"createWildcardIndex": "모든 필드에 와일드카드 인덱스 만들기",
|
||||
"legacySdkCheckbox": "내 애플리케이션은 이전 Cosmos .NET 또는 Java SDK 버전(.NET V1 또는 Java V2)을 사용합니다.",
|
||||
"legacySdkInfo": "이전 SDK와 호환되도록 생성된 컨테이너는 최대 101바이트 크기의 파티션 키 값을 지원하는 레거시 분할 방식을 사용합니다. 이 옵션을 사용하면 계층형 파티션 키를 사용할 수 없습니다.",
|
||||
"indexingOnInfo": "문서의 모든 속성은 유연하고 효율적인 쿼리를 위해 기본적으로 인덱싱됩니다.",
|
||||
"indexingOffInfo": "인덱싱이 꺼집니다. 쿼리를 실행하지 않거나 키 값 작업만 하는 경우 권장합니다.",
|
||||
"indexingOffWarning": "인덱싱이 꺼진 상태로 컨테이너를 만들면 인덱싱 정책을 변경할 수 없습니다. 인덱싱 정책이 있는 컨테이너에서만 인덱싱 변경이 허용됩니다.",
|
||||
"acknowledgeSpendErrorMonthly": "월별 예상 지출을 확인하세요.",
|
||||
"acknowledgeSpendErrorDaily": "예상 일별 지출을 확인하세요.",
|
||||
"unshardedMaxRuError": "분할되지 않은 컬렉션은 최대 10,000RU를 지원합니다.",
|
||||
"acknowledgeShareThroughputError": "이 전용 처리량의 예상 비용을 확인해 주세요.",
|
||||
"vectorPolicyError": "컨테이너 벡터 정책의 오류를 수정하세요.",
|
||||
"fullTextSearchPolicyError": "컨테이너 전체 텍스트 검색 정책의 오류를 수정해 주세요.",
|
||||
"addingSampleDataSet": "샘플 데이터 세트 추가"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "샤드 키(필드)는 데이터를 여러 복제본 집합(샤드)에 분산해 무제한 확장성을 제공합니다. 데이터를 고르게 분산할 필드를 신중히 선택하는 것이 중요합니다.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} 확장성을 위해 파티션 간에 데이터를 자동으로 분산하는 데 사용됩니다. 다양한 값을 갖고 요청 볼륨을 고르게 분산하는 JSON 문서의 속성을 선택하세요.",
|
||||
"partitionKeyTooltipSqlSuffix": " 읽기 작업이 적거나 쓰기 작업이 많은 모든 크기의 워크로드에는 id가 좋은 선택입니다.",
|
||||
"shardKeyLabel": "분할 키",
|
||||
"partitionKeyLabel": "파티션 키",
|
||||
"shardKeyPlaceholder": "e.g., categoryId",
|
||||
"partitionKeyPlaceholderDefault": "예: /address",
|
||||
"partitionKeyPlaceholderFirst": "필수 - 첫 번째 파티션 키(예: /TenantId)",
|
||||
"partitionKeyPlaceholderSecond": "두 번째 파티션 키(예: /UserId)",
|
||||
"partitionKeyPlaceholderThird": "세 번째 파티션 키(예: /SessionId)",
|
||||
"partitionKeyPlaceholderGraph": "e.g., /address/zipCode",
|
||||
"uniqueKeysTooltip": "고유 키는 개발자가 데이터베이스에 데이터 무결성 계층을 추가할 수 있게 합니다. 컨테이너 생성 시 고유 키 정책을 설정하면 파티션 키별로 하나 이상의 값이 고유함을 보장합니다.",
|
||||
"uniqueKeysLabel": "고유 키",
|
||||
"analyticalStoreLabel": "분석 저장소",
|
||||
"analyticalStoreTooltip": "트랜잭션 워크로드 성능에 영향을 주지 않고 운영 데이터에 대해 거의 실시간 분석을 수행할 수 있도록 분석 저장소 기능을 사용하도록 설정하세요.",
|
||||
"analyticalStoreDescription": "트랜잭션 워크로드 성능에 영향을 주지 않고 운영 데이터에 대해 거의 실시간 분석을 수행할 수 있도록 분석 저장소 기능을 사용하도록 설정하세요.",
|
||||
"vectorPolicyTooltip": "유사성 쿼리에 사용할 수 있도록 벡터가 포함된 데이터 속성을 설명하세요."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "페이지 옵션",
|
||||
"pageOptionsDescription": "고정된 쿼리 결과 수를 지정하려면 [사용자 지정]을 선택하고, 페이지당 최대 쿼리 결과를 표시하려면 [제한 없음]을 선택하세요.",
|
||||
"queryResultsPerPage": "페이지당 쿼리 결과",
|
||||
"queryResultsPerPageTooltip": "페이지당 표시할 쿼리 결과 수를 입력하세요.",
|
||||
"customQueryItemsPerPage": "페이지당 사용자 지정 쿼리 항목 수",
|
||||
"custom": "사용자 지정",
|
||||
"unlimited": "무제한",
|
||||
"entraIdRbac": "Entra ID RBAC 사용 설정",
|
||||
"entraIdRbacDescription": "Entra ID RBAC를 자동으로 사용하려면 [자동]을 선택하세요. 강제로 사용하거나 사용하지 않으려면 True/False를 선택하세요.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "영역 선택",
|
||||
"regionSelectionDescription": "Cosmos 클라이언트가 계정에 액세스할 때 사용하는 지역을 변경합니다.",
|
||||
"selectRegion": "지역 선택",
|
||||
"selectRegionTooltip": "클라이언트 작업에 사용할 계정 끝점을 변경합니다.",
|
||||
"globalDefault": "전역(기본값)",
|
||||
"readWrite": "(읽기/쓰기)",
|
||||
"read": "(읽기)",
|
||||
"queryTimeout": "쿼리 시간 초과",
|
||||
"queryTimeoutDescription": "쿼리가 지정된 시간 제한에 도달하면 자동 취소가 설정되어 있지 않은 경우 쿼리를 취소할 수 있는 팝업이 표시됩니다.",
|
||||
"enableQueryTimeout": "쿼리 제한 시간 사용",
|
||||
"queryTimeoutMs": "쿼리 시간 제한(밀리초)",
|
||||
"automaticallyCancelQuery": "시간 초과 시 쿼리 자동 취소",
|
||||
"ruLimit": "RU 제한",
|
||||
"ruLimitDescription": "쿼리가 설정된 RU 제한을 초과하면 쿼리가 중단됩니다.",
|
||||
"enableRuLimit": "RU 제한 사용",
|
||||
"ruLimitLabel": "RU 제한(RU)",
|
||||
"defaultQueryResults": "기본 쿼리 결과 보기",
|
||||
"defaultQueryResultsDescription": "쿼리 결과를 표시할 때 사용할 기본 보기를 선택하세요.",
|
||||
"retrySettings": "설정 다시 시도",
|
||||
"retrySettingsDescription": "CosmosDB 쿼리 중 제한된 요청에 적용되는 재시도 정책입니다.",
|
||||
"maxRetryAttempts": "최대 재시도 횟수",
|
||||
"maxRetryAttemptsTooltip": "요청에 대해 수행할 최대 재시도 횟수입니다. 기본값 9.",
|
||||
"fixedRetryInterval": "수정된 재시도 간격(밀리초)",
|
||||
"fixedRetryIntervalTooltip": "응답에 포함된 retryAfter를 무시하고 각 재시도 사이에 대기하는 고정 재시도 간격(밀리초)입니다. 기본값은 0밀리초입니다.",
|
||||
"maxWaitTime": "최대 대기 시간(초)",
|
||||
"maxWaitTimeTooltip": "재시도 중 요청을 대기하는 최대 대기 시간(초)입니다. 기본값은 30초입니다.",
|
||||
"enableContainerPagination": "컨테이너 페이지 매김 사용 설정",
|
||||
"enableContainerPaginationDescription": "한 번에 50개의 컨테이너를 로드합니다. 현재 컨테이너는 영숫자 순서로 불러오지 않습니다.",
|
||||
"enableCrossPartitionQuery": "파티션 간 쿼리 사용 설정",
|
||||
"enableCrossPartitionQueryDescription": "쿼리를 실행하는 동안 두 개 이상의 요청을 보냅니다. 쿼리가 단일 파티션 키 값으로 제한되지 않은 경우 여러 요청이 필요합니다.",
|
||||
"maxDegreeOfParallelism": "최대 병렬 처리 수준",
|
||||
"maxDegreeOfParallelismDescription": "병렬 쿼리 실행 시 클라이언트 쪽에서 동시에 실행되는 작업 수를 가져오거나 설정합니다. 양수 값으로 설정하면 동시 작업 수가 해당 값으로 제한됩니다. 0보다 작게 설정하면 시스템이 자동으로 실행할 동시 작업 수를 결정합니다.",
|
||||
"maxDegreeOfParallelismQuery": "최대 병렬 처리 수준까지 쿼리",
|
||||
"priorityLevel": "우선 순위 수준",
|
||||
"priorityLevelDescription": "Priority-Based 실행 시 Data Explorer의 데이터 평면 요청 우선순위 수준을 설정합니다. \"없음\"을 선택하면 Data Explorer가 우선순위를 지정하지 않고 서버 기본 우선순위가 적용됩니다.",
|
||||
"displayGremlinQueryResults": "Gremlin 쿼리 결과 표시 방식:",
|
||||
"displayGremlinQueryResultsDescription": "쿼리 결과를 그래프로 자동 시각화하거나 JSON으로 표시하려면 Graph를 선택하세요.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "그래프 자동 시각화",
|
||||
"enableSampleDatabase": "샘플 데이터베이스 사용 설정",
|
||||
"enableSampleDatabaseDescription": "이 샘플 데이터베이스와 컬렉션은 NoSQL 쿼리를 탐색하는 데 사용할 수 있는 가상 제품 데이터를 포함합니다. Data Explorer UI에 별도의 데이터베이스로 표시되며, Microsoft가 비용 없이 생성하고 유지 관리합니다.",
|
||||
"enableSampleDbAriaLabel": "쿼리 탐색용 샘플 DB 사용 설정",
|
||||
"guidRepresentation": "GUID 표현",
|
||||
"guidRepresentationDescription": "MongoDB의 GuidRepresentation은 BSON 문서에 저장할 때 GUID(전역 고유 식별자)가 직렬화되고 역직렬화되는 방식을 나타냅니다. 모든 문서 작업에 적용됩니다.",
|
||||
"advancedSettings": "고급 설정",
|
||||
"ignorePartitionKey": "문서 업데이트 시 파티션 키 무시",
|
||||
"ignorePartitionKeyTooltip": "선택하면 업데이트 작업 시 파티션 키 값을 사용해 문서를 찾지 않습니다. 비정상적인 파티션 키로 인해 문서 업데이트가 실패할 때만 사용하세요.",
|
||||
"clearHistory": "기록 지우기",
|
||||
"clearHistoryConfirm": "계속 진행하시겠습니까?",
|
||||
"clearHistoryDescription": "이 작업을 수행하면 이 브라우저에서 이 계정에 대한 모든 사용자 지정이 다음을 포함해 지워집니다.",
|
||||
"clearHistoryTabLayout": "분할기 위치를 포함해 사용자 지정한 탭 레이아웃을 초기화합니다.",
|
||||
"clearHistoryTableColumns": "사용자 지정 열을 포함해 테이블 열 기본 설정을 지웁니다.",
|
||||
"clearHistoryFilters": "필터 기록 지우기",
|
||||
"clearHistoryRegion": "영역 선택을 전역으로 재설정",
|
||||
"increaseValueBy1000": "1000씩 값 늘리기",
|
||||
"decreaseValueBy1000": "값을 1000으로 줄입니다.",
|
||||
"none": "없음",
|
||||
"low": "낮음",
|
||||
"high": "높음",
|
||||
"automatic": "자동",
|
||||
"enhancedQueryControl": "향상된 쿼리 제어",
|
||||
"enableQueryControl": "쿼리 제어 사용 설정",
|
||||
"explorerVersion": "Explorer 버전",
|
||||
"accountId": "계정 ID",
|
||||
"sessionId": "세션 ID",
|
||||
"popupsDisabledError": "브라우저에서 팝업이 차단되어 이 계정에 대한 권한 부여를 설정할 수 없습니다.\n이 사이트에 대해 팝업을 허용한 후 \"Entra ID에 로그인\" 버튼을 클릭하세요.",
|
||||
"failedToAcquireTokenError": "권한 부여 토큰을 자동으로 가져오지 못했습니다. Entra ID RBAC 작업을 사용하려면 \"Entra ID 로그인\" 버튼을 클릭하세요."
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "쿼리 저장",
|
||||
"setupCostMessage": "규정 준수를 위해 쿼리를 \"{{databaseName}}\"이라는 별도의 데이터베이스 내 Azure Cosmos 계정의 컨테이너에 저장합니다. 계속하려면 계정에 컨테이너를 생성해야 하며, 예상 추가 비용은 하루 $0.77입니다.",
|
||||
"completeSetup": "설정 완료",
|
||||
"noQueryNameError": "쿼리 이름이 지정되지 않았습니다.",
|
||||
"invalidQueryContentError": "잘못된 쿼리 내용이 지정되었습니다.",
|
||||
"failedToSaveQueryError": "쿼리 {{queryName}}을(를) 저장하지 못했습니다.",
|
||||
"failedToSetupContainerError": "저장된 쿼리용 컨테이너 설정에 실패했습니다.",
|
||||
"accountNotSetupError": "쿼리를 저장하지 못했습니다. 계정이 쿼리 저장을 설정하지 않았습니다.",
|
||||
"name": "이름"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "지정된 파일이 없습니다.",
|
||||
"failedToLoadQueryError": "쿼리를 로드하지 못했습니다.",
|
||||
"failedToLoadQueryFromFileError": "{{fileName}} 파일에서 쿼리를 불러오지 못했습니다.",
|
||||
"selectFilesToOpen": "쿼리 문서 선택",
|
||||
"browseFiles": "찾아보기"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "입력 매개변수 입력(있는 경우)",
|
||||
"key": "키",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "파티션 키 값",
|
||||
"value": "값",
|
||||
"addNewParam": "새 매개변수 추가",
|
||||
"addParam": "매개 변수 추가",
|
||||
"deleteParam": "매개변수 삭제",
|
||||
"invalidParamError": "잘못된 매개 변수를 지정했습니다. {{invalidParam}}",
|
||||
"invalidParamConsoleError": "잘못된 매개변수가 지정되었습니다. {{invalidParam}}은(는) 올바른 리터럴 값이 아닙니다.",
|
||||
"stringType": "문자열",
|
||||
"customType": "사용자 지정"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "파일을 지정하지 않았습니다. 파일을 하나 이상 입력하세요.",
|
||||
"selectJsonFiles": "JSON Files 선택",
|
||||
"selectJsonFilesTooltip": "업로드할 JSON 파일을 하나 이상 선택하세요. 각 파일에는 단일 JSON 문서 또는 JSON 문서 배열이 포함될 수 있습니다. 한 번의 업로드 작업에서 모든 파일의 총 크기는 2MB 미만이어야 합니다. 더 큰 데이터 세트는 여러 번에 나누어 업로드할 수 있습니다.",
|
||||
"fileNameColumn": "파일 이름",
|
||||
"statusColumn": "상태",
|
||||
"uploadStatus": "{{numSucceeded}} 생성됨, {{numThrottled}} 제한됨, {{numFailed}} 오류 발생",
|
||||
"uploadedFiles": "업로드된 파일"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "{{name}}을(를) {{destination}}(으)로 복사 실패",
|
||||
"uploadFailedError": "'{{name}}' 업로드 실패",
|
||||
"location": "위치",
|
||||
"locationAriaLabel": "위치",
|
||||
"selectLocation": "복사할 노트북 위치 선택",
|
||||
"name": "이름"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "{{notebookName}}을(를) 갤러리에 게시하지 못했습니다.",
|
||||
"publishDescription": "게시하면 이 노트북이 Azure Cosmos DB 노트북 공개 갤러리에 표시됩니다. 게시 전에 민감한 데이터나 출력이 제거되었는지 확인하세요.",
|
||||
"publishPrompt": "\"{{name}}\"을(를) 게시하고 갤러리에 공유하시겠습니까?",
|
||||
"coverImage": "커버 이미지",
|
||||
"coverImageUrl": "표지 이미지 URL",
|
||||
"name": "이름",
|
||||
"description": "설명",
|
||||
"tags": "태그",
|
||||
"tagsPlaceholder": "선택 태그 1, 선택 태그 2",
|
||||
"preview": "미리 보기",
|
||||
"urlType": "URL",
|
||||
"customImage": "사용자 지정 이미지",
|
||||
"takeScreenshot": "화면 캡처",
|
||||
"useFirstDisplayOutput": "첫 번째 디스플레이 출력 사용",
|
||||
"failedToCaptureOutput": "첫 번째 출력을 캡처하지 못했습니다.",
|
||||
"outputDoesNotExist": "셀에 대한 출력이 없습니다.",
|
||||
"failedToConvertError": "{{fileName}}을(를) base64 형식으로 변환하지 못했습니다.",
|
||||
"failedToUploadError": "{{fileName}} 업로드 실패"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "데이터 전송 작업을 시작하지 못했습니다.",
|
||||
"suboptimalPartitionKeyError": "경고: 컬렉션이 최적이 아닌 파티션 키를 사용하고 있을 수 있습니다.",
|
||||
"description": "컨테이너의 파티션 키를 변경하려면 올바른 파티션 키를 가진 대상 컨테이너를 새로 만들어야 합니다. 기존 대상 컨테이너를 선택할 수도 있습니다.",
|
||||
"sourceContainerId": "원본 {{collectionName}} ID",
|
||||
"destinationContainerId": "대상 {{collectionName}} ID",
|
||||
"collectionIdTooltip": "{{collectionName}}의 고유 식별자이며 REST 및 모든 SDK를 통해 ID 기반 라우팅에 사용됩니다.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, 예제 {{collectionName}}1",
|
||||
"existingContainers": "기존 컨테이너",
|
||||
"partitionKeyWarning": "대상 컨테이너가 이미 존재하면 안 됩니다. Explorer가 새 대상 컨테이너를 생성합니다."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "키스페이스 이름",
|
||||
"keyspaceTooltip": "기존 키스페이스를 선택하거나 새 키스페이스 ID를 입력하세요.",
|
||||
"tableIdLabel": "테이블을 만들려면 CQL 명령을 입력하세요.",
|
||||
"enterTableId": "테이블 ID 입력",
|
||||
"tableSchemaAriaLabel": "테이블 스키마",
|
||||
"provisionDedicatedThroughput": "이 테이블에 대한 전용 처리량 프로비전",
|
||||
"provisionDedicatedThroughputTooltip": "키스페이스에 처리량이 프로비전된 경우, 테이블에 전용 처리량을 선택적으로 프로비전할 수 있습니다. 이 전용 처리량은 키스페이스 내 다른 테이블과 공유되지 않으며, 키스페이스에 프로비전한 처리량에 포함되지 않습니다. 이 전용 처리량은 키스페이스 수준에서 프로비전한 처리량과 별도로 청구됩니다."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "속성 추가",
|
||||
"addRow": "행 추가",
|
||||
"addEntity": "엔터티 추가",
|
||||
"back": "뒤로",
|
||||
"nullFieldsWarning": "경고: Null 필드는 편집용으로 표시되지 않습니다.",
|
||||
"propertyEmptyError": "{{property}}을(를) 비워 둘 수 없습니다. {{property}} 값을 입력하세요.",
|
||||
"whitespaceError": "{{property}}에 공백을 포함할 수 없습니다. {{property}}에 공백 없이 값을 입력하세요.",
|
||||
"propertyTypeEmptyError": "속성 형식은 비워 둘 수 없습니다. 속성 {{property}}에 대한 드롭다운에서 형식을 선택하세요."
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "쿼리할 열을 선택하세요.",
|
||||
"availableColumns": "사용 가능한 열"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "컨테이너 항목 보기에서 표시할 열을 선택하세요.",
|
||||
"searchFields": "검색 필드",
|
||||
"reset": "다시 설정",
|
||||
"partitionKeySuffix": " (파티션 키)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "속성 추가"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "전역 보조 인덱스 컨테이너 ID",
|
||||
"globalSecondaryIndexIdPlaceholder": "e.g., indexbyEmailId",
|
||||
"projectionQuery": "프로젝션 쿼리",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "전역 보조 인덱스 정의에 대해 자세히 알아보세요.",
|
||||
"disabledTitle": "전역 보조 인덱스가 이미 생성 중입니다. 다른 항목을 만들기 전에 완료되기를 기다려 주세요."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "입력한 {{input}}이(가) 선택한 {{selectedId}}와(과) 일치하지 않습니다."
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "정보",
|
||||
"moreDetails": "추가 세부 정보"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "Verwijderen",
|
||||
"update": "Bijwerken",
|
||||
"discard": "Negeren",
|
||||
"execute": "Uitvoeren",
|
||||
"execute": "Execute",
|
||||
"loading": "Laden",
|
||||
"loadingEllipsis": "Laden...",
|
||||
"next": "Volgende",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Uploaden",
|
||||
"connect": "Verbinding maken",
|
||||
"remove": "Verwijderen",
|
||||
"load": "Laden",
|
||||
"publish": "Publiceren",
|
||||
"browse": "Bladeren",
|
||||
"increaseValueBy1": "Waarde verhogen met 1",
|
||||
"decreaseValueBy1": "Waarde verlagen met 1"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "Ga aan de slag met onze voorbeelddatasets, documentatie en extra tools."
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "Quick Start starten",
|
||||
"description": "Start een snelstart-zelfstudie om aan de slag te gaan met voorbeeldgegevens"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "Nieuw {{collectionName}}",
|
||||
"description": "Een nieuwe container maken voor opslag en doorvoer"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Galerie met voorbeelden van Azure Cosmos DB",
|
||||
"description": "Ontdek voorbeelden waarin schaalbare, intelligente app-patronen worden getoond. Probeer er nu een om te zien hoe snel u van concept naar code kunt gaan met Cosmos DB"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "Verbinding maken",
|
||||
"description": "Gebruikt u liever uw eigen hulpprogramma's? Zoek de connection string die u nodig hebt om verbinding te maken",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "Verbinden met pgAdmin",
|
||||
"description": "Voorkeur voor pgAdmin? Uw verbindingsreeksen vindt u hier"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "Verbinding maken met VS Code",
|
||||
"description": "Query's uitvoeren en beheren op uw MongoDB- en DocumentDB-clusters in Visual Studio Code"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "PostgreSQL-shell",
|
||||
"description": "Een tabel maken en communiceren met gegevens met de shell-interface van PostgreSQL"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Mongo-shell",
|
||||
"description": "Een verzameling maken en communiceren met gegevens met behulp van de shell-interface van MongoDB"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Nieuw bij Cosmos DB PGSQL?",
|
||||
"body": "Welkom! Als u Cosmos DB PGSQL nog niet kent en hulp nodig hebt om aan de slag te gaan, kunt u hier voorbeeldgegevens vinden en query's uitvoeren."
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "Uw wachtwoord maken",
|
||||
"body": "Als u uw wachtwoord nog niet hebt gewijzigd, doe dat dan nu."
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "Beginnen met voorbeeld {{collectionName}}",
|
||||
"body": "U wordt begeleid bij het maken van een voorbeeldcontainer met voorbeeldgegevens. Vervolgens krijgt u een rondleiding door Data Explorer. U kunt ook het starten van deze tour annuleren en zelf op verkenning gaan"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "Recente items",
|
||||
"clearRecents": "Recente items wissen",
|
||||
"top3": "De drie belangrijkste zaken om te weten",
|
||||
"learningResources": "Trainingsresources",
|
||||
"nextSteps": "Volgende stappen",
|
||||
"tipsAndLearnMore": "Tips & meer informatie",
|
||||
"notebook": "Notitieboek",
|
||||
"needHelp": "Hulp nodig?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "Geavanceerde modelleringspatronen",
|
||||
"description": "Leer geavanceerde strategieën om uw database te optimaliseren."
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Best practices voor partitionering",
|
||||
"description": "Meer informatie over het toepassen van gegevensmodel- en partitioneringsstrategieën."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "Uw resourcevereisten plannen",
|
||||
"description": "Leer de verschillende configuratieopties kennen."
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "Wat is de MongoDB-API?",
|
||||
"description": "Meer informatie over Azure Cosmos DB for MongoDB en de bijbehorende functies."
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "Functies en syntaxis",
|
||||
"description": "Ontdek de voordelen en functies"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Uw gegevens migreren",
|
||||
"description": "Stappen voorafgaand aan de migratie voor het verplaatsen van gegevens"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Een Java-app bouwen",
|
||||
"description": "Maak een Java-app met behulp van een SDK."
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Best practices voor partitionering",
|
||||
"description": "Meer informatie over de werking van partitionering."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "Aanvraageenheden (RU's)",
|
||||
"description": "Meer informatie over RU-kosten."
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "Gegevensmodellering",
|
||||
"description": "Aanbevelingen voor grafiekgegevensmodellering"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Best practices voor partitionering",
|
||||
"description": "Meer informatie over partitionering"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "Gegevens opvragen",
|
||||
"description": "Gegevens opvragen met Gremlin"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Wat is de tabel-API?",
|
||||
"description": "Meer informatie over Azure Cosmos DB for Table en de bijbehorende functies"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Uw gegevens migreren",
|
||||
"description": "Meer informatie over het migreren van uw gegevens"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Veelgestelde vragen over Azure Cosmos DB for Table",
|
||||
"description": "Veelgestelde vragen over Azure Cosmos DB for Table"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Sneltoetsen in Data Explorer",
|
||||
"description": "Leer sneltoetsen om door Data Explorer te navigeren."
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "Meer informatie over de basisprincipes",
|
||||
"description": "Bekijk de introductie- en instructievideo's van Azure Cosmos DB Live TV."
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "Aan de slag met een SDK",
|
||||
"description": "Meer informatie over de Azure Cosmos DB SDK."
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Uw gegevens migreren",
|
||||
"description": "Migreer gegevens met behulp van Azure-services en opensource-oplossingen."
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Een app bouwen met Node.js",
|
||||
"description": "Maak een Node.js-app."
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Aan de slag-handleiding",
|
||||
"description": "Leer de basisbeginselen om aan de slag te gaan."
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "Een container maken",
|
||||
"description": "Maak kennis met de opties om een container te maken."
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "Inrichtingsdoorvoer",
|
||||
"description": "Meer informatie over het configureren van doorvoer."
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "Aan de slag ",
|
||||
"description": "Maken, query's uitvoeren en bladeren met behulp van de Gremlin-console"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "Grafiekgegevens importeren",
|
||||
"description": "Informatie over bulkopnamegegevens met BulkExecutor"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": "Een .NET-app bouwen",
|
||||
"description": "Toegang krijgen tot Azure Cosmos DB for Table vanuit een .NET-app."
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Een Java-app bouwen",
|
||||
"description": "Een Azure Cosmos DB for Table-app maken met Java SDK "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "Gegevensmodellering",
|
||||
"distributionColumn": "Een distributiekolom kiezen",
|
||||
"buildApps": "Apps bouwen met Python/Java/Django"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "Gegevens migreren",
|
||||
"vectorSearch": "AI-apps bouwen met vector search",
|
||||
"buildApps": "Apps bouwen met Node.js"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "Prestaties afstemmen",
|
||||
"diagnosticQueries": "Nuttige diagnostische query's",
|
||||
"sqlReference": "Gedistribueerde SQL-verwijzing"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "Vector search",
|
||||
"textIndexing": "Tekstindexeren",
|
||||
"troubleshoot": "Veelvoorkomende problemen oplossen"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "Uw database bouwen",
|
||||
"useTitle": "Uw database gebruiken",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "Nieuwe container",
|
||||
"description": "Een doelcontainer maken om uw gegevens op te slaan"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "Voorbeeldgegevens",
|
||||
"description": "Voorbeeldgegevens laden in uw database"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "Voorbeeldvectorgegevens",
|
||||
"description": "Voorbeeldvectorgegevens laden met Text-Embedding-ADA-002"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "App-ontwikkeling",
|
||||
"description": "Begin hier met het gebruik van een SDK om uw apps te bouwen"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "Voorbeeldgalerie",
|
||||
"description": "Krijg end-to-end-voorbeelden uit de praktijk"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "Voorbeeldgegevens",
|
||||
"startButton": "Begin",
|
||||
"createPrompt": "Maak een container {{containerName}} en importeer er voorbeeldgegevens in. Dit kan enkele minuten duren.",
|
||||
"creatingContainer": "De container {{containerName}} wordt gemaakt...",
|
||||
"importingData": "Gegevens importeren in {{containerName}}...",
|
||||
"success": "{{containerName}} is gemaakt met voorbeeldgegevens.",
|
||||
"errorContainerExists": "De container {{containerName}} in database {{databaseName}} bestaat al. Verwijder het en probeer het opnieuw.",
|
||||
"errorCreateContainer": "Kan de container niet maken: {{error}}",
|
||||
"errorImportData": "Kan geen gegevens importeren: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nieuw {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} herstellen",
|
||||
"deleteDatabase": "{{databaseName}} verwijderen",
|
||||
"deleteContainer": "{{containerName}} verwijderen",
|
||||
"newSqlQuery": "Nieuwe SQL-query",
|
||||
"newQuery": "Nieuwe query",
|
||||
"openMongoShell": "Mongo-shell openen",
|
||||
"newShell": "Nieuwe shell",
|
||||
"openCassandraShell": "Cassandra-shell openen",
|
||||
"newStoredProcedure": "Nieuwe opgeslagen procedure",
|
||||
"newUdf": "Nieuwe UDF",
|
||||
"newTrigger": "Nieuwe trigger",
|
||||
"deleteStoredProcedure": "Opgeslagen procedure verwijderen",
|
||||
"deleteTrigger": "Trigger verwijderen",
|
||||
"deleteUdf": "Door de gebruiker gedefinieerde functie verwijderen"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nieuw item",
|
||||
"newDocument": "Nieuw document",
|
||||
"uploadItem": "Item uploaden",
|
||||
"applyFilter": "Filter toepassen",
|
||||
"unsavedChanges": "Niet-opgeslagen wijzigingen",
|
||||
"unsavedChangesMessage": "Niet-opgeslagen wijzigingen gaan verloren. Wilt u doorgaan?",
|
||||
"createDocumentFailed": "Het maken van het document is mislukt",
|
||||
"updateDocumentFailed": "Het bijwerken van het document is mislukt",
|
||||
"documentDeleted": "Document is verwijderd.",
|
||||
"deleteDocumentDialogTitle": "Document verwijderen",
|
||||
"deleteDocumentsDialogTitle": "Documenten verwijderen",
|
||||
"throttlingError": "Sommige documenten kunnen niet worden verwijderd vanwege een fout met snelheidsbeperking. Probeer het later opnieuw. Als u dit in de toekomst wilt voorkomen, kunt u overwegen de doorvoer voor uw container of database te verhogen.",
|
||||
"deleteFailed": "Het verwijderen van een of meer documenten is mislukt ({{error}})",
|
||||
"missingShardProperty": "De shard-eigenschap ontbreekt in het document: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Kan het raster met documenten niet vernieuwen",
|
||||
"confirmDelete": "Weet u zeker dat u {{documentName}} wilt verwijderen?",
|
||||
"confirmDeleteTitle": "Verwijderen bevestigen",
|
||||
"selectedItems": "de geselecteerde {{count}} items",
|
||||
"selectedItem": "het geselecteerde item",
|
||||
"selectedDocuments": "de {{count}} geselecteerde documenten",
|
||||
"selectedDocument": "het geselecteerde document",
|
||||
"deleteDocumentFailedLog": "Kan het document {{documentId}} met de statuscode {{statusCode}} niet verwijderen",
|
||||
"deleteSuccessLog": "{{count}} document(en) zijn verwijderd",
|
||||
"deleteThrottledLog": "Kan {{count}} document(en) niet verwijderen vanwege de fout 'Aanvraag te groot' (429). Opnieuw proberen...",
|
||||
"missingShardKeyLog": "Kan het nieuwe document niet opslaan: de shardsleutel van het document is niet gedefinieerd",
|
||||
"filterTooltip": "Typ een querypredicaat of kies een querypredicaat uit de lijst.",
|
||||
"loadMore": "Meer laden",
|
||||
"documentEditor": "Document-editor",
|
||||
"savedFilters": "Opgeslagen filters",
|
||||
"defaultFilters": "Standaardfilters",
|
||||
"abort": "Afbreken",
|
||||
"deletingDocuments": "{{count}} document(en) verwijderen",
|
||||
"deletedDocumentsSuccess": "{{count}} document(en) zijn verwijderd.",
|
||||
"deleteAborted": "Het verwijderen van een of meer documenten is afgebroken.",
|
||||
"failedToDeleteDocuments": "Kan {{count}} document(en) niet verwijderen.",
|
||||
"requestTooLargeBase": "Sommige verwijderverzoeken zijn mislukt vanwege een fout 'Aanvraag te groot' (429)",
|
||||
"retriedSuccessfully": "maar er is opnieuw geprobeerd.",
|
||||
"retryingNow": "Nu opnieuw proberen...",
|
||||
"increaseThroughputTip": "Als u dit in de toekomst wilt voorkomen, kunt u overwegen de doorvoer voor uw container of database te verhogen.",
|
||||
"numberOfSelectedDocuments": "Aantal geselecteerde documenten: {{count}}",
|
||||
"mongoFilterPlaceholder": "Typ een querypredicaat (bijvoorbeeld {\"id\":\"foo\"}), of kies een querypredicaat in de vervolgkeuzelijst of laat leeg om een query uit te voeren op alle documenten.",
|
||||
"sqlFilterPlaceholder": "Typ een querypredicaat (bijvoorbeeld WHERE c.id=\"1\"), of kies een querypredicaat in de vervolgkeuzelijst of laat leeg om een query uit te voeren op alle documenten.",
|
||||
"error": "Fout",
|
||||
"warning": "Waarschuwing"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Query uitvoeren",
|
||||
"executeSelection": "Selectie uitvoeren",
|
||||
"saveQuery": "Query opslaan",
|
||||
"downloadQuery": "Query downloaden",
|
||||
"cancelQuery": "Query annuleren",
|
||||
"openSavedQueries": "Opgeslagen query's openen",
|
||||
"vertical": "Verticaal",
|
||||
"horizontal": "Horizontaal",
|
||||
"view": "Weergeven",
|
||||
"editingQuery": "Query aan het bewerken"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Opgeslagen procedure-id",
|
||||
"idPlaceholder": "Voer de nieuwe opgeslagen procedure-id in",
|
||||
"idAriaLabel": "Opgeslagen procedure-id",
|
||||
"body": "Hoofdtekst van opgeslagen procedure",
|
||||
"bodyAriaLabel": "Hoofdtekst van opgeslagen procedure",
|
||||
"successfulExecution": "Geslaagde uitvoering van opgeslagen procedure",
|
||||
"resultAriaLabel": "Resultaat van opgeslagen procedure uitvoeren",
|
||||
"logsAriaLabel": "Opgeslagen procedurelogboeken uitvoeren",
|
||||
"errors": "Fouten:",
|
||||
"errorDetailsAriaLabel": "Koppeling foutdetails",
|
||||
"moreDetails": "Meer informatie",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Trigger-id",
|
||||
"idPlaceholder": "Voer de nieuwe trigger-id in",
|
||||
"type": "Triggertype",
|
||||
"operation": "Activeringsbewerking",
|
||||
"body": "Hoofdtekst van trigger",
|
||||
"bodyAriaLabel": "Hoofdtekst van trigger",
|
||||
"pre": "Pre",
|
||||
"post": "Bericht",
|
||||
"all": "Alle",
|
||||
"operationCreate": "Maken",
|
||||
"operationDelete": "Verwijderen",
|
||||
"operationReplace": "Vervangen"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Door de gebruiker gedefinieerde functie-id",
|
||||
"idPlaceholder": "Voer de nieuwe door de gebruiker gedefinieerde functie-id in",
|
||||
"body": "Hoofdtekst van door de gebruiker gedefinieerde functie",
|
||||
"bodyAriaLabel": "Hoofdtekst van door de gebruiker gedefinieerde functie"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Niet-opgeslagen wijzigingen",
|
||||
"changesWillBeLost": "Wijzigingen gaan verloren. Wilt u doorgaan?",
|
||||
"resolveConflictFailed": "Oplossen van conflict is mislukt",
|
||||
"deleteConflictFailed": "Verwijderen van conflict is mislukt",
|
||||
"refreshGridFailed": "Kan het raster met documenten niet vernieuwen"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo-shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Delete {{databaseName}}",
|
||||
"warningMessage": "Warning! The action you are about to take cannot be undone. Continuing will permanently delete this resource and all of its children resources.",
|
||||
"confirmPrompt": "Confirm by typing the {{databaseName}} id (name)",
|
||||
"inputMismatch": "Input {{databaseName}} name \"{{input}}\" does not match the selected {{databaseName}} \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Delete {{collectionName}}",
|
||||
"confirmPrompt": "Confirm by typing the {{collectionName}} id",
|
||||
"inputMismatch": "Input id {{input}} does not match the selected {{selectedId}}",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Database {{suffix}}",
|
||||
"databaseIdLabel": "Database id",
|
||||
"keyspaceIdLabel": "Keyspace id",
|
||||
"databaseIdPlaceholder": "Type a new {{databaseLabel}} id",
|
||||
"databaseTooltip": "A {{databaseLabel}} is a logical container of one or more {{collectionsLabel}}",
|
||||
"shareThroughput": "Share throughput across {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Provisioned throughput at the {{databaseLabel}} level will be shared across all {{collectionsLabel}} within the {{databaseLabel}}.",
|
||||
"greaterThanError": "Please enter a value greater than {{minValue}} for autopilot throughput",
|
||||
"acknowledgeSpendError": "Please acknowledge the estimated {{period}} spend."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Create new",
|
||||
"useExisting": "Use existing",
|
||||
"databaseTooltip": "A database is analogous to a namespace. It is the unit of management for a set of {{collectionName}}.",
|
||||
"shareThroughput": "Share throughput across {{collectionName}}",
|
||||
"shareThroughputTooltip": "Throughput configured at the database level will be shared across all {{collectionName}} within the database.",
|
||||
"collectionIdLabel": "{{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Choose existing {{databaseName}} id",
|
||||
"existingDatabasePlaceholder": "Choose existing {{databaseName}} id",
|
||||
"indexing": "Indexing",
|
||||
"turnOnIndexing": "Turn on indexing",
|
||||
"automatic": "Automatic",
|
||||
"turnOffIndexing": "Turn off indexing",
|
||||
"off": "Off",
|
||||
"sharding": "Sharding",
|
||||
"shardingTooltip": "Sharded collections split your data across many replica sets (shards) to achieve unlimited scalability. Sharded collections require choosing a shard key (field) to evenly distribute your data.",
|
||||
"unsharded": "Unsharded",
|
||||
"unshardedLabel": "Unsharded (20GB limit)",
|
||||
"sharded": "Sharded",
|
||||
"addPartitionKey": "Add hierarchical partition key",
|
||||
"hierarchicalPartitionKeyInfo": "This feature allows you to partition your data with up to three levels of keys for better data distribution. Requires .NET V3, Java V4 SDK, or preview JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a {{collectionName}} within a database that has throughput provisioned. This dedicated throughput amount will not be shared with other {{collectionNamePlural}} in the database and does not count towards the throughput you provisioned for the database. This throughput amount will be billed in addition to the throughput amount you provisioned at the database level.",
|
||||
"uniqueKeysPlaceholderMongo": "Comma separated paths e.g. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Comma separated paths e.g. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Add unique key",
|
||||
"enableAnalyticalStore": "Enable analytical store",
|
||||
"disableAnalyticalStore": "Disable analytical store",
|
||||
"on": "On",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link is required for creating an analytical store {{collectionName}}. Enable Synapse Link for this Cosmos DB account.",
|
||||
"enable": "Enable",
|
||||
"containerVectorPolicy": "Container Vector Policy",
|
||||
"containerFullTextSearchPolicy": "Container Full Text Search Policy",
|
||||
"advanced": "Advanced",
|
||||
"mongoIndexingTooltip": "The _id field is indexed by default. Creating a wildcard index for all fields will optimize queries and is recommended for development.",
|
||||
"createWildcardIndex": "Create a Wildcard Index on all fields",
|
||||
"legacySdkCheckbox": "My application uses an older Cosmos .NET or Java SDK version (.NET V1 or Java V2)",
|
||||
"legacySdkInfo": "To ensure compatibility with older SDKs, the created container will use a legacy partitioning scheme that supports partition key values of size only up to 101 bytes. If this is enabled, you will not be able to use hierarchical partition keys.",
|
||||
"indexingOnInfo": "All properties in your documents will be indexed by default for flexible and efficient queries.",
|
||||
"indexingOffInfo": "Indexing will be turned off. Recommended if you don't need to run queries or only have key value operations.",
|
||||
"indexingOffWarning": "By creating this container with indexing turned off, you will not be able to make any indexing policy changes. Indexing changes are only allowed on a container with a indexing policy.",
|
||||
"acknowledgeSpendErrorMonthly": "Please acknowledge the estimated monthly spend.",
|
||||
"acknowledgeSpendErrorDaily": "Please acknowledge the estimated daily spend.",
|
||||
"unshardedMaxRuError": "Unsharded collections support up to 10,000 RUs",
|
||||
"acknowledgeShareThroughputError": "Please acknowledge the estimated cost of this dedicated throughput.",
|
||||
"vectorPolicyError": "Please fix errors in container vector policy",
|
||||
"fullTextSearchPolicyError": "Please fix errors in container full text search policy",
|
||||
"addingSampleDataSet": "Adding sample data set"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "The shard key (field) is used to split your data across many replica sets (shards) to achieve unlimited scalability. It's critical to choose a field that will evenly distribute your data.",
|
||||
"partitionKeyTooltip": "The {{partitionKeyName}} is used to automatically distribute data across partitions for scalability. Choose a property in your JSON document that has a wide range of values and evenly distributes request volume.",
|
||||
"partitionKeyTooltipSqlSuffix": " For small read-heavy workloads or write-heavy workloads of any size, id is often a good choice.",
|
||||
"shardKeyLabel": "Shard key",
|
||||
"partitionKeyLabel": "Partition key",
|
||||
"shardKeyPlaceholder": "e.g., categoryId",
|
||||
"partitionKeyPlaceholderDefault": "e.g., /address",
|
||||
"partitionKeyPlaceholderFirst": "Required - first partition key e.g., /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "second partition key e.g., /UserId",
|
||||
"partitionKeyPlaceholderThird": "third partition key e.g., /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "e.g., /address/zipCode",
|
||||
"uniqueKeysTooltip": "Unique keys provide developers with the ability to add a layer of data integrity to their database. By creating a unique key policy when a container is created, you ensure the uniqueness of one or more values per partition key.",
|
||||
"uniqueKeysLabel": "Unique keys",
|
||||
"analyticalStoreLabel": "Analytical Store",
|
||||
"analyticalStoreTooltip": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"analyticalStoreDescription": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"vectorPolicyTooltip": "Describe any properties in your data that contain vectors, so that they can be made available for similarity queries."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Page Options",
|
||||
"pageOptionsDescription": "Choose Custom to specify a fixed amount of query results to show, or choose Unlimited to show as many query results per page.",
|
||||
"queryResultsPerPage": "Query results per page",
|
||||
"queryResultsPerPageTooltip": "Enter the number of query results that should be shown per page.",
|
||||
"customQueryItemsPerPage": "Custom query items per page",
|
||||
"custom": "Custom",
|
||||
"unlimited": "Unlimited",
|
||||
"entraIdRbac": "Enable Entra ID RBAC",
|
||||
"entraIdRbacDescription": "Choose Automatic to enable Entra ID RBAC automatically. True/False to force enable/disable Entra ID RBAC.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "Region Selection",
|
||||
"regionSelectionDescription": "Changes region the Cosmos Client uses to access account.",
|
||||
"selectRegion": "Select Region",
|
||||
"selectRegionTooltip": "Changes the account endpoint used to perform client operations.",
|
||||
"globalDefault": "Global (Default)",
|
||||
"readWrite": "(Read/Write)",
|
||||
"read": "(Read)",
|
||||
"queryTimeout": "Query Timeout",
|
||||
"queryTimeoutDescription": "When a query reaches a specified time limit, a popup with an option to cancel the query will show unless automatic cancellation has been enabled.",
|
||||
"enableQueryTimeout": "Enable query timeout",
|
||||
"queryTimeoutMs": "Query timeout (ms)",
|
||||
"automaticallyCancelQuery": "Automatically cancel query after timeout",
|
||||
"ruLimit": "RU Limit",
|
||||
"ruLimitDescription": "If a query exceeds a configured RU limit, the query will be aborted.",
|
||||
"enableRuLimit": "Enable RU limit",
|
||||
"ruLimitLabel": "RU Limit (RU)",
|
||||
"defaultQueryResults": "Default Query Results View",
|
||||
"defaultQueryResultsDescription": "Select the default view to use when displaying query results.",
|
||||
"retrySettings": "Retry Settings",
|
||||
"retrySettingsDescription": "Retry policy associated with throttled requests during CosmosDB queries.",
|
||||
"maxRetryAttempts": "Max retry attempts",
|
||||
"maxRetryAttemptsTooltip": "Max number of retries to be performed for a request. Default value 9.",
|
||||
"fixedRetryInterval": "Fixed retry interval (ms)",
|
||||
"fixedRetryIntervalTooltip": "Fixed retry interval in milliseconds to wait between each retry ignoring the retryAfter returned as part of the response. Default value is 0 milliseconds.",
|
||||
"maxWaitTime": "Max wait time (s)",
|
||||
"maxWaitTimeTooltip": "Max wait time in seconds to wait for a request while the retries are happening. Default value 30 seconds.",
|
||||
"enableContainerPagination": "Enable container pagination",
|
||||
"enableContainerPaginationDescription": "Load 50 containers at a time. Currently, containers are not pulled in alphanumeric order.",
|
||||
"enableCrossPartitionQuery": "Enable cross-partition query",
|
||||
"enableCrossPartitionQueryDescription": "Send more than one request while executing a query. More than one request is necessary if the query is not scoped to single partition key value.",
|
||||
"maxDegreeOfParallelism": "Maximale mate van parallelle uitvoering",
|
||||
"maxDegreeOfParallelismDescription": "Gets or sets the number of concurrent operations run client side during parallel query execution. A positive property value limits the number of concurrent operations to the set value. If it is set to less than 0, the system automatically decides the number of concurrent operations to run.",
|
||||
"maxDegreeOfParallelismQuery": "Query up to the max degree of parallelism.",
|
||||
"priorityLevel": "Priority Level",
|
||||
"priorityLevelDescription": "Sets the priority level for data-plane requests from Data Explorer when using Priority-Based Execution. If \"None\" is selected, Data Explorer will not specify priority level, and the server-side default priority level will be used.",
|
||||
"displayGremlinQueryResults": "Display Gremlin query results as:",
|
||||
"displayGremlinQueryResultsDescription": "Select Graph to automatically visualize the query results as a Graph or JSON to display the results as JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Graph Auto-visualization",
|
||||
"enableSampleDatabase": "Enable sample database",
|
||||
"enableSampleDatabaseDescription": "This is a sample database and collection with synthetic product data you can use to explore using NoSQL queries. This will appear as another database in the Data Explorer UI, and is created by, and maintained by Microsoft at no cost to you.",
|
||||
"enableSampleDbAriaLabel": "Enable sample db for query exploration",
|
||||
"guidRepresentation": "Guid Representation",
|
||||
"guidRepresentationDescription": "GuidRepresentation in MongoDB refers to how Globally Unique Identifiers (GUIDs) are serialized and deserialized when stored in BSON documents. This will apply to all document operations.",
|
||||
"advancedSettings": "Advanced Settings",
|
||||
"ignorePartitionKey": "Ignore partition key on document update",
|
||||
"ignorePartitionKeyTooltip": "If checked, the partition key value will not be used to locate the document during update operations. Only use this if document updates are failing due to an abnormal partition key.",
|
||||
"clearHistory": "Clear History",
|
||||
"clearHistoryConfirm": "Weet u zeker dat u wilt verdergaan?",
|
||||
"clearHistoryDescription": "This action will clear the all customizations for this account in this browser, including:",
|
||||
"clearHistoryTabLayout": "Reset your customized tab layout, including the splitter positions",
|
||||
"clearHistoryTableColumns": "Erase your table column preferences, including any custom columns",
|
||||
"clearHistoryFilters": "Clear your filter history",
|
||||
"clearHistoryRegion": "Reset region selection to global",
|
||||
"increaseValueBy1000": "Increase value by 1000",
|
||||
"decreaseValueBy1000": "Decrease value by 1000",
|
||||
"none": "None",
|
||||
"low": "Low",
|
||||
"high": "High",
|
||||
"automatic": "Automatic",
|
||||
"enhancedQueryControl": "Enhanced query control",
|
||||
"enableQueryControl": "Enable query control",
|
||||
"explorerVersion": "Explorer Version",
|
||||
"accountId": "Account ID",
|
||||
"sessionId": "Session ID",
|
||||
"popupsDisabledError": "We were unable to establish authorization for this account, due to pop-ups being disabled in the browser.\nPlease enable pop-ups for this site and click on \"Login for Entra ID\" button",
|
||||
"failedToAcquireTokenError": "Failed to acquire authorization token automatically. Please click on \"Login for Entra ID\" button to enable Entra ID RBAC operations"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Save Query",
|
||||
"setupCostMessage": "For compliance reasons, we save queries in a container in your Azure Cosmos account, in a separate database called “{{databaseName}}”. To proceed, we need to create a container in your account, estimated additional cost is $0.77 daily.",
|
||||
"completeSetup": "Complete setup",
|
||||
"noQueryNameError": "No query name specified",
|
||||
"invalidQueryContentError": "Invalid query content specified",
|
||||
"failedToSaveQueryError": "Failed to save query {{queryName}}",
|
||||
"failedToSetupContainerError": "Failed to setup a container for saved queries",
|
||||
"accountNotSetupError": "Failed to save query: account not setup to save queries",
|
||||
"name": "Name"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "No file specified",
|
||||
"failedToLoadQueryError": "Kan de query niet laden",
|
||||
"failedToLoadQueryFromFileError": "Failed to load query from file {{fileName}}",
|
||||
"selectFilesToOpen": "Select a query document",
|
||||
"browseFiles": "Browse"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Enter input parameters (if any)",
|
||||
"key": "Key",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Partition key value",
|
||||
"value": "Value",
|
||||
"addNewParam": "Add New Param",
|
||||
"addParam": "Add param",
|
||||
"deleteParam": "Delete param",
|
||||
"invalidParamError": "Invalid param specified: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Invalid param specified: {{invalidParam}} is not a valid literal value",
|
||||
"stringType": "String",
|
||||
"customType": "Custom"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "No files were specified. Please input at least one file.",
|
||||
"selectJsonFiles": "Select JSON Files",
|
||||
"selectJsonFilesTooltip": "Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON documents. The combined size of all files in an individual upload operation must be less than 2 MB. You can perform multiple upload operations for larger data sets.",
|
||||
"fileNameColumn": "FILE NAME",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} created, {{numThrottled}} throttled, {{numFailed}} errors",
|
||||
"uploadedFiles": "Uploaded files"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Failed to copy {{name}} to {{destination}}",
|
||||
"uploadFailedError": "Failed to upload {{name}}",
|
||||
"location": "Location",
|
||||
"locationAriaLabel": "Location",
|
||||
"selectLocation": "Select a notebook location to copy",
|
||||
"name": "Name"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Failed to publish {{notebookName}} to gallery",
|
||||
"publishDescription": "When published, this notebook will appear in the Azure Cosmos DB notebooks public gallery. Make sure you have removed any sensitive data or output before publishing.",
|
||||
"publishPrompt": "Would you like to publish and share \"{{name}}\" to the gallery?",
|
||||
"coverImage": "Cover image",
|
||||
"coverImageUrl": "Cover image url",
|
||||
"name": "Name",
|
||||
"description": "Description",
|
||||
"tags": "Tags",
|
||||
"tagsPlaceholder": "Optional tag 1, Optional tag 2",
|
||||
"preview": "Preview",
|
||||
"urlType": "URL",
|
||||
"customImage": "Custom Image",
|
||||
"takeScreenshot": "Take Screenshot",
|
||||
"useFirstDisplayOutput": "Use First Display Output",
|
||||
"failedToCaptureOutput": "Failed to capture first output",
|
||||
"outputDoesNotExist": "Output does not exist for any of the cells.",
|
||||
"failedToConvertError": "Failed to convert {{fileName}} to base64 format",
|
||||
"failedToUploadError": "Failed to upload {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Failed to start data transfer job",
|
||||
"suboptimalPartitionKeyError": "Warning: The system has detected that your collection may be using a suboptimal partition key",
|
||||
"description": "When changing a container’s partition key, you will need to create a destination container with the correct partition key. You may also select an existing destination container.",
|
||||
"sourceContainerId": "Source {{collectionName}} id",
|
||||
"destinationContainerId": "Destination {{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingContainers": "Existing Containers",
|
||||
"partitionKeyWarning": "The destination container must not already exist. Data Explorer will create a new destination container for you."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Keyspace name",
|
||||
"keyspaceTooltip": "Select an existing keyspace or enter a new keyspace id.",
|
||||
"tableIdLabel": "Enter CQL command to create the table.",
|
||||
"enterTableId": "Enter table Id",
|
||||
"tableSchemaAriaLabel": "Table schema",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this table",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a table within a keyspace that has throughput provisioned. This dedicated throughput amount will not be shared with other tables in the keyspace and does not count towards the throughput you provisioned for the keyspace. This throughput amount will be billed in addition to the throughput amount you provisioned at the keyspace level."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Add Property",
|
||||
"addRow": "Add Row",
|
||||
"addEntity": "Add Entity",
|
||||
"back": "back",
|
||||
"nullFieldsWarning": "Warning: Null fields will not be displayed for editing.",
|
||||
"propertyEmptyError": "{{property}} cannot be empty. Please input a value for {{property}}",
|
||||
"whitespaceError": "{{property}} cannot have whitespace. Please input a value for {{property}} without whitespace",
|
||||
"propertyTypeEmptyError": "Property type cannot be empty. Please select a type from the dropdown for property {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Selecteer de kolommen waarop u een query wilt uitvoeren.",
|
||||
"availableColumns": "Available Columns"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Select which columns to display in your view of items in your container.",
|
||||
"searchFields": "Search fields",
|
||||
"reset": "Reset",
|
||||
"partitionKeySuffix": " (partition key)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Add Property"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Global secondary index container id",
|
||||
"globalSecondaryIndexIdPlaceholder": "e.g., indexbyEmailId",
|
||||
"projectionQuery": "Projection query",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Learn more about defining global secondary indexes.",
|
||||
"disabledTitle": "A global secondary index is already being created. Please wait for it to complete before creating another one."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Input {{input}} does not match the selected {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Information",
|
||||
"moreDetails": "More details"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Przekaż",
|
||||
"connect": "Połącz",
|
||||
"remove": "Usuń",
|
||||
"load": "Załaduj",
|
||||
"publish": "Publikuj",
|
||||
"browse": "Przeglądaj",
|
||||
"increaseValueBy1": "Zwiększ wartość o 1",
|
||||
"decreaseValueBy1": "Zmniejsz wartość o 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Nie można utworzyć kontenera: {{error}}",
|
||||
"errorImportData": "Nie można zaimportować danych: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Nowy element {{containerName}}",
|
||||
"restoreContainer": "Przywróć {{containerName}}",
|
||||
"deleteDatabase": "Usuń {{databaseName}}",
|
||||
"deleteContainer": "Usuń {{containerName}}",
|
||||
"newSqlQuery": "Nowe zapytanie SQL",
|
||||
"newQuery": "Nowe zapytanie",
|
||||
"openMongoShell": "Otwórz powłokę Mongo",
|
||||
"newShell": "Nowa powłoka",
|
||||
"openCassandraShell": "Otwórz powłokę Cassandra",
|
||||
"newStoredProcedure": "Nowa procedura składowana",
|
||||
"newUdf": "Nowa funkcja UDF",
|
||||
"newTrigger": "Nowy wyzwalacz",
|
||||
"deleteStoredProcedure": "Usuń procedurę składowaną",
|
||||
"deleteTrigger": "Usuń wyzwalacz",
|
||||
"deleteUdf": "Usuń funkcję zdefiniowaną przez użytkownika"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nowy element",
|
||||
"newDocument": "Nowy dokument",
|
||||
"uploadItem": "Przekaż element",
|
||||
"applyFilter": "Zastosuj filtr",
|
||||
"unsavedChanges": "Niezapisane zmiany",
|
||||
"unsavedChangesMessage": "Wszystkie niezapisane zmiany zostaną utracone. Czy chcesz kontynuować?",
|
||||
"createDocumentFailed": "Tworzenie dokumentu nie powiodło się",
|
||||
"updateDocumentFailed": "Aktualizacja dokumentu nie powiodła się",
|
||||
"documentDeleted": "Dokument został pomyślnie usunięty.",
|
||||
"deleteDocumentDialogTitle": "Usuń dokument",
|
||||
"deleteDocumentsDialogTitle": "Usuń dokumenty",
|
||||
"throttlingError": "Nie można usunąć niektórych dokumentów z powodu błędu ograniczenia szybkości. Spróbuj ponownie później. Aby temu zapobiec w przyszłości, rozważ zwiększenie przepustowości kontenera lub bazy danych.",
|
||||
"deleteFailed": "Usuwanie dokumentów nie powiodło się ({{error}})",
|
||||
"missingShardProperty": "W dokumencie brakuje właściwości fragmentu: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Nie udało się odświeżyć siatki dokumentów",
|
||||
"confirmDelete": "Czy na pewno chcesz usunąć {{documentName}}?",
|
||||
"confirmDeleteTitle": "Potwierdź usunięcie",
|
||||
"selectedItems": "zaznaczone elementy ({{count}})",
|
||||
"selectedItem": "wybrany element",
|
||||
"selectedDocuments": "wybrane dokumenty ({{count}})",
|
||||
"selectedDocument": "wybrany dokument",
|
||||
"deleteDocumentFailedLog": "Nie można usunąć dokumentu {{documentId}} z kodem stanu {{statusCode}}",
|
||||
"deleteSuccessLog": "Pomyślnie usunięto dokumenty ({{count}})",
|
||||
"deleteThrottledLog": "Nie można usunąć dokumentów ({{count}}) z powodu błędu „Żądanie zbyt duże” (429). Trwa ponawianie próby...",
|
||||
"missingShardKeyLog": "Nie udało się zapisać nowego dokumentu: nie zdefiniowano klucza fragmentu dokumentu",
|
||||
"filterTooltip": "Wpisz predykat zapytania lub wybierz go z listy.",
|
||||
"loadMore": "Załaduj więcej",
|
||||
"documentEditor": "Edytor dokumentów",
|
||||
"savedFilters": "Zapisane filtry",
|
||||
"defaultFilters": "Domyślne filtry",
|
||||
"abort": "Przerwij",
|
||||
"deletingDocuments": "Usuwanie dokumentów ({{count}})",
|
||||
"deletedDocumentsSuccess": "Pomyślnie usunięto dokumenty ({{count}}).",
|
||||
"deleteAborted": "Usuwanie dokumentów zostało przerwane.",
|
||||
"failedToDeleteDocuments": "Nie można usunąć dokumentów ({{count}}).",
|
||||
"requestTooLargeBase": "Niektóre żądania usunięcia nie powiodły się z powodu wyjątku „Żądanie za duże” (429)",
|
||||
"retriedSuccessfully": "ale pomyślnie ponowiono próbę.",
|
||||
"retryingNow": "Ponawianie próby teraz.",
|
||||
"increaseThroughputTip": "Aby temu zapobiec w przyszłości, rozważ zwiększenie przepustowości kontenera lub bazy danych.",
|
||||
"numberOfSelectedDocuments": "Liczba wybranych dokumentów: {{count}}",
|
||||
"mongoFilterPlaceholder": "Wpisz predykat zapytania (np. {\"id\":\"foo\"}), wybierz go z listy rozwijanej lub pozostaw pusty, aby zapytać o wszystkie dokumenty.",
|
||||
"sqlFilterPlaceholder": "Wpisz predykat zapytania (np. WHERE c.id=\"1\"), wybierz go z listy rozwijanej lub pozostaw pusty, aby zapytać o wszystkie dokumenty.",
|
||||
"error": "Błąd",
|
||||
"warning": "Ostrzeżenie"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Wykonaj zapytanie",
|
||||
"executeSelection": "Wykonaj zaznaczenie",
|
||||
"saveQuery": "Zapisz zapytanie",
|
||||
"downloadQuery": "Pobierz zapytanie",
|
||||
"cancelQuery": "Anuluj zapytanie",
|
||||
"openSavedQueries": "Otwórz zapisane zapytania",
|
||||
"vertical": "W pionie",
|
||||
"horizontal": "W poziomie",
|
||||
"view": "Wyświetl",
|
||||
"editingQuery": "Edytowanie zapytania"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Identyfikator procedury składowanej",
|
||||
"idPlaceholder": "Wprowadź nowy identyfikator procedury składowanej",
|
||||
"idAriaLabel": "Identyfikator procedury składowanej",
|
||||
"body": "Treść procedury składowanej",
|
||||
"bodyAriaLabel": "Treść procedury składowanej",
|
||||
"successfulExecution": "Pomyślne wykonanie procedury składowanej",
|
||||
"resultAriaLabel": "Wykonaj wynik procedury składowanej",
|
||||
"logsAriaLabel": "Wykonywanie dzienników procedur składowanej",
|
||||
"errors": "Błędy:",
|
||||
"errorDetailsAriaLabel": "Link szczegółów błędu",
|
||||
"moreDetails": "Więcej szczegółów",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Identyfikator wyzwalacza",
|
||||
"idPlaceholder": "Wprowadź nowy identyfikator wyzwalacza",
|
||||
"type": "Typ wyzwalacza",
|
||||
"operation": "Operacja wyzwalacza",
|
||||
"body": "Treść wyzwalacza",
|
||||
"bodyAriaLabel": "Treść wyzwalacza",
|
||||
"pre": "Przed operacją",
|
||||
"post": "Opublikuj",
|
||||
"all": "Wszystkie",
|
||||
"operationCreate": "Utwórz",
|
||||
"operationDelete": "Usuń",
|
||||
"operationReplace": "Zamień"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Identyfikator funkcji zdefiniowanej przez użytkownika",
|
||||
"idPlaceholder": "Wprowadź nowy identyfikator funkcji zdefiniowanej przez użytkownika",
|
||||
"body": "Treść funkcji zdefiniowanej przez użytkownika",
|
||||
"bodyAriaLabel": "Treść funkcji zdefiniowanej przez użytkownika"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Niezapisane zmiany",
|
||||
"changesWillBeLost": "Zmiany zostaną utracone. Czy chcesz kontynuować?",
|
||||
"resolveConflictFailed": "Rozwiązywanie konfliktu nie powiodło się",
|
||||
"deleteConflictFailed": "Usuwanie konfliktu nie powiodło się",
|
||||
"refreshGridFailed": "Nie udało się odświeżyć siatki dokumentów"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Powłoka Mongo"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Usuń {{databaseName}}",
|
||||
"warningMessage": "Ostrzeżenie! Akcji, którą zamierzasz wykonać, nie można cofnąć. Kontynuowanie spowoduje trwałe usunięcie tego zasobu i wszystkich jego zasobów podrzędnych.",
|
||||
"confirmPrompt": "Potwierdź, wpisując identyfikator {{databaseName}} (nazwa)",
|
||||
"inputMismatch": "Nazwa wejściowa {{databaseName}} „{{input}}” nie pasuje do wybranej nazwy {{databaseName}} „{{selectedId}}”",
|
||||
"feedbackTitle": "Pomóż nam ulepszać usługę Azure Cosmos DB!",
|
||||
"feedbackReason": "Jaki jest powód usunięcia tego {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Usuń {{collectionName}}",
|
||||
"confirmPrompt": "Potwierdź, wpisując identyfikator {{collectionName}}",
|
||||
"inputMismatch": "Identyfikator wejściowy {{input}} jest niezgodny z wybranym {{selectedId}}",
|
||||
"feedbackTitle": "Pomóż nam ulepszać usługę Azure Cosmos DB!",
|
||||
"feedbackReason": "Jaki jest powód usunięcia tego {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Baza danych {{suffix}}",
|
||||
"databaseIdLabel": "Identyfikator bazy danych",
|
||||
"keyspaceIdLabel": "Identyfikator przestrzeni kluczy",
|
||||
"databaseIdPlaceholder": "Wpisz nowy identyfikator {{databaseLabel}}",
|
||||
"databaseTooltip": "{{databaseLabel}} to logiczny kontener co najmniej jednego {{collectionsLabel}}",
|
||||
"shareThroughput": "Udostępnij przepływność w usłudze {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Aprowizowana przepływność na poziomie {{databaseLabel}} będzie współdzielona przez wszystkie {{collectionsLabel}} w {{databaseLabel}}.",
|
||||
"greaterThanError": "Wprowadź wartość większą niż {{minValue}} dla przepływności rozwiązania Autopilot",
|
||||
"acknowledgeSpendError": "Potwierdź szacowane wydatki {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Utwórz nowy",
|
||||
"useExisting": "Użyj istniejących",
|
||||
"databaseTooltip": "Baza danych jest odpowiednikiem przestrzeni nazw. To jednostka zarządzania zestawem {{collectionName}}.",
|
||||
"shareThroughput": "Udostępnij przepływność w usłudze {{collectionName}}",
|
||||
"shareThroughputTooltip": "Przepływność skonfigurowana na poziomie bazy danych będzie współdzielona przez wszystkie {{collectionName}} w bazie danych.",
|
||||
"collectionIdLabel": "identyfikator {{collectionName}}",
|
||||
"collectionIdTooltip": "Identyfikator unikatowy {{collectionName}} używany do routingu opartego na identyfikatorach prowadzącego przez interfejs REST i wszystkie zestawy SDK.",
|
||||
"collectionIdPlaceholder": "np. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "Identyfikator {{collectionName}}, przykład {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Wybierz istniejący identyfikator {{databaseName}}",
|
||||
"existingDatabasePlaceholder": "Wybierz istniejący identyfikator {{databaseName}}",
|
||||
"indexing": "Indeksowanie",
|
||||
"turnOnIndexing": "Włącz indeksowanie",
|
||||
"automatic": "Automatyczne",
|
||||
"turnOffIndexing": "Wyłącz indeksowanie",
|
||||
"off": "Wyłączone",
|
||||
"sharding": "Fragmentacja",
|
||||
"shardingTooltip": "Kolekcje podzielone na fragmenty rozdzielają dane na wiele zestawów replik (fragmentów), aby osiągnąć nieograniczoną skalowalność. Kolekcje fragmentowane wymagają wybrania klucza fragmentu (pola), który równomiernie rozłoży dane.",
|
||||
"unsharded": "Bez fragmentów",
|
||||
"unshardedLabel": "Bez fragmentów (limit 20 GB)",
|
||||
"sharded": "Podzielony na fragmenty",
|
||||
"addPartitionKey": "Dodaj hierarchiczny klucz partycji",
|
||||
"hierarchicalPartitionKeyInfo": "Ta funkcja pozwala na partycjonowanie danych z użyciem do trzech poziomów kluczy, co poprawia dystrybucję danych. Wymaga zestawu .NET V3, Java V4 SDK lub wersji zapoznawczej JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Przydziel dedykowaną przepływność dla tego elementu {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Opcjonalnie można aprowizować dedykowaną przepływność dla {{collectionName}} w bazie danych z aprowizowaną przepływnością. Ta dedykowana przepływność nie zostanie udostępniona innym {{collectionNamePlural}} w bazie danych i nie będzie wliczona do przepływności aprowizowanej dla bazy danych. Ta kwota przepływności będzie rozliczana oprócz aprowizowanej przepływności na poziomie bazy danych.",
|
||||
"uniqueKeysPlaceholderMongo": "Ścieżki rozdzielone przecinkami, np. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Ścieżki rozdzielone przecinkami, np. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Dodaj unikatowy klucz",
|
||||
"enableAnalyticalStore": "Włącz magazyn analityczny",
|
||||
"disableAnalyticalStore": "Wyłącz magazyn analityczny",
|
||||
"on": "Włączone",
|
||||
"analyticalStoreSynapseLinkRequired": "Usługa Azure Synapse Link jest wymagana do utworzenia magazynu analitycznego {{collectionName}}. Włącz usługę Synapse Link dla tego konta usługi Cosmos DB.",
|
||||
"enable": "Włącz",
|
||||
"containerVectorPolicy": "Zasady wektorów kontenera",
|
||||
"containerFullTextSearchPolicy": "Zasady pełnotekstowego wyszukiwania kontenera",
|
||||
"advanced": "Zaawansowane",
|
||||
"mongoIndexingTooltip": "Pole _id jest domyślnie indeksowane. Utworzenie indeksu wieloznacznego dla wszystkich pól zoptymalizuje zapytania i jest zalecane podczas programowania.",
|
||||
"createWildcardIndex": "Utwórz indeks symbolu wieloznacznego dla wszystkich pól",
|
||||
"legacySdkCheckbox": "Moja aplikacja korzysta ze starszej wersji zestawu Cosmos .NET lub Java SDK (.NET V1 lub Java V2)",
|
||||
"legacySdkInfo": "Aby zapewnić zgodność ze starszymi zestawami SDK, utworzony kontener będzie korzystał ze starszego schematu partycjonowania, który obsługuje wartości klucza partycji o rozmiarze do 101 bajtów. Jeśli ta opcja jest włączona, nie będzie można używać hierarchicznych kluczy partycji.",
|
||||
"indexingOnInfo": "Wszystkie właściwości w dokumentach będą domyślnie indeksowane, co umożliwia elastyczne i wydajne zapytania.",
|
||||
"indexingOffInfo": "Indeksowanie zostanie wyłączone. Zalecane, jeśli nie musisz uruchamiać zapytań lub wykonujesz tylko operacje na wartościach klucza.",
|
||||
"indexingOffWarning": "Tworząc ten kontener z wyłączonym indeksowaniem, nie będziesz mógł wprowadzać zmian w polityce indeksowania. Zmiany indeksowania są dozwolone tylko w kontenerze z zasadami indeksowania.",
|
||||
"acknowledgeSpendErrorMonthly": "Potwierdź szacowane miesięczne wydatki.",
|
||||
"acknowledgeSpendErrorDaily": "Potwierdź szacowane dzienne wydatki.",
|
||||
"unshardedMaxRuError": "Kolekcje bez fragmentów obsługują do 10 000 jednostek żądań",
|
||||
"acknowledgeShareThroughputError": "Potwierdź szacowany koszt tej dedykowanej przepływności.",
|
||||
"vectorPolicyError": "Napraw błędy w zasadach wektora kontenera",
|
||||
"fullTextSearchPolicyError": "Napraw błędy w zasadach wyszukiwania pełnotekstowych kontenerów",
|
||||
"addingSampleDataSet": "Dodawanie przykładowego zestawu danych"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Klucz fragmentu (pole) służy do dzielenia danych na wiele zestawów replik (fragmentów) w celu osiągnięcia nieograniczonej skalowalności. Ważne jest, aby wybrać pole, które równomiernie rozłoży dane.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} służy do automatycznego dystrybuowania danych między partycjami na potrzeby skalowalności. Wybierz właściwość w dokumencie JSON, która ma szeroki zakres wartości i równomiernie dystrybuuje wolumin żądania.",
|
||||
"partitionKeyTooltipSqlSuffix": " W przypadku małych obciążeń z dużą ilością odczytu lub obciążeń z dużą ilością zapisu o dowolnym rozmiarze identyfikator jest często dobrym wyborem.",
|
||||
"shardKeyLabel": "Klucz partycjonujący",
|
||||
"partitionKeyLabel": "Klucz partycji",
|
||||
"shardKeyPlaceholder": "np. identyfikator kategorii",
|
||||
"partitionKeyPlaceholderDefault": "np. /address",
|
||||
"partitionKeyPlaceholderFirst": "Wymagane — pierwszy klucz partycji, np. /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "drugi klucz partycji, np. /UserId",
|
||||
"partitionKeyPlaceholderThird": "trzeci klucz partycji, np., /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "np. /address/zipCode",
|
||||
"uniqueKeysTooltip": "Unikatowe klucze zapewniają deweloperom możliwość dodania warstwy integralności danych do bazy danych. Tworząc unikatową politykę kluczy podczas tworzenia kontenera, zapewniasz unikatowość jednej lub więcej wartości na klucz partycji.",
|
||||
"uniqueKeysLabel": "Unikatowe klucze",
|
||||
"analyticalStoreLabel": "Magazyn analityczny",
|
||||
"analyticalStoreTooltip": "Włącz funkcję magazynu analitycznego, aby wykonywać analizy danych operacyjnych niemal w czasie rzeczywistym, bez wpływu na wydajność obciążeń transakcyjnych.",
|
||||
"analyticalStoreDescription": "Włącz funkcję magazynu analitycznego, aby wykonywać analizy danych operacyjnych niemal w czasie rzeczywistym, bez wpływu na wydajność obciążeń transakcyjnych.",
|
||||
"vectorPolicyTooltip": "Opisz właściwości w swoich danych, które zawierają wektory, aby można było je wykorzystać w zapytaniach podobieństwa."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opcje strony",
|
||||
"pageOptionsDescription": "Wybierz Niestandardowe, aby określić stałą liczbę wyników zapytania do wyświetlenia, lub Bez ograniczeń, aby pokazać dowolną liczbę wyników na stronie.",
|
||||
"queryResultsPerPage": "Wyniki zapytania na stronę",
|
||||
"queryResultsPerPageTooltip": "Wprowadź liczbę wyników zapytania, które powinny być wyświetlane na stronie.",
|
||||
"customQueryItemsPerPage": "Niestandardowe elementy zapytania na stronę",
|
||||
"custom": "Niestandardowe",
|
||||
"unlimited": "Bez ograniczeń",
|
||||
"entraIdRbac": "Włącz RBAC w Entra ID",
|
||||
"entraIdRbacDescription": "Wybierz pozycję Automatycznie, aby automatycznie włączyć funkcję RBAC identyfikatora wpisu. Wartość true/false wymusza włączenie/wyłączenie RBAC usługi Entra ID.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "Wybór regionu",
|
||||
"regionSelectionDescription": "Zmienia region, którego klient Cosmos używa do dostępu do konta.",
|
||||
"selectRegion": "Wybierz region",
|
||||
"selectRegionTooltip": "Zmienia punkt końcowy konta używany do wykonywania operacji klienta.",
|
||||
"globalDefault": "Globalne (domyślne)",
|
||||
"readWrite": "(Odczyt/zapis)",
|
||||
"read": "(Odczyt)",
|
||||
"queryTimeout": "Limit czasu zapytania",
|
||||
"queryTimeoutDescription": "Gdy zapytanie osiągnie określony limit czasu, pojawi się okienko z opcją anulowania zapytania, chyba że włączono automatyczne anulowanie.",
|
||||
"enableQueryTimeout": "Włącz limit czasu zapytania",
|
||||
"queryTimeoutMs": "Limit czasu zapytania (ms)",
|
||||
"automaticallyCancelQuery": "Automatycznie anuluj zapytanie po upływie limitu czasu",
|
||||
"ruLimit": "Limit RU",
|
||||
"ruLimitDescription": "Jeśli zapytanie przekroczy skonfigurowany limit jednostek RU, zapytanie zostanie przerwane.",
|
||||
"enableRuLimit": "Włącz limit jednostek RU",
|
||||
"ruLimitLabel": "Limit jednostek RU (RU)",
|
||||
"defaultQueryResults": "Domyślny widok wyników zapytania",
|
||||
"defaultQueryResultsDescription": "Wybierz widok domyślny, który ma być używany podczas wyświetlania wyników zapytania.",
|
||||
"retrySettings": "Ustawienia ponawiania",
|
||||
"retrySettingsDescription": "Zasady ponawiania związane z ograniczonymi żądaniami podczas zapytań w usłudze CosmosDB.",
|
||||
"maxRetryAttempts": "Maksymalna liczba ponownych prób",
|
||||
"maxRetryAttemptsTooltip": "Maksymalna liczba ponownych prób dla żądania. Wartość domyślna 9.",
|
||||
"fixedRetryInterval": "Stały interwał ponawiania prób (ms)",
|
||||
"fixedRetryIntervalTooltip": "Stały interwał ponawiania prób w milisekundach, który określa czas oczekiwania między kolejnymi próbami, ignorując wartość retryAfter zwróconą w odpowiedzi. Wartość domyślna to 0 milisekund.",
|
||||
"maxWaitTime": "Maksymalny czas oczekiwania (s)",
|
||||
"maxWaitTimeTooltip": "Maksymalny czas oczekiwania na żądanie podczas ponownych prób, podany w sekundach. Wartość domyślna to 30 sekund.",
|
||||
"enableContainerPagination": "Włącz paginację kontenera",
|
||||
"enableContainerPaginationDescription": "Załaduj 50 kontenerów jednocześnie. Obecnie kontenery nie są ściągane w kolejności alfanumerycznej.",
|
||||
"enableCrossPartitionQuery": "Włącz zapytanie między partycjami",
|
||||
"enableCrossPartitionQueryDescription": "Wyślij więcej niż jedno żądanie podczas wykonywania zapytania. Jeśli zapytanie nie ma zakresu wartości klucza pojedynczej partycji, konieczne jest więcej niż jedno żądanie.",
|
||||
"maxDegreeOfParallelism": "Maksymalny stopień równoległości",
|
||||
"maxDegreeOfParallelismDescription": "Pobiera lub ustawia liczbę równoczesnych operacji uruchamianych po stronie klienta podczas równoległego wykonywania zapytań. Dodatnia wartość właściwości ogranicza liczbę równoczesnych operacji do ustawionej wartości. Jeśli wartość jest mniejsza niż 0, system automatycznie decyduje, ile operacji równoczesnych uruchomić.",
|
||||
"maxDegreeOfParallelismQuery": "Wykonaj zapytanie o maksymalny stopień równoległości.",
|
||||
"priorityLevel": "Poziom priorytetu",
|
||||
"priorityLevelDescription": "Ustawia poziom priorytetu dla żądań płaszczyzny danych z usługi Data Explorer w przypadku korzystania z wykonywania opartego na priorytecie. Jeśli wybrano „Brak”, Data Explorer nie określi poziomu priorytetu, a zostanie użyty domyślny poziom priorytetu po stronie serwera.",
|
||||
"displayGremlinQueryResults": "Wyświetl wyniki zapytania Gremlin jako:",
|
||||
"displayGremlinQueryResultsDescription": "Wybierz Graph, aby automatycznie wizualizować wyniki zapytania jako wykres lub JSON, aby wyświetlić wyniki w formacie JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Automatyczna wizualizacja grafu",
|
||||
"enableSampleDatabase": "Włącz przykładową bazę danych",
|
||||
"enableSampleDatabaseDescription": "To przykładowa baza danych i kolekcja z syntetycznymi danymi produktów, które możesz wykorzystać do eksploracji za pomocą zapytań NoSQL. Baza ta pojawi się jako kolejna baza danych w interfejsie Data Explorer i jest tworzona oraz utrzymywana przez Microsoft bez żadnych kosztów dla Ciebie.",
|
||||
"enableSampleDbAriaLabel": "Włącz przykładową bazę danych do eksploracji zapytań",
|
||||
"guidRepresentation": "Reprezentacja identyfikatora GUID",
|
||||
"guidRepresentationDescription": "Element GuidRepresentation w MongoDB określa sposób serializacji i deserializacji globalnych unikatowych identyfikatorów (GUID) podczas przechowywania w dokumentach BSON. Dotyczy to wszystkich operacji na dokumentach.",
|
||||
"advancedSettings": "Ustawienia zaawansowane",
|
||||
"ignorePartitionKey": "Ignoruj klucz partycji podczas aktualizacji dokumentu",
|
||||
"ignorePartitionKeyTooltip": "Jeśli zaznaczone, wartość klucza partycji nie będzie używana do lokalizowania dokumentu podczas operacji aktualizacji. Używaj tego tylko, gdy aktualizacje dokumentu nie powiodły się z powodu nieprawidłowego klucza partycji.",
|
||||
"clearHistory": "Wyczyść historię",
|
||||
"clearHistoryConfirm": "Czy na pewno chcesz kontynuować?",
|
||||
"clearHistoryDescription": "Ta akcja spowoduje wyczyszczenie wszystkich dostosowań dla tego konta w tej przeglądarce, w tym:",
|
||||
"clearHistoryTabLayout": "Zresetuj dostosowany układ kart, w tym pozycje rozdzielacza",
|
||||
"clearHistoryTableColumns": "Wymaż preferencje kolumn tabeli, w tym wszystkie kolumny niestandardowe",
|
||||
"clearHistoryFilters": "Wyczyść historię filtrów",
|
||||
"clearHistoryRegion": "Resetuj wybór regionu do globalnego",
|
||||
"increaseValueBy1000": "Zwiększ wartość o 1000",
|
||||
"decreaseValueBy1000": "Zmniejsz wartość o 1000",
|
||||
"none": "Brak",
|
||||
"low": "Niskie",
|
||||
"high": "Wysokie",
|
||||
"automatic": "Automatyczne",
|
||||
"enhancedQueryControl": "Rozszerzona kontrolka zapytań",
|
||||
"enableQueryControl": "Włącz kontrolkę zapytania",
|
||||
"explorerVersion": "Wersja Eksploratora",
|
||||
"accountId": "Identyfikator konta",
|
||||
"sessionId": "Identyfikator sesji",
|
||||
"popupsDisabledError": "Nie udało się ustanowić autoryzacji dla tego konta, ponieważ w przeglądarce są wyłączone wyskakujące okienka.\nWłącz wyskakujące okienka dla tej witryny i kliknij przycisk „Zaloguj się w Entra ID”",
|
||||
"failedToAcquireTokenError": "Nie można automatycznie uzyskać tokenu autoryzacji. Kliknij przycisk „Zaloguj się dla Entra ID”, aby włączyć operacje RBAC Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Zapisz zapytanie",
|
||||
"setupCostMessage": "Ze względów zgodności zapisujemy zapytania w kontenerze na Twoim koncie Azure Cosmos w osobnej bazie danych o nazwie „{{databaseName}}”. Aby kontynuować, musimy utworzyć kontener na Twoim koncie, a szacowany dodatkowy koszt to 0,77 USD dziennie.",
|
||||
"completeSetup": "Ukończ instalację",
|
||||
"noQueryNameError": "Nie określono nazwy zapytania",
|
||||
"invalidQueryContentError": "Określono nieprawidłową zawartość zapytania",
|
||||
"failedToSaveQueryError": "Nie można zapisać zapytania {{queryName}}",
|
||||
"failedToSetupContainerError": "Nie można skonfigurować kontenera dla zapisanych zapytań",
|
||||
"accountNotSetupError": "Nie udało się zapisać zapytania: konto nie jest skonfigurowane do zapisywania zapytań",
|
||||
"name": "Nazwa"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Nie określono pliku",
|
||||
"failedToLoadQueryError": "Nie można załadować zapytania",
|
||||
"failedToLoadQueryFromFileError": "Nie można załadować zapytania z pliku {{fileName}}",
|
||||
"selectFilesToOpen": "Wybierz dokument zapytania",
|
||||
"browseFiles": "Przeglądaj"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Wprowadź parametry wejściowe (jeśli są)",
|
||||
"key": "Klucz",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Wartość klucza partycji",
|
||||
"value": "Wartość",
|
||||
"addNewParam": "Dodaj nowy parametr",
|
||||
"addParam": "Dodaj parametr",
|
||||
"deleteParam": "Usuń parametr",
|
||||
"invalidParamError": "Określono nieprawidłowy parametr: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Określono nieprawidłowy parametr: {{invalidParam}} nie jest prawidłową wartością literału",
|
||||
"stringType": "Ciąg",
|
||||
"customType": "Niestandardowe"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Nie określono plików. Wprowadź co najmniej jeden plik.",
|
||||
"selectJsonFiles": "Wybierz pliki JSON",
|
||||
"selectJsonFilesTooltip": "Wybierz jeden lub więcej plików JSON do przesłania. Każdy plik może zawierać pojedynczy dokument JSON lub tablicę dokumentów JSON. Łączny rozmiar wszystkich plików w pojedynczej operacji przesyłania musi być mniejszy niż 2 MB. Możesz wykonać wiele operacji przesyłania dla większych zestawów danych.",
|
||||
"fileNameColumn": "NAZWA PLIKU",
|
||||
"statusColumn": "STAN",
|
||||
"uploadStatus": "Utworzono: {{numSucceeded}}, ograniczono: {{numThrottled}}, błędy: {{numFailed}}",
|
||||
"uploadedFiles": "Przekazywane pliki"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Nie można skopiować {{name}} do {{destination}}",
|
||||
"uploadFailedError": "Nie można przekazać {{name}}",
|
||||
"location": "Lokalizacja",
|
||||
"locationAriaLabel": "Lokalizacja",
|
||||
"selectLocation": "Wybierz lokalizację notesu do skopiowania",
|
||||
"name": "Nazwa"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Nie można opublikować {{notebookName}} w galerii",
|
||||
"publishDescription": "Po opublikowaniu ten notes pojawi się w publicznej galerii notesów Azure Cosmos DB. Przed opublikowaniem upewnij się, że usunięto poufne dane lub dane wyjściowe.",
|
||||
"publishPrompt": "Czy chcesz opublikować i udostępnić „{{name}}” w galerii?",
|
||||
"coverImage": "Obraz okładki",
|
||||
"coverImageUrl": "Adres URL obrazu tytułowego",
|
||||
"name": "Nazwa",
|
||||
"description": "Opis",
|
||||
"tags": "Tagi",
|
||||
"tagsPlaceholder": "Opcjonalny tag 1, opcjonalny tag 2",
|
||||
"preview": "Podgląd",
|
||||
"urlType": "Adres URL",
|
||||
"customImage": "Obraz niestandardowy",
|
||||
"takeScreenshot": "Zrób zrzut ekranu",
|
||||
"useFirstDisplayOutput": "Użyj pierwszego wyświetlania danych wyjściowych",
|
||||
"failedToCaptureOutput": "Nie można przechwycić pierwszych danych wyjściowych",
|
||||
"outputDoesNotExist": "Dane wyjściowe nie istnieją dla żadnej komórki.",
|
||||
"failedToConvertError": "Nie można przekonwertować {{fileName}} na format base64",
|
||||
"failedToUploadError": "Nie można przekazać {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Nie udało się uruchomić zadania transferu danych",
|
||||
"suboptimalPartitionKeyError": "Ostrzeżenie: system wykrył, że kolekcja może używać nieoptymalnego klucza partycji",
|
||||
"description": "Zmieniając klucz partycji kontenera, musisz utworzyć kontener docelowy z poprawnym kluczem partycji. Możesz też wybrać istniejący kontener docelowy.",
|
||||
"sourceContainerId": "Identyfikator {{collectionName}} źródłowego",
|
||||
"destinationContainerId": "Identyfikator {{collectionName}} docelowego",
|
||||
"collectionIdTooltip": "Identyfikator unikatowy {{collectionName}} używany do routingu opartego na identyfikatorach prowadzącego przez interfejs REST i wszystkie zestawy SDK.",
|
||||
"collectionIdPlaceholder": "np. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "Identyfikator {{collectionName}}, przykład {{collectionName}}1",
|
||||
"existingContainers": "Istniejące kontenery",
|
||||
"partitionKeyWarning": "Kontener docelowy nie może już istnieć. Data Explorer utworzy dla Ciebie nowy kontener docelowy."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nazwa przestrzeni kluczy",
|
||||
"keyspaceTooltip": "Wybierz istniejącą przestrzeń kluczy lub wprowadź nowy identyfikator przestrzeni kluczy.",
|
||||
"tableIdLabel": "Wprowadź polecenie CQL, aby utworzyć tabelę.",
|
||||
"enterTableId": "Wprowadź identyfikator tabeli",
|
||||
"tableSchemaAriaLabel": "Schemat tabeli",
|
||||
"provisionDedicatedThroughput": "Aprowizowanie dedykowanej przepływności dla tej tabeli",
|
||||
"provisionDedicatedThroughputTooltip": "Możesz opcjonalnie przydzielić dedykowaną przepustowość dla tabeli w przestrzeni kluczy, która ma już przydzieloną przepustowość. Ta dedykowana przepustowość nie będzie współdzielona z innymi tabelami w przestrzeni kluczy i nie będzie wliczana do przepustowości przydzielonej dla przestrzeni kluczy. Ta przepustowość będzie rozliczana dodatkowo do przepustowości przydzielonej na poziomie przestrzeni kluczy."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Dodaj właściwość",
|
||||
"addRow": "Dodaj wiersz",
|
||||
"addEntity": "Dodaj jednostkę",
|
||||
"back": "wstecz",
|
||||
"nullFieldsWarning": "Ostrzeżenie: pola o wartości null nie będą wyświetlane do edycji.",
|
||||
"propertyEmptyError": "Wartość {{property}} nie może być pusta. Wprowadź wartość dla {{property}}",
|
||||
"whitespaceError": "{{property}} nie może zawierać białych znaków. Wprowadź wartość dla {{property}} bez białych znaków",
|
||||
"propertyTypeEmptyError": "Typ właściwości nie może być pusty. Wybierz typ z listy rozwijanej dla właściwości {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Wybierz kolumny, których ma dotyczyć zapytanie.",
|
||||
"availableColumns": "Dostępne kolumny"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Wybierz kolumny do wyświetlenia w widoku elementów w kontenerze.",
|
||||
"searchFields": "Pola wyszukiwania",
|
||||
"reset": "Zresetuj",
|
||||
"partitionKeySuffix": " (klucz partycji)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Dodaj właściwość"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Identyfikator kontenera globalnego indeksu pomocniczego",
|
||||
"globalSecondaryIndexIdPlaceholder": "np. indexbyEmailId",
|
||||
"projectionQuery": "Zapytanie projekcji",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Dowiedz się więcej o definiowaniu globalnych indeksów pomocniczych.",
|
||||
"disabledTitle": "Globalny indeks pomocniczy jest już tworzony. Zaczekaj na ukończenie tej operacji przed utworzeniem kolejnej."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Dane wejściowe {{input}} nie pasują do wybranej {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informacje",
|
||||
"moreDetails": "Więcej szczegółów"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Carregar",
|
||||
"connect": "Conectar",
|
||||
"remove": "Remover",
|
||||
"load": "Carregar",
|
||||
"publish": "Publicar",
|
||||
"browse": "Procurar",
|
||||
"increaseValueBy1": "Aumentar o valor em 1",
|
||||
"decreaseValueBy1": "Diminuir valor em 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Falha ao criar o contêiner: {{error}}",
|
||||
"errorImportData": "Falha ao importar dados: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Novo {{containerName}}",
|
||||
"restoreContainer": "Restaurar {{containerName}}",
|
||||
"deleteDatabase": "Excluir {{databaseName}}",
|
||||
"deleteContainer": "Excluir {{containerName}}",
|
||||
"newSqlQuery": "Nova Consulta SQL",
|
||||
"newQuery": "Nova Consulta",
|
||||
"openMongoShell": "Abrir o Shell Mongo",
|
||||
"newShell": "Novo Shell",
|
||||
"openCassandraShell": "Abrir o Shell Cassandra",
|
||||
"newStoredProcedure": "Novo Procedimento Armazenado",
|
||||
"newUdf": "Nova UDF",
|
||||
"newTrigger": "Novo Gatilho",
|
||||
"deleteStoredProcedure": "Excluir Procedimento Armazenado",
|
||||
"deleteTrigger": "Excluir Gatilho",
|
||||
"deleteUdf": "Excluir Função Definida pelo Usuário"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Novo Item",
|
||||
"newDocument": "Novo Documento",
|
||||
"uploadItem": "Carregar Item",
|
||||
"applyFilter": "Aplicar Filtro",
|
||||
"unsavedChanges": "Alterações não salvas",
|
||||
"unsavedChangesMessage": "As alterações não salvas serão perdidas. Deseja continuar?",
|
||||
"createDocumentFailed": "Falha ao criar documento",
|
||||
"updateDocumentFailed": "Falha ao atualizar documento",
|
||||
"documentDeleted": "Documento excluído com sucesso.",
|
||||
"deleteDocumentDialogTitle": "Excluir documento",
|
||||
"deleteDocumentsDialogTitle": "Excluir documentos",
|
||||
"throttlingError": "Alguns documentos não foram excluídos devido a um erro de limitação de fluxo. Tente novamente mais tarde. Para evitar isso no futuro, considere aumentar a taxa de transferência em seu contêiner ou banco de dados.",
|
||||
"deleteFailed": "Falha ao excluir documento(s) ({{error}})",
|
||||
"missingShardProperty": "O documento não tem a propriedade de fragmento: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Falha ao atualizar a grade de documentos",
|
||||
"confirmDelete": "Tem certeza de que deseja excluir {{documentName}}?",
|
||||
"confirmDeleteTitle": "Confirmar exclusão",
|
||||
"selectedItems": "os {{count}} itens selecionados",
|
||||
"selectedItem": "o item selecionado",
|
||||
"selectedDocuments": "os {{count}} documentos selecionados",
|
||||
"selectedDocument": "o documento selecionado",
|
||||
"deleteDocumentFailedLog": "Falha ao excluir documento {{documentId}} com código de status {{statusCode}}",
|
||||
"deleteSuccessLog": "{{count}} documento(s) excluído(s) com sucesso",
|
||||
"deleteThrottledLog": "Falha ao excluir {{count}} documento(s) devido ao erro \"Solicitação muito grande\" (429). Tentando novamente...",
|
||||
"missingShardKeyLog": "Falha ao salvar novo documento: chave de fragmento do documento não definida",
|
||||
"filterTooltip": "Digite um predicado de consulta ou escolha um na lista.",
|
||||
"loadMore": "Carregar mais",
|
||||
"documentEditor": "Editor de documentos",
|
||||
"savedFilters": "Filtros salvos",
|
||||
"defaultFilters": "Filtros padrão",
|
||||
"abort": "Anular",
|
||||
"deletingDocuments": "Excluindo {{count}} documento(s)",
|
||||
"deletedDocumentsSuccess": "{{count}} documento(s) excluído(s) com sucesso.",
|
||||
"deleteAborted": "A exclusão de documentos foi anulada.",
|
||||
"failedToDeleteDocuments": "Falha ao excluir {{count}} documento(s).",
|
||||
"requestTooLargeBase": "Algumas solicitações de exclusão falharam devido a uma exceção \"Solicitação muito grande\" (429)",
|
||||
"retriedSuccessfully": "mas foram repetidas com sucesso.",
|
||||
"retryingNow": "Tentando novamente agora.",
|
||||
"increaseThroughputTip": "Para evitar isso no futuro, considere aumentar a taxa de transferência em seu contêiner ou banco de dados.",
|
||||
"numberOfSelectedDocuments": "Número de documentos selecionados: {{count}}",
|
||||
"mongoFilterPlaceholder": "Digite um predicado de consulta (por exemplo, {\"id\":\"foo\"}) ou escolha um na lista suspensa ou deixe em branco para consultar todos os documentos.",
|
||||
"sqlFilterPlaceholder": "Digite um predicado de consulta (por exemplo, WHERE c.id=\"1\"), ou escolha um na lista suspensa ou deixe em branco para consultar todos os documentos.",
|
||||
"error": "Erro",
|
||||
"warning": "Aviso"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Executar Consulta",
|
||||
"executeSelection": "Executar Seleção",
|
||||
"saveQuery": "Salvar Consulta",
|
||||
"downloadQuery": "Baixar Consulta",
|
||||
"cancelQuery": "Cancelar consulta",
|
||||
"openSavedQueries": "Abrir Consultas Salvas",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "Exibir",
|
||||
"editingQuery": "Editando a Consulta"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID do Procedimento Armazenado",
|
||||
"idPlaceholder": "Insira a nova ID de procedimento armazenado",
|
||||
"idAriaLabel": "ID do procedimento armazenado",
|
||||
"body": "Corpo do Procedimento Armazenado",
|
||||
"bodyAriaLabel": "Corpo do procedimento armazenado",
|
||||
"successfulExecution": "Execução bem-sucedida do procedimento armazenado",
|
||||
"resultAriaLabel": "Executar resultado do procedimento armazenado",
|
||||
"logsAriaLabel": "Executar logs de procedimento armazenado",
|
||||
"errors": "Erros:",
|
||||
"errorDetailsAriaLabel": "Link de detalhes do erro",
|
||||
"moreDetails": "Mais detalhes",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID do Gatilho",
|
||||
"idPlaceholder": "Insira a nova ID de gatilho",
|
||||
"type": "Tipo do Disparador",
|
||||
"operation": "Disparar Operação",
|
||||
"body": "Corpo do Gatilho",
|
||||
"bodyAriaLabel": "Corpo do gatilho",
|
||||
"pre": "Pré",
|
||||
"post": "Postar",
|
||||
"all": "Tudo",
|
||||
"operationCreate": "Criar",
|
||||
"operationDelete": "Excluir",
|
||||
"operationReplace": "Substituir"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID da Função Definida pelo Usuário",
|
||||
"idPlaceholder": "Insira a nova ID de função definida pelo usuário",
|
||||
"body": "Corpo da Função Definida pelo Usuário",
|
||||
"bodyAriaLabel": "Corpo da função definida pelo usuário"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Alterações não salvas",
|
||||
"changesWillBeLost": "As alterações serão perdidas. Deseja continuar?",
|
||||
"resolveConflictFailed": "Falha ao resolver conflito",
|
||||
"deleteConflictFailed": "Falha ao excluir conflito",
|
||||
"refreshGridFailed": "Falha ao atualizar a grade de documentos"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Excluir {{databaseName}}",
|
||||
"warningMessage": "Aviso! A ação que você está prestes a realizar não pode ser desfeita. Continuar excluirá permanentemente esse recurso e todos os seus recursos filhos.",
|
||||
"confirmPrompt": "Confirme digitando a ID de {{databaseName}} (nome)",
|
||||
"inputMismatch": "O nome de entrada {{databaseName}} \"{{input}}\" não corresponde ao {{databaseName}} selecionado \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Ajude-nos a melhorar o Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual é o motivo pelo qual você está excluindo esse {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Excluir {{collectionName}}",
|
||||
"confirmPrompt": "Confirme digitando a ID de {{collectionName}}",
|
||||
"inputMismatch": "A ID de entrada {{input}} não corresponde à {{selectedId}} selecionada",
|
||||
"feedbackTitle": "Ajude-nos a melhorar o Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual é o motivo pelo qual você está excluindo esse {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Banco de dados {{suffix}}",
|
||||
"databaseIdLabel": "ID do banco de dados",
|
||||
"keyspaceIdLabel": "ID do Keyspace",
|
||||
"databaseIdPlaceholder": "Digite uma nova ID de {{databaseLabel}}",
|
||||
"databaseTooltip": "O {{databaseLabel}} é um contêiner lógico de um ou mais {{collectionsLabel}}",
|
||||
"shareThroughput": "Compartilhar taxa de transferência entre {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "A taxa de transferência provisionada no nível {{databaseLabel}} será compartilhada entre todos {{collectionsLabel}} no {{databaseLabel}}.",
|
||||
"greaterThanError": "Insira um valor maior que {{minValue}} para a taxa de transferência do Autopilot",
|
||||
"acknowledgeSpendError": "Confirme os gastos estimados de {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Criar novo",
|
||||
"useExisting": "Usar o existente",
|
||||
"databaseTooltip": "Um banco de dados é análogo a um namespace. Essa é a unidade de gerenciamento para um conjunto de {{collectionName}}.",
|
||||
"shareThroughput": "Compartilhar taxa de transferência entre {{collectionName}}",
|
||||
"shareThroughputTooltip": "A taxa de transferência configurada no nível do banco de dados será compartilhada entre todos os {{collectionName}} dentro do banco de dados.",
|
||||
"collectionIdLabel": "ID de {{collectionName}}",
|
||||
"collectionIdTooltip": "Identificador exclusivo para o {{collectionName}} e usado para roteamento baseado em ID por meio de REST e todos os SDKs.",
|
||||
"collectionIdPlaceholder": "Por exemplo, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID de {{collectionName}}, {{collectionName}}1 de Exemplo",
|
||||
"existingDatabaseAriaLabel": "Escolha a ID {{databaseName}} existente",
|
||||
"existingDatabasePlaceholder": "Escolha a ID {{databaseName}} existente",
|
||||
"indexing": "Indexação",
|
||||
"turnOnIndexing": "Ativar indexação",
|
||||
"automatic": "Automático",
|
||||
"turnOffIndexing": "Desativar indexação",
|
||||
"off": "Desativado",
|
||||
"sharding": "Fragmentação",
|
||||
"shardingTooltip": "As coleções fragmentadas dividem seus dados em vários conjuntos de réplicas (fragmentos) para obter escalabilidade ilimitada. As coleções fragmentadas exigem a escolha de uma chave de fragmento (campo) para distribuir uniformemente seus dados.",
|
||||
"unsharded": "Não fragmentado",
|
||||
"unshardedLabel": "Não fragmentado (limite de 20 GB)",
|
||||
"sharded": "Fragmentado",
|
||||
"addPartitionKey": "Adicionar chave de partição hierárquica",
|
||||
"hierarchicalPartitionKeyInfo": "Esse recurso permite particionar seus dados com até três níveis de chaves para uma melhor distribuição de dados. Requer o .NET V3, o SDK do Java V4 ou a versão prévia do SDK do JavaScript V3.",
|
||||
"provisionDedicatedThroughput": "Provisionar taxa de transferência dedicada para esse {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionalmente, você pode provisionar a taxa de transferência dedicada para um {{collectionName}} dentro de um banco de dados que tenha a taxa de transferência provisionada. Essa quantidade dedicada de taxa de transferência não será compartilhada com outros {{collectionNamePlural}} no banco de dados e não será contabilizada na taxa de transferência que você provisionou para o banco de dados. Esse valor de taxa de transferência será cobrado além do valor da taxa de transferência provisionado no nível do banco de dados.",
|
||||
"uniqueKeysPlaceholderMongo": "Caminhos separados por vírgula, por exemplo, firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Caminhos separados por vírgula, por exemplo, /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Adicionar chave exclusiva",
|
||||
"enableAnalyticalStore": "Habilitar repositório analítico",
|
||||
"disableAnalyticalStore": "Desabilitar repositório analítico",
|
||||
"on": "Ativado",
|
||||
"analyticalStoreSynapseLinkRequired": "O Link do Azure Synapse é necessário para criar um {{collectionName}} de repositório analítico. Habilite Link do Synapse para essa conta do Cosmos DB.",
|
||||
"enable": "Habilitar",
|
||||
"containerVectorPolicy": "Política de Vetor de Contêiner",
|
||||
"containerFullTextSearchPolicy": "Política de Pesquisa de Texto Completo do Contêiner",
|
||||
"advanced": "Avançado",
|
||||
"mongoIndexingTooltip": "O campo _id é indexado por padrão. A criação de um índice curinga para todos os campos otimizará as consultas e é recomendada para desenvolvimento.",
|
||||
"createWildcardIndex": "Criar um Índice Curinga em todos os campos",
|
||||
"legacySdkCheckbox": "Meu aplicativo usa uma versão mais antiga do SDK do Cosmos .NET ou Java (.NET V1 ou Java V2)",
|
||||
"legacySdkInfo": "Para garantir compatibilidade com SDKs mais antigos, o contêiner criado usará um esquema de particionamento herdado que oferece suporte a valores de chave de partição com tamanho de até 101 bytes. Se isso estiver habilitado, você não poderá usar chaves de partição hierárquicas.",
|
||||
"indexingOnInfo": "Todas as propriedades em seus documentos serão indexadas por padrão para consultas flexíveis e eficientes.",
|
||||
"indexingOffInfo": "A indexação será desativada. Recomendado se você não precisa executar consultas ou tem apenas operações de valor de chave.",
|
||||
"indexingOffWarning": "Ao criar esse contêiner com a indexação desativada, você não poderá fazer alterações na política de indexação. As alterações de indexação só são permitidas em um contêiner com uma política de indexação.",
|
||||
"acknowledgeSpendErrorMonthly": "Confirme os gastos mensais estimados.",
|
||||
"acknowledgeSpendErrorDaily": "Confirme os gastos diários estimados.",
|
||||
"unshardedMaxRuError": "Coleções não fragmentadas dão suporte a até 10.000 RUs",
|
||||
"acknowledgeShareThroughputError": "Confirme o custo estimado dessa taxa de transferência dedicada.",
|
||||
"vectorPolicyError": "Corrija erros na política do vetor de contêiner",
|
||||
"fullTextSearchPolicyError": "Corrija erros na política de pesquisa de texto completo do contêiner",
|
||||
"addingSampleDataSet": "Adicionando conjunto de dados de exemplo"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "A chave de fragmento (campo) é usada para dividir seus dados em vários conjuntos de réplicas (fragmentos) para obter escalabilidade ilimitada. É fundamental escolher um campo que distribuirá uniformemente seus dados.",
|
||||
"partitionKeyTooltip": "O {{partitionKeyName}} é usado para distribuir dados automaticamente entre partições para escalabilidade. Escolha uma propriedade no documento JSON que tenha uma ampla variedade de valores e distribua uniformemente o volume de solicitações.",
|
||||
"partitionKeyTooltipSqlSuffix": " Para cargas de trabalho pequenas com muitas leituras ou cargas de trabalho de gravação de qualquer tamanho, a ID costuma ser uma boa escolha.",
|
||||
"shardKeyLabel": "Fragmentar a chave",
|
||||
"partitionKeyLabel": "Chave de partição",
|
||||
"shardKeyPlaceholder": "Por exemplo, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "Por exemplo, /address",
|
||||
"partitionKeyPlaceholderFirst": "Obrigatório – primeira chave de partição, por exemplo, /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "segunda chave de partição, por exemplo, /UserId",
|
||||
"partitionKeyPlaceholderThird": "terceira chave de partição, por exemplo, /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "Por exemplo, /address/zipCode",
|
||||
"uniqueKeysTooltip": "Chaves exclusivas fornecem aos desenvolvedores a capacidade de adicionar uma camada de integridade de dados ao banco de dados. Ao criar uma política de chave exclusiva quando um contêiner é criado, você garante a exclusividade de um ou mais valores por chave de partição.",
|
||||
"uniqueKeysLabel": "Chaves exclusivas",
|
||||
"analyticalStoreLabel": "Repositório Analítico",
|
||||
"analyticalStoreTooltip": "Habilite o recurso de armazenamento analítico para realizar análises quase em tempo real sobre seus dados operacionais, sem impactar o desempenho das cargas de trabalho transacionais.",
|
||||
"analyticalStoreDescription": "Habilite o recurso de armazenamento analítico para realizar análises quase em tempo real sobre seus dados operacionais, sem impactar o desempenho das cargas de trabalho transacionais.",
|
||||
"vectorPolicyTooltip": "Descreva as propriedades em seus dados que contenham vetores, para que possam ser disponibilizadas para consultas de similaridade."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opções de Página",
|
||||
"pageOptionsDescription": "Escolha Personalizado para especificar uma quantidade fixa de resultados de consulta a serem mostrados ou escolha Ilimitado para mostrar quantos resultados de consulta por página.",
|
||||
"queryResultsPerPage": "Resultados da consulta por página",
|
||||
"queryResultsPerPageTooltip": "Insira o número de resultados da consulta que devem ser mostrados por página.",
|
||||
"customQueryItemsPerPage": "Itens de consulta personalizados por página",
|
||||
"custom": "Personalizado",
|
||||
"unlimited": "Ilimitado",
|
||||
"entraIdRbac": "Habilitar RBAC do Entra ID",
|
||||
"entraIdRbacDescription": "Escolha Automático para habilitar o RBAC do Entra ID automaticamente. Verdadeiro/Falso para forçar a habilitação/desabilitação do RBAC do Entra ID.",
|
||||
"true": "Verdadeiro",
|
||||
"false": "Falso",
|
||||
"regionSelection": "Seleção de Região",
|
||||
"regionSelectionDescription": "Altera a região que o Cliente do Cosmos usa para acessar a conta.",
|
||||
"selectRegion": "Selecionar Região",
|
||||
"selectRegionTooltip": "Altera o ponto de extremidade da conta usado para executar operações do cliente.",
|
||||
"globalDefault": "Global (Padrão)",
|
||||
"readWrite": "(Leitura/Gravação)",
|
||||
"read": "(Leitura)",
|
||||
"queryTimeout": "Tempo Limite da Consulta",
|
||||
"queryTimeoutDescription": "Quando uma consulta atingir o limite de tempo especificado, será exibido um pop-up com a opção de cancelar a consulta, a menos que o cancelamento automático tenha sido habilitado.",
|
||||
"enableQueryTimeout": "Habilitar tempo limite de consulta",
|
||||
"queryTimeoutMs": "Tempo limite da consulta (ms)",
|
||||
"automaticallyCancelQuery": "Cancelar automaticamente a consulta após o tempo limite",
|
||||
"ruLimit": "Limite de RU",
|
||||
"ruLimitDescription": "Se uma consulta exceder um limite de RU configurado, a consulta será anulada.",
|
||||
"enableRuLimit": "Habilitar limite de RU",
|
||||
"ruLimitLabel": "Limite de RU (RU)",
|
||||
"defaultQueryResults": "Visualização dos Resultados da Consulta Padrão",
|
||||
"defaultQueryResultsDescription": "Selecione a exibição padrão a ser usada ao exibir os resultados da consulta.",
|
||||
"retrySettings": "Configurações de Repetição",
|
||||
"retrySettingsDescription": "Política de repetição associada a solicitações limitadas durante consultas do CosmosDB.",
|
||||
"maxRetryAttempts": "Máximo de tentativas de repetição",
|
||||
"maxRetryAttemptsTooltip": "Número máximo de tentativas a serem executadas para uma solicitação. Valor padrão 9.",
|
||||
"fixedRetryInterval": "Intervalo de repetição fixo (ms)",
|
||||
"fixedRetryIntervalTooltip": "Corrigido o intervalo de repetição em milissegundos para aguardar entre cada repetição ignorando o retryAfter retornado como parte da resposta. O valor padrão é 0 milissegundos.",
|
||||
"maxWaitTime": "Tempo máximo de espera (s)",
|
||||
"maxWaitTimeTooltip": "Tempo máximo de espera em segundos para aguardar uma solicitação enquanto as repetições estão ocorrendo. Valor padrão de 30 segundos.",
|
||||
"enableContainerPagination": "Habilitar paginação de contêiner",
|
||||
"enableContainerPaginationDescription": "Carregue 50 contêineres por vez. Atualmente, os contêineres não são extraídos em ordem alfanumérica.",
|
||||
"enableCrossPartitionQuery": "Habilitar consulta entre partições",
|
||||
"enableCrossPartitionQueryDescription": "Envie mais de uma solicitação ao executar uma consulta. Mais de uma solicitação será necessária se a consulta não tiver escopo para o valor de chave de partição única.",
|
||||
"maxDegreeOfParallelism": "Grau máximo de paralelismo",
|
||||
"maxDegreeOfParallelismDescription": "Obtém ou define o número de operações simultâneas executadas no lado do cliente durante a execução da consulta paralela. Um valor de propriedade positivo limita o número de operações simultâneas ao valor definido. Se for definido como menor que 0, o sistema decidirá automaticamente o número de operações simultâneas a serem executadas.",
|
||||
"maxDegreeOfParallelismQuery": "Consulte até o grau máximo de paralelismo.",
|
||||
"priorityLevel": "Nível de Prioridade",
|
||||
"priorityLevelDescription": "Define o nível de prioridade para solicitações de plano de dados do Data Explorer ao usar a Execução Baseada em Prioridade. Se \"Nenhum\" for selecionado, o Data Explorer não especificará o nível de prioridade e o nível de prioridade padrão do lado do servidor será usado.",
|
||||
"displayGremlinQueryResults": "Exibir resultados da consulta Gremlin como:",
|
||||
"displayGremlinQueryResultsDescription": "Selecione o Graph para visualizar automaticamente os resultados da consulta como um Graph ou JSON para exibir os resultados como JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualização automática do Graph",
|
||||
"enableSampleDatabase": "Habilitar banco de dados de exemplo",
|
||||
"enableSampleDatabaseDescription": "Esse é um banco de dados e uma coleção de exemplo com dados sintéticos do produto que você pode usar para explorar usando consultas NoSQL. Isso aparecerá como outro banco de dados na interface do usuário do Data Explorer e será criado e mantido pela Microsoft sem nenhum custo para você.",
|
||||
"enableSampleDbAriaLabel": "Habilitar banco de dados de exemplo para exploração de consulta",
|
||||
"guidRepresentation": "Representação de GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation no MongoDB refere-se a como GUIDs (Identificadores Global Exclusivos) são serializados e desserializados quando armazenados em documentos BSON. Isso se aplicará a todas as operações de documento.",
|
||||
"advancedSettings": "Configurações Avançadas",
|
||||
"ignorePartitionKey": "Ignorar chave de partição na atualização do documento",
|
||||
"ignorePartitionKeyTooltip": "Se marcado, o valor da chave de partição não será usado para localizar o documento durante as operações de atualização. Use isso somente se as atualizações de documentos falharem devido a uma chave de partição anormal.",
|
||||
"clearHistory": "Limpar Histórico",
|
||||
"clearHistoryConfirm": "Tem certeza de que deseja continuar?",
|
||||
"clearHistoryDescription": "Essa ação limpará todas as personalizações dessa conta nesse navegador, incluindo:",
|
||||
"clearHistoryTabLayout": "Redefinir o layout da guia personalizada, incluindo as posições do divisor",
|
||||
"clearHistoryTableColumns": "Apagar suas preferências de coluna de tabela, incluindo as colunas personalizadas",
|
||||
"clearHistoryFilters": "Limpar o histórico de filtros",
|
||||
"clearHistoryRegion": "Redefinir seleção de região para global",
|
||||
"increaseValueBy1000": "Aumentar o valor em 1000",
|
||||
"decreaseValueBy1000": "Diminuir valor em 1000",
|
||||
"none": "Nenhum",
|
||||
"low": "Baixo",
|
||||
"high": "Alto",
|
||||
"automatic": "Automático",
|
||||
"enhancedQueryControl": "Controle de consulta aprimorado",
|
||||
"enableQueryControl": "Habilitar controle de consulta",
|
||||
"explorerVersion": "Versão do Explorer",
|
||||
"accountId": "ID da Conta",
|
||||
"sessionId": "ID da sessão",
|
||||
"popupsDisabledError": "Não foi possível estabelecer autorização para essa conta, porque os pop-ups estão desabilitados no navegador.\nHabilite pop-ups para esse site e clique no botão \"Logon para Entrar ID\"",
|
||||
"failedToAcquireTokenError": "Falha ao adquirir o token de autorização automaticamente. Clique no botão \"Logon para Entrar ID\" para habilitar as operações do RBAC do Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Salvar Consulta",
|
||||
"setupCostMessage": "Por motivos de conformidade, salvamos consultas em um contêiner em sua conta do Azure Cosmos, em um banco de dados separado chamado \"{{databaseName}}\". Para continuar, precisamos criar um contêiner em sua conta, o custo adicional estimado é de US$ 0,77 por dia.",
|
||||
"completeSetup": "Concluir a configuração",
|
||||
"noQueryNameError": "Nenhum nome de consulta especificado",
|
||||
"invalidQueryContentError": "Conteúdo de consulta inválido especificado",
|
||||
"failedToSaveQueryError": "Falha ao salvar a consulta {{queryName}}",
|
||||
"failedToSetupContainerError": "Falha ao configurar um contêiner para consultas salvas",
|
||||
"accountNotSetupError": "Falha ao salvar consulta: conta não configurada para salvar consultas",
|
||||
"name": "Nome"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Nenhum arquivo especificado",
|
||||
"failedToLoadQueryError": "Falha ao carregar a consulta",
|
||||
"failedToLoadQueryFromFileError": "Falha ao carregar a consulta do arquivo {{fileName}}",
|
||||
"selectFilesToOpen": "Selecionar um documento de consulta",
|
||||
"browseFiles": "Procurar"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Inserir parâmetros de entrada (se houver)",
|
||||
"key": "Chave",
|
||||
"param": "Parâmetro",
|
||||
"partitionKeyValue": "Valor da chave de partição",
|
||||
"value": "Valor",
|
||||
"addNewParam": "Adicionar Novo Parâmetro",
|
||||
"addParam": "Adicionar parâmetro",
|
||||
"deleteParam": "Excluir parâmetro",
|
||||
"invalidParamError": "Parâmetro inválido especificado: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Parâmetro inválido especificado: {{invalidParam}} não é um valor literal válido",
|
||||
"stringType": "Cadeia de caracteres",
|
||||
"customType": "Personalizado"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Nenhum arquivo foi especificado. Insira pelo menos um arquivo.",
|
||||
"selectJsonFiles": "Selecionar Arquivos JSON",
|
||||
"selectJsonFilesTooltip": "Selecione um ou mais arquivos JSON para carregar. Cada arquivo pode conter um único documento JSON ou uma matriz de documentos JSON. O tamanho combinado de todos os arquivos em uma operação de upload individual deve ser menor que 2 MB. Você pode executar várias operações de upload para conjuntos de dados maiores.",
|
||||
"fileNameColumn": "NOME DO ARQUIVO",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} criado(s), {{numThrottled}} limitado(s), {{numFailed}} erro(s)",
|
||||
"uploadedFiles": "Arquivos carregados"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Falha ao copiar {{name}} para {{destination}}",
|
||||
"uploadFailedError": "Falha ao carregar {{name}}",
|
||||
"location": "Localização",
|
||||
"locationAriaLabel": "Localização",
|
||||
"selectLocation": "Selecione um local do notebook para copiar",
|
||||
"name": "Nome"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Falha ao publicar {{notebookName}} na galeria",
|
||||
"publishDescription": "Quando publicado, esse notebook aparecerá na galeria pública de notebooks do Azure Cosmos DB. Verifique se você removeu os dados confidenciais ou a saída antes de publicar.",
|
||||
"publishPrompt": "Deseja publicar e compartilhar \"{{name}}\" na galeria?",
|
||||
"coverImage": "Imagem de capa",
|
||||
"coverImageUrl": "URL da imagem de capa",
|
||||
"name": "Nome",
|
||||
"description": "Descrição",
|
||||
"tags": "Rótulos",
|
||||
"tagsPlaceholder": "Marca opcional 1, marca opcional 2",
|
||||
"preview": "Visualizar",
|
||||
"urlType": "URL",
|
||||
"customImage": "Imagem Personalizada",
|
||||
"takeScreenshot": "Capturar Tela",
|
||||
"useFirstDisplayOutput": "Usar a Primeira Saída de Exibição",
|
||||
"failedToCaptureOutput": "Falha ao capturar a primeira saída",
|
||||
"outputDoesNotExist": "A saída não existe para nenhuma das células.",
|
||||
"failedToConvertError": "Falha ao converter {{fileName}} no formato base64",
|
||||
"failedToUploadError": "Falha ao carregar {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Falha ao iniciar o trabalho de transferência de dados",
|
||||
"suboptimalPartitionKeyError": "Aviso: o sistema detectou que sua coleção pode estar usando uma chave de partição abaixo do ideal",
|
||||
"description": "Ao alterar a chave de partição de um contêiner, você precisará criar um contêiner de destino com a chave de partição correta. Você também pode selecionar um contêiner de destino existente.",
|
||||
"sourceContainerId": "ID de {{collectionName}} da origem",
|
||||
"destinationContainerId": "ID do {{collectionName}} de destino",
|
||||
"collectionIdTooltip": "Identificador exclusivo para o {{collectionName}} e usado para roteamento baseado em ID por meio de REST e todos os SDKs.",
|
||||
"collectionIdPlaceholder": "Por exemplo, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "ID de {{collectionName}}, {{collectionName}}1 de Exemplo",
|
||||
"existingContainers": "Contêineres Existentes",
|
||||
"partitionKeyWarning": "O contêiner de destino ainda não deve existir. O Data Explorer criará um novo contêiner de destino para você."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nome do keyspace",
|
||||
"keyspaceTooltip": "Selecione um keyspace existente ou insira uma nova ID do keyspace.",
|
||||
"tableIdLabel": "Insira o comando CQL para criar a tabela.",
|
||||
"enterTableId": "Inserir ID da tabela",
|
||||
"tableSchemaAriaLabel": "Esquema da tabela",
|
||||
"provisionDedicatedThroughput": "Provisionar taxa de transferência dedicada para essa tabela",
|
||||
"provisionDedicatedThroughputTooltip": "Opcionalmente, você pode provisionar uma taxa de transferência dedicada para uma tabela dentro de um keyspace que tenha a taxa de transferência provisionada. Essa quantidade de taxa de transferência dedicada não será compartilhada com outras tabelas no keyspace e não contará para a taxa de transferência provisionada para o keyspace. Esse valor de taxa de transferência será cobrado além do valor da taxa de transferência provisionado no nível do keyspace."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Adicionar Propriedade",
|
||||
"addRow": "Adicionar Linha",
|
||||
"addEntity": "Adicionar Entidade",
|
||||
"back": "voltar",
|
||||
"nullFieldsWarning": "Aviso: campos nulos não serão exibidos para edição.",
|
||||
"propertyEmptyError": "A propriedade {{property}} não pode estar vazia. Insira um valor para {{property}}",
|
||||
"whitespaceError": "{{property}} não pode ter espaço em branco. Insira um valor para {{property}} sem espaço em branco",
|
||||
"propertyTypeEmptyError": "O tipo de propriedade não pode estar vazio. Selecione um tipo na lista suspensa para a propriedade {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Selecione as colunas que você deseja consultar.",
|
||||
"availableColumns": "Colunas Disponíveis"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Selecione quais colunas exibir no modo de exibição de itens em seu contêiner.",
|
||||
"searchFields": "Pesquisar campos",
|
||||
"reset": "Redefinir",
|
||||
"partitionKeySuffix": " (chave de partição)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Adicionar Propriedade"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "ID do contêiner de índice secundário global",
|
||||
"globalSecondaryIndexIdPlaceholder": "Por exemplo, indexbyEmailId",
|
||||
"projectionQuery": "Consulta de projeção",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Saiba mais sobre como definir índices secundários globais.",
|
||||
"disabledTitle": "Um índice secundário global já está sendo criado. Aguarde até que ele seja concluído antes de criar outro."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "A entrada {{input}} não corresponde à {{selectedId}} selecionada"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informações",
|
||||
"moreDetails": "Mais detalhes"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Carregar",
|
||||
"connect": "Ligar",
|
||||
"remove": "Remover",
|
||||
"load": "Carregar",
|
||||
"publish": "Publicar",
|
||||
"browse": "Procurar",
|
||||
"increaseValueBy1": "Aumentar valor em 1",
|
||||
"decreaseValueBy1": "Diminuir valor em 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Falha ao criar o contentor: {{error}}",
|
||||
"errorImportData": "Falha ao importar dados: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Novo {{containerName}}",
|
||||
"restoreContainer": "Restaurar {{containerName}}",
|
||||
"deleteDatabase": "Eliminar {{databaseName}}",
|
||||
"deleteContainer": "Eliminar {{containerName}}",
|
||||
"newSqlQuery": "Nova Consulta SQL",
|
||||
"newQuery": "Nova Consulta",
|
||||
"openMongoShell": "Abrir o Mongo Shell",
|
||||
"newShell": "Nova Shell",
|
||||
"openCassandraShell": "Abrir Shell do Cassandra",
|
||||
"newStoredProcedure": "Novo Procedimento Armazenado",
|
||||
"newUdf": "Novo UDF",
|
||||
"newTrigger": "Novo Acionador",
|
||||
"deleteStoredProcedure": "Eliminar Procedimento Armazenado",
|
||||
"deleteTrigger": "Eliminar Acionador",
|
||||
"deleteUdf": "Eliminar Função Definida pelo Utilizador"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Novo Item",
|
||||
"newDocument": "Novo Documento",
|
||||
"uploadItem": "Carregar item",
|
||||
"applyFilter": "Aplicar Filtro",
|
||||
"unsavedChanges": "Alterações não guardadas",
|
||||
"unsavedChangesMessage": "As suas alterações não guardadas serão perdidas. Deseja continuar?",
|
||||
"createDocumentFailed": "Falha ao criar documento",
|
||||
"updateDocumentFailed": "A atualização do documento falhou",
|
||||
"documentDeleted": "Documento eliminado com êxito.",
|
||||
"deleteDocumentDialogTitle": "Eliminar documento",
|
||||
"deleteDocumentsDialogTitle": "Eliminar documentos",
|
||||
"throttlingError": "Falha ao eliminar alguns documentos devido a um erro de limitação de taxa. Tente novamente mais tarde. Para evitar esta situação no futuro, considere aumentar o débito no seu contentor ou base de dados.",
|
||||
"deleteFailed": "Falha ao eliminar documento(s) ({{error}})",
|
||||
"missingShardProperty": "O documento não tem a propriedade de extensão: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Falha ao atualizar a grelha de documentos",
|
||||
"confirmDelete": "Tem a certeza de que pretende eliminar {{documentName}}?",
|
||||
"confirmDeleteTitle": "Confirmar eliminação",
|
||||
"selectedItems": "os {{count}} itens selecionados",
|
||||
"selectedItem": "o item selecionado",
|
||||
"selectedDocuments": "os {{count}} documentos selecionados",
|
||||
"selectedDocument": "o documento selecionado",
|
||||
"deleteDocumentFailedLog": "Falha ao eliminar o documento {{documentId}} com o código de estado {{statusCode}}",
|
||||
"deleteSuccessLog": "{{count}} documento(s) eliminado(s) com êxito",
|
||||
"deleteThrottledLog": "Falha ao eliminar {{count}} documento(s) devido ao erro \"Pedido demasiado grande\" (429). A tentar novamente...",
|
||||
"missingShardKeyLog": "Falha ao guardar o novo documento: chave de extensão do documento não definida",
|
||||
"filterTooltip": "Escreva um predicado de consulta ou escolha um da lista.",
|
||||
"loadMore": "Carregar mais",
|
||||
"documentEditor": "Editor de documentos",
|
||||
"savedFilters": "Filtros guardados",
|
||||
"defaultFilters": "Filtros predefinidos",
|
||||
"abort": "Abortar",
|
||||
"deletingDocuments": "A eliminar {{count}} documento(s)",
|
||||
"deletedDocumentsSuccess": "{{count}} documento(s) eliminado(s) com êxito.",
|
||||
"deleteAborted": "A eliminação de documento(s) foi abortada.",
|
||||
"failedToDeleteDocuments": "Falha ao eliminar {{count}} documento(s).",
|
||||
"requestTooLargeBase": "Alguns pedidos de eliminação falharam devido a uma exceção de \"Pedido demasiado grande\" (429)",
|
||||
"retriedSuccessfully": "mas foi efetuada uma nova tentativa com êxito.",
|
||||
"retryingNow": "A tentar novamente agora.",
|
||||
"increaseThroughputTip": "Para evitar esta situação no futuro, considere aumentar o débito no seu contentor ou base de dados.",
|
||||
"numberOfSelectedDocuments": "Número de documentos selecionados: {{count}}",
|
||||
"mongoFilterPlaceholder": "Escreva um predicado de consulta (por exemplo, {\"id\":\"foo\"}), escolha um da lista pendente ou deixe em branco para consultar todos os documentos.",
|
||||
"sqlFilterPlaceholder": "Escreva um predicado de consulta (por exemplo, WHERE c.id=\"1\"), escolha um da lista pendente ou deixe em branco para consultar todos os documentos.",
|
||||
"error": "Erro",
|
||||
"warning": "Aviso"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Executar Consulta",
|
||||
"executeSelection": "Executar Seleção",
|
||||
"saveQuery": "Guardar Consulta",
|
||||
"downloadQuery": "Transferir Consulta",
|
||||
"cancelQuery": "Cancelar consulta",
|
||||
"openSavedQueries": "Abrir Consultas Guardadas",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "Ver",
|
||||
"editingQuery": "A Editar Consulta"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ID de Procedimento Armazenado",
|
||||
"idPlaceholder": "Introduza o novo ID de procedimento armazenado",
|
||||
"idAriaLabel": "ID de procedimento armazenado",
|
||||
"body": "Corpo do Procedimento Armazenado",
|
||||
"bodyAriaLabel": "Corpo do procedimento armazenado",
|
||||
"successfulExecution": "Execução com êxito do procedimento armazenado",
|
||||
"resultAriaLabel": "Resultado da execução do procedimento armazenado",
|
||||
"logsAriaLabel": "Registos da execução do procedimento armazenado",
|
||||
"errors": "Erros:",
|
||||
"errorDetailsAriaLabel": "Ligação para detalhes do erro",
|
||||
"moreDetails": "Mais detalhes",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ID do acionador",
|
||||
"idPlaceholder": "Introduza o novo id do acionador",
|
||||
"type": "Tipo de Acionador",
|
||||
"operation": "Operação do Acionador",
|
||||
"body": "Corpo do Acionador",
|
||||
"bodyAriaLabel": "Corpo do acionador",
|
||||
"pre": "Pré",
|
||||
"post": "Publicar",
|
||||
"all": "Todos",
|
||||
"operationCreate": "Criar",
|
||||
"operationDelete": "Eliminar",
|
||||
"operationReplace": "Substituir"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ID de função definida pelo utilizador",
|
||||
"idPlaceholder": "Introduza o novo ID de função definida pelo utilizador",
|
||||
"body": "Corpo da Função Definida pelo Utilizador",
|
||||
"bodyAriaLabel": "Corpo da função definida pelo utilizador"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Alterações não guardadas",
|
||||
"changesWillBeLost": "As alterações serão perdidas. Deseja continuar?",
|
||||
"resolveConflictFailed": "Falha ao resolver o conflito",
|
||||
"deleteConflictFailed": "Falha ao eliminar o conflito",
|
||||
"refreshGridFailed": "Falha ao atualizar a grelha de documentos"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Eliminar {{databaseName}}",
|
||||
"warningMessage": "Aviso! A ação que está prestes a efetuar não pode ser anulada. Se continuar, este recurso e todos os seus recursos subordinados serão eliminados permanentemente.",
|
||||
"confirmPrompt": "Confirmar escrevendo o {{databaseName}} id (nome)",
|
||||
"inputMismatch": "O nome \"{{databaseName}}\" da entrada {{input}} não corresponde ao {{databaseName}} \"{{selectedId}}\" selecionado.",
|
||||
"feedbackTitle": "Ajude-nos a melhorar o Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual é a razão pela qual está a eliminar este {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Eliminar {{collectionName}}",
|
||||
"confirmPrompt": "Confirmar escrevendo o {{collectionName}} id",
|
||||
"inputMismatch": "O ID de entrada {{input}} não corresponde ao {{selectedId}} selecionado",
|
||||
"feedbackTitle": "Ajude-nos a melhorar o Azure Cosmos DB!",
|
||||
"feedbackReason": "Qual é a razão pela qual está a eliminar este {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Base de dados {{suffix}}",
|
||||
"databaseIdLabel": "ID da base de dados",
|
||||
"keyspaceIdLabel": "ID do espaço de chaves",
|
||||
"databaseIdPlaceholder": "Escreva um novo ID {{databaseLabel}} ",
|
||||
"databaseTooltip": "Um {{databaseLabel}} é um contentor lógico de um ou mais {{collectionsLabel}}",
|
||||
"shareThroughput": "Partilhar débito entre {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "O débito aprovisionado ao nível {{databaseLabel}} será partilhado por todos os {{collectionsLabel}} dentro do {{databaseLabel}}.",
|
||||
"greaterThanError": "Introduza um valor superior a {{minValue}} para o débito do autopilot",
|
||||
"acknowledgeSpendError": "Confirme os gastos estimados de {{period}} ."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Criar novo",
|
||||
"useExisting": "Utilizar existente",
|
||||
"databaseTooltip": "Uma base de dados é análoga a um espaço de nomes. É a unidade de gestão para um conjunto de {{collectionName}}.",
|
||||
"shareThroughput": "Partilhar débito entre {{collectionName}}",
|
||||
"shareThroughputTooltip": "O débito configurado ao nível da base de dados será partilhado por todos os {{collectionName}} na base de dados.",
|
||||
"collectionIdLabel": "id {{collectionName}}",
|
||||
"collectionIdTooltip": "Identificador único para o {{collectionName}} e utilizado para encaminhamento com base no id através do REST e de todos os SDKs.",
|
||||
"collectionIdPlaceholder": "por exemplo, 1{{collectionName}}",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, Exemplo {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Escolher ID {{databaseName}} existente",
|
||||
"existingDatabasePlaceholder": "Escolher ID {{databaseName}} existente",
|
||||
"indexing": "A indexar",
|
||||
"turnOnIndexing": "Ativar indexação",
|
||||
"automatic": "Automático",
|
||||
"turnOffIndexing": "Desativar indexação",
|
||||
"off": "Desativado",
|
||||
"sharding": "Sharding",
|
||||
"shardingTooltip": "As coleções fragmentadas dividem os seus dados por vários conjuntos de réplicas (shards) para alcançar escalabilidade ilimitada. As coleções fragmentadas exigem a escolha de uma chave shard (campo) para distribuir uniformemente os seus dados.",
|
||||
"unsharded": "Sem fragmentação",
|
||||
"unshardedLabel": "Sem fragmentação (limite de 20 GB)",
|
||||
"sharded": "Fragmentado",
|
||||
"addPartitionKey": "Adicionar chave de partição hierárquica",
|
||||
"hierarchicalPartitionKeyInfo": "Esta funcionalidade permite-lhe fazer a gestão dos seus dados com até três níveis de chaves para uma melhor distribuição dos dados. Requer .NET V3, Java V4 SDK ou pré-visualização do JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Aprovisionar débito dedicado para este {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Pode opcionalmente aprovisionar débito dedicado para um {{collectionName}} dentro de uma base de dados que tenha débito aprovisionado. Esta quantidade de débito dedicado não será partilhada com outros {{collectionNamePlural}} na base de dados e não conta para o débito que aprovisionou para a base de dados. Este valor de débito será faturado para além do montante de débito aprovisionado ao nível da base de dados.",
|
||||
"uniqueKeysPlaceholderMongo": "Caminhos separados por vírgulas, por exemplo,irstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Caminhos separados por vírgulas, por exemplo, /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Adicionar chave única",
|
||||
"enableAnalyticalStore": "Ativar armazenamento analítico",
|
||||
"disableAnalyticalStore": "Desativar armazenamento analítico",
|
||||
"on": "Ativado",
|
||||
"analyticalStoreSynapseLinkRequired": "O Azure Synapse Link é necessário para criar um arquivo analítico {{collectionName}}. Ative o Azure Synapse Link para esta conta do Cosmos DB.",
|
||||
"enable": "Ativar",
|
||||
"containerVectorPolicy": "Política de Vetor do Contentor",
|
||||
"containerFullTextSearchPolicy": "Política de Pesquisa de Texto Completo do Contentor",
|
||||
"advanced": "Avançado",
|
||||
"mongoIndexingTooltip": "O campo _id está indexado por predefinição. Criar um índice de caráter universal para todos os campos otimizará as consultas e é recomendado para desenvolvimento.",
|
||||
"createWildcardIndex": "Criar um Índice de Caráter Universal em todos os campos",
|
||||
"legacySdkCheckbox": "A minha aplicação utiliza uma versão mais antiga do Cosmos .NET ou Java SDK (.NET V1 ou Java V2)",
|
||||
"legacySdkInfo": "Para garantir a compatibilidade com SDKs mais antigos, o contentor criado utilizará um esquema de partição legado que suporta valores de chave de partição com tamanho até 101 bytes. Se esta opção estiver ativada, não poderá utilizar chaves de partição hierárquicas.",
|
||||
"indexingOnInfo": "Todas as propriedades nos seus documentos serão indexadas por predefinição para consultas flexíveis e eficientes.",
|
||||
"indexingOffInfo": "A indexação será desativada. Recomendado se não precisar de executar consultas ou se apenas realizar operações de valor-chave.",
|
||||
"indexingOffWarning": "Ao criar este contentor com a indexação desativada, não poderá efetuar alterações à política de indexação. As alterações de indexação só são permitidas num contentor com uma política de indexação.",
|
||||
"acknowledgeSpendErrorMonthly": "Confirme os gastos mensais estimados.",
|
||||
"acknowledgeSpendErrorDaily": "Confirme os gastos diários estimados.",
|
||||
"unshardedMaxRuError": "Coleções sem fragmentação suportam até 10 000 RUs",
|
||||
"acknowledgeShareThroughputError": "Confirme o custo estimado deste débito dedicado.",
|
||||
"vectorPolicyError": "Corrija os erros na política de vetor do contentor",
|
||||
"fullTextSearchPolicyError": "Corrija os erros na política de pesquisa de texto completo do contentor.",
|
||||
"addingSampleDataSet": "Adicionar conjunto de dados de amostra"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "A chave shard (campo) é utilizada para dividir os seus dados por vários conjuntos de réplicas (shards) para alcançar escalabilidade ilimitada. É fundamental escolher um campo que distribua uniformemente os seus dados.",
|
||||
"partitionKeyTooltip": "A {{partitionKeyName}} é utilizada para distribuir dados automaticamente pelas partições para escalabilidade. Escolha uma propriedade no seu documento JSON que tenha um grande intervalo de valores e distribua uniformemente o volume do pedido.",
|
||||
"partitionKeyTooltipSqlSuffix": " Para pequenas cargas de trabalho pesadas de leitura ou cargas de trabalho pesadas de qualquer tamanho, o id é muitas vezes uma boa escolha.",
|
||||
"shardKeyLabel": "Chave de shard",
|
||||
"partitionKeyLabel": "Chave de partição",
|
||||
"shardKeyPlaceholder": "por exemplo, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "por exemplo, /address",
|
||||
"partitionKeyPlaceholderFirst": "Obrigatório - primeira chave de partição, por exemplo, /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "segunda chave de partição, por exemplo, /UserId",
|
||||
"partitionKeyPlaceholderThird": "terceira chave de partição, por exemplo, /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "por exemplo /address/zipCode",
|
||||
"uniqueKeysTooltip": "As chaves exclusivas permitem aos programadores adicionar uma camada de integridade de dados à sua base de dados. Ao criar uma política de chave exclusiva quando um contentor é criado, garante a exclusividade de um ou mais valores por chave de partição.",
|
||||
"uniqueKeysLabel": "Chaves únicas",
|
||||
"analyticalStoreLabel": "Arquivo Analítico",
|
||||
"analyticalStoreTooltip": "Ative a capacidade do arquivo analítico para efetuar análises quase em tempo real nos seus dados operacionais, sem afetar o desempenho das cargas de trabalho transacionais.",
|
||||
"analyticalStoreDescription": "Ative a capacidade do arquivo analítico para efetuar análises quase em tempo real nos seus dados operacionais, sem afetar o desempenho das cargas de trabalho transacionais.",
|
||||
"vectorPolicyTooltip": "Descreva quaisquer propriedades nos seus dados que contenham vetores, para que possam estar disponíveis para consultas de similaridade."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Opções de Página",
|
||||
"pageOptionsDescription": "Escolha Personalizado para especificar uma quantidade fixa de resultados de consulta a mostrar, ou escolha Ilimitado para mostrar tantos resultados de consulta por página quanto possível.",
|
||||
"queryResultsPerPage": "Resultados da consulta por página",
|
||||
"queryResultsPerPageTooltip": "Introduza o número de resultados da consulta que devem ser mostrados por página.",
|
||||
"customQueryItemsPerPage": "Itens de consulta personalizados por página",
|
||||
"custom": "Personalizado",
|
||||
"unlimited": "Ilimitado",
|
||||
"entraIdRbac": "Ativar RBAC do Entra ID",
|
||||
"entraIdRbacDescription": "Escolha Automático para ativar automaticamente o RBAC do Entra ID. Verdadeiro/Falso para forçar a ativação/desativação do RBAC do Entra ID.",
|
||||
"true": "Verdadeiro",
|
||||
"false": "Falso",
|
||||
"regionSelection": "Seleção de Região",
|
||||
"regionSelectionDescription": "Altera a região que o Cliente Cosmos utiliza para aceder à conta.",
|
||||
"selectRegion": "Selecionar Região",
|
||||
"selectRegionTooltip": "Altera o ponto final da conta utilizado para efetuar operações de cliente.",
|
||||
"globalDefault": "Global (Predefinição)",
|
||||
"readWrite": "(Leitura/Escrita)",
|
||||
"read": "(Ler)",
|
||||
"queryTimeout": "Tempo Limite de Consulta",
|
||||
"queryTimeoutDescription": "Quando uma consulta atinge um limite de tempo especificado, será apresentado um pop-up com a opção de cancelar a consulta, a menos que o cancelamento automático tenha sido ativado.",
|
||||
"enableQueryTimeout": "Ativar tempo limite da consulta",
|
||||
"queryTimeoutMs": "Tempo limite da consulta (ms)",
|
||||
"automaticallyCancelQuery": "Cancelar automaticamente a consulta após o tempo limite",
|
||||
"ruLimit": "Limite de RU",
|
||||
"ruLimitDescription": "Se uma consulta exceder um limite de RU configurado, a consulta será abortada.",
|
||||
"enableRuLimit": "Ativar limite de RU",
|
||||
"ruLimitLabel": "Limite de RU (RU)",
|
||||
"defaultQueryResults": "Vista de Resultados da Consulta Predefinida",
|
||||
"defaultQueryResultsDescription": "Selecione a vista predefinida a utilizar ao apresentar os resultados da consulta.",
|
||||
"retrySettings": "Definições de Repetição",
|
||||
"retrySettingsDescription": "Política de repetição associada a pedidos limitados durante consultas do CosmosDB.",
|
||||
"maxRetryAttempts": "Máximo de tentativas de repetição",
|
||||
"maxRetryAttemptsTooltip": "Número máximo de tentativas a executar para um pedido. Valor predefinido 9.",
|
||||
"fixedRetryInterval": "Intervalo fixo de repetição (ms)",
|
||||
"fixedRetryIntervalTooltip": "Intervalo de repetição fixo em milissegundos para aguardar entre cada repetição, ignorando o retryAfter retornado como parte da resposta. O valor predefinido é 0 milissegundos.",
|
||||
"maxWaitTime": "Tempo máximo de espera (s)",
|
||||
"maxWaitTimeTooltip": "Tempo máximo de espera em segundos para aguardar por um pedido enquanto as tentativas estão a ocorrer. Valor predefinido 30 segundos.",
|
||||
"enableContainerPagination": "Ativar paginação de contentor",
|
||||
"enableContainerPaginationDescription": "Carregue 50 contentores de cada vez. Atualmente, os contentores não são carregados por ordem alfanumérica.",
|
||||
"enableCrossPartitionQuery": "Ativar consulta entre partições",
|
||||
"enableCrossPartitionQueryDescription": "Enviar mais do que um pedido durante a execução de uma consulta. É necessário mais do que um pedido se a consulta não estiver limitada a um único valor de chave de partição.",
|
||||
"maxDegreeOfParallelism": "Grau máximo de paralelismo",
|
||||
"maxDegreeOfParallelismDescription": "Obtém ou define o número de operações simultâneas executadas no lado do cliente durante a execução paralela da consulta. Um valor positivo da propriedade limita o número de operações simultâneas ao valor definido. Se estiver definido para menos de 0, o sistema decide automaticamente o número de operações simultâneas a executar.",
|
||||
"maxDegreeOfParallelismQuery": "Consultar até ao grau máximo de paralelismo.",
|
||||
"priorityLevel": "Nível de Prioridade",
|
||||
"priorityLevelDescription": "Define o nível de prioridade para pedidos de plano de dados do Data Explorer ao utilizar a Execução Baseada em Prioridade. Se \"Nenhum\" estiver selecionado, o Data Explorer não especificará o nível de prioridade e será utilizado o nível de prioridade predefinido do lado do servidor.",
|
||||
"displayGremlinQueryResults": "Apresentar resultados da consulta Gremlin como:",
|
||||
"displayGremlinQueryResultsDescription": "Selecione Graph para visualizar automaticamente os resultados da consulta como um Graph ou JSON para apresentar os resultados como JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Visualização automática do Graph",
|
||||
"enableSampleDatabase": "Ativar base de dados de exemplo",
|
||||
"enableSampleDatabaseDescription": "Esta é uma base de dados de exemplo e uma coleção com dados de produto sintéticos que pode utilizar para explorar com consultas NoSQL. Esta ação será apresentada como outra base de dados na IU do Data Explorer e é criada e mantida pela Microsoft sem custos para si.",
|
||||
"enableSampleDbAriaLabel": "Ativar base de dados de exemplo para exploração de consultas",
|
||||
"guidRepresentation": "Representação GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation no MongoDB refere-se à forma como os Identificadores Globais Únicos (GUIDs) são serializados e com serialização anulada quando armazenados em documentos BSON. Isto aplica-se a todas as operações de documentos.",
|
||||
"advancedSettings": "Definições Avançadas",
|
||||
"ignorePartitionKey": "Ignorar chave de partição na atualização do documento",
|
||||
"ignorePartitionKeyTooltip": "Se estiver assinalado, o valor da chave de partição não será utilizado para localizar o documento durante as operações de atualização. Utilize esta opção apenas se as atualizações de documentos estiverem a falhar devido a uma chave de partição anormal.",
|
||||
"clearHistory": "Limpar Histórico",
|
||||
"clearHistoryConfirm": "Tem a certeza de que pretende prosseguir?",
|
||||
"clearHistoryDescription": "Esta ação irá limpar todas as personalizações para esta conta neste browser, incluindo:",
|
||||
"clearHistoryTabLayout": "Repor o esquema de separadores personalizado, incluindo as posições do divisor.",
|
||||
"clearHistoryTableColumns": "Apagar as preferências das colunas da tabela, incluindo quaisquer colunas personalizadas.",
|
||||
"clearHistoryFilters": "Limpar o histórico de filtros",
|
||||
"clearHistoryRegion": "Repor seleção de região para global",
|
||||
"increaseValueBy1000": "Aumento de valor por 1000",
|
||||
"decreaseValueBy1000": "Diminuir valor em 1000",
|
||||
"none": "Nenhum",
|
||||
"low": "Baixa",
|
||||
"high": "Alto",
|
||||
"automatic": "Automático",
|
||||
"enhancedQueryControl": "Controlo de consulta avançado",
|
||||
"enableQueryControl": "Ativar controlo de consulta",
|
||||
"explorerVersion": "Versão do Explorador",
|
||||
"accountId": "ID de conta",
|
||||
"sessionId": "ID da Sessão",
|
||||
"popupsDisabledError": "Não foi possível estabelecer autorização para esta conta, porque os pop-ups estão desativados no browser.\nAtive os pop-ups para este site e clique no botão \"Iniciar sessão para Entra ID\".",
|
||||
"failedToAcquireTokenError": "Falha ao adquirir o token de autorização automaticamente. Clique no botão \"Iniciar sessão para Entra ID\" para ativar as operações RBAC do Entra ID."
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Guardar Consulta",
|
||||
"setupCostMessage": "Por motivos de conformidade, guardamos consultas num contentor na sua conta Azure Cosmos, numa base de dados separada chamada \"{{databaseName}}\". Para continuar, precisamos de criar um contentor na sua conta, com um custo adicional estimado de 0,77 USD por dia.",
|
||||
"completeSetup": "Concluir configuração",
|
||||
"noQueryNameError": "Nenhum nome de consulta especificado",
|
||||
"invalidQueryContentError": "Conteúdo de consulta inválido especificado",
|
||||
"failedToSaveQueryError": "Falha ao guardar consulta {{queryName}}",
|
||||
"failedToSetupContainerError": "Falha ao configurar um contentor para consultas guardadas",
|
||||
"accountNotSetupError": "Falha ao guardar a consulta: conta não configurada para guardar consultas.",
|
||||
"name": "Nome"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Nenhum ficheiro especificado",
|
||||
"failedToLoadQueryError": "Falha ao carregar a consulta",
|
||||
"failedToLoadQueryFromFileError": "Falha ao carregar a consulta a partir do ficheiro {{fileName}}",
|
||||
"selectFilesToOpen": "Selecionar um documento de consulta",
|
||||
"browseFiles": "Procurar"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Introduza os parâmetros de entrada (se existirem)",
|
||||
"key": "Chave",
|
||||
"param": "Parâmetro",
|
||||
"partitionKeyValue": "Valor da chave de partição",
|
||||
"value": "Valor",
|
||||
"addNewParam": "Adicionar Novo Parâmetro",
|
||||
"addParam": "Adicionar parâmetro",
|
||||
"deleteParam": "Eliminar parâmetro",
|
||||
"invalidParamError": "Parâmetro inválido especificado: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Parâmetro inválido especificado: {{invalidParam}} não é um valor literal válido.",
|
||||
"stringType": "Cadeia",
|
||||
"customType": "Personalizado"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Não foram especificados ficheiros. Introduza pelo menos um ficheiro.",
|
||||
"selectJsonFiles": "Selecionar Ficheiros JSON",
|
||||
"selectJsonFilesTooltip": "Selecione um ou mais ficheiros JSON para carregar. Cada ficheiro pode conter um único documento JSON ou um conjunto de documentos JSON. O tamanho combinado de todos os ficheiros numa operação individual de carregamento deve ser inferior a 2 MB. Pode realizar várias operações de carregamento para conjuntos de dados maiores.",
|
||||
"fileNameColumn": "NOME DO FICHEIRO",
|
||||
"statusColumn": "ESTADO",
|
||||
"uploadStatus": "{{numSucceeded}} criados, {{numThrottled}} limitados, {{numFailed}} erros",
|
||||
"uploadedFiles": "Ficheiros carregados"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Falha ao copiar {{name}} para {{destination}}",
|
||||
"uploadFailedError": "Não foi possível carregar {{name}}",
|
||||
"location": "Localização",
|
||||
"locationAriaLabel": "Localização",
|
||||
"selectLocation": "Selecione uma localização de bloco de notas para copiar",
|
||||
"name": "Nome"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Falha ao publicar {{notebookName}} na galeria",
|
||||
"publishDescription": "Quando publicado, este bloco de notas será apresentado na galeria pública de blocos de notas do Azure Cosmos DB. Certifique-se de que removeu quaisquer dados confidenciais ou resultados antes de publicar.",
|
||||
"publishPrompt": "Pretende publicar e partilhar \"{{name}}\" na galeria?",
|
||||
"coverImage": "Imagem de capa",
|
||||
"coverImageUrl": "URL da imagem de capa",
|
||||
"name": "Nome",
|
||||
"description": "Descrição",
|
||||
"tags": "Sinalizadores",
|
||||
"tagsPlaceholder": "Etiqueta opcional 1, Etiqueta opcional 2",
|
||||
"preview": "Pré-visualização",
|
||||
"urlType": "URL",
|
||||
"customImage": "Imagem Personalizada",
|
||||
"takeScreenshot": "Tirar Captura de Ecrã",
|
||||
"useFirstDisplayOutput": "Utilizar Saída do Primeiro Ecrã",
|
||||
"failedToCaptureOutput": "Falha ao capturar a primeira saída",
|
||||
"outputDoesNotExist": "A saída não existe para nenhuma das células.",
|
||||
"failedToConvertError": "Falha ao converter {{fileName}} para o formato base64",
|
||||
"failedToUploadError": "Não foi possível carregar {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Falha ao iniciar a tarefa de transferência de dados",
|
||||
"suboptimalPartitionKeyError": "Aviso: O sistema detetou que a sua coleção pode estar a utilizar uma chave de partição não ideal.",
|
||||
"description": "Ao alterar a chave de partição de um contentor, terá de criar um contentor de destino com a chave de partição correta. Também pode selecionar um contentor de destino existente.",
|
||||
"sourceContainerId": "ID {{collectionName}} de origem",
|
||||
"destinationContainerId": "ID {{collectionName}} de Destino",
|
||||
"collectionIdTooltip": "Identificador único para o {{collectionName}} e utilizado para encaminhamento com base no id através do REST e de todos os SDKs.",
|
||||
"collectionIdPlaceholder": "por exemplo, 1{{collectionName}}",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID, Exemplo {{collectionName}}1",
|
||||
"existingContainers": "Contentores existentes",
|
||||
"partitionKeyWarning": "O contentor de destino não pode já existir. O Data Explorer criará um novo contentor de destino para si."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Nome do espaço de chaves",
|
||||
"keyspaceTooltip": "Selecione um espaço de chaves existente ou introduza um novo ID de espaço de chaves.",
|
||||
"tableIdLabel": "Introduza o comando CQL para criar a tabela.",
|
||||
"enterTableId": "Introduzir o Id de tabela",
|
||||
"tableSchemaAriaLabel": "Esquema da tabela",
|
||||
"provisionDedicatedThroughput": "Aprovisionar débito dedicado para esta tabela",
|
||||
"provisionDedicatedThroughputTooltip": "Pode opcionalmente aprovisionar débito dedicado para uma tabela dentro de um espaço de chaves que tenha débito aprovisionado. Esta quantidade de débito dedicado não será partilhada com outras tabelas no espaço de chaves e não conta para o débito que aprovisionou para o espaço de chaves. Este valor de débito será faturado para além do montante de débito aprovisionado ao nível do espaço de chaves."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Adicionar Propriedade",
|
||||
"addRow": "Adicionar Linha",
|
||||
"addEntity": "Adicionar Entidade",
|
||||
"back": "anterior",
|
||||
"nullFieldsWarning": "Aviso: os campos nulos não serão apresentados para edição.",
|
||||
"propertyEmptyError": "{{property}} pode estar vazio. Introduza um valor para {{property}}",
|
||||
"whitespaceError": "{{property}} não pode ter espaços em branco. Introduza um valor para {{property}} sem espaços em branco.",
|
||||
"propertyTypeEmptyError": "O tipo de propriedade não pode estar vazio. Selecione um tipo na lista pendente para a propriedade {{property}}."
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Selecione as colunas que quer consultar.",
|
||||
"availableColumns": "Colunas Disponíveis"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Selecione as colunas a apresentar na vista dos itens no seu contentor.",
|
||||
"searchFields": "Campos de pesquisa",
|
||||
"reset": "Repor",
|
||||
"partitionKeySuffix": " (chave de partição)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Adicionar Propriedade"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "ID do contentor de índice secundário global",
|
||||
"globalSecondaryIndexIdPlaceholder": "por exemplo, indexbyEmailId",
|
||||
"projectionQuery": "Consulta de projeção",
|
||||
"projectionQueryPlaceholder": "SELECIONAR c.email, c.accountId DE c",
|
||||
"projectionQueryTooltip": "Saiba mais sobre como definir índices secundários globais.",
|
||||
"disabledTitle": "Já está a ser criado um índice secundário global. Aguarde que seja concluído antes de criar outro."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "A entrada {{input}} não corresponde ao {{selectedId}} selecionado"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Informação",
|
||||
"moreDetails": "Mais detalhes"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Отправить",
|
||||
"connect": "Подключить",
|
||||
"remove": "Удалить",
|
||||
"load": "Загрузить",
|
||||
"publish": "Опубликовать",
|
||||
"browse": "Обзор",
|
||||
"increaseValueBy1": "Увеличить значение на 1",
|
||||
"decreaseValueBy1": "Уменьшить значение на 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Не удалось создать контейнер: {{error}}",
|
||||
"errorImportData": "Не удалось импортировать данные: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Новый {{containerName}}",
|
||||
"restoreContainer": "Восстановить {{containerName}}",
|
||||
"deleteDatabase": "Удалить {{databaseName}}",
|
||||
"deleteContainer": "Удалить {{containerName}}",
|
||||
"newSqlQuery": "Новый SQL-запрос",
|
||||
"newQuery": "Новый запрос",
|
||||
"openMongoShell": "Открыть оболочку Mongo",
|
||||
"newShell": "Новая оболочка",
|
||||
"openCassandraShell": "Открыть оболочку Cassandra",
|
||||
"newStoredProcedure": "Новая хранимая процедура",
|
||||
"newUdf": "Новая UDF",
|
||||
"newTrigger": "Новый триггер",
|
||||
"deleteStoredProcedure": "Удалить хранимую процедуру",
|
||||
"deleteTrigger": "Удалить триггер",
|
||||
"deleteUdf": "Удалить пользовательскую функцию"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Новый элемент",
|
||||
"newDocument": "Новый документ",
|
||||
"uploadItem": "Передать элемент",
|
||||
"applyFilter": "Применить фильтр",
|
||||
"unsavedChanges": "Несохраненные изменения",
|
||||
"unsavedChangesMessage": "Ваши несохраненные изменения будут потеряны. Хотите продолжить?",
|
||||
"createDocumentFailed": "Не удалось создать документ",
|
||||
"updateDocumentFailed": "Не удалось обновить документ",
|
||||
"documentDeleted": "Документ успешно удален.",
|
||||
"deleteDocumentDialogTitle": "Удалить документ",
|
||||
"deleteDocumentsDialogTitle": "Удалить документы",
|
||||
"throttlingError": "Некоторые документы не удалось удалить из-за ошибки ограничения скорости. Попробуйте еще раз чуть позже. Чтобы избежать этого в будущем, рассмотрите возможность увеличения пропускной способности контейнера или базы данных.",
|
||||
"deleteFailed": "Удалить один или несколько ({{error}}) документов не удалось",
|
||||
"missingShardProperty": "В документе отсутствует свойство экстента: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Не удалось обновить сетку документов",
|
||||
"confirmDelete": "Вы действительно хотите удалить {{documentName}}?",
|
||||
"confirmDeleteTitle": "Подтвердить удаление",
|
||||
"selectedItems": "выделенные элементы ({{count}})",
|
||||
"selectedItem": "выбранный элемент",
|
||||
"selectedDocuments": "выбранные документы ({{count}})",
|
||||
"selectedDocument": "выбранный документ",
|
||||
"deleteDocumentFailedLog": "Не удалось удалить документ {{documentId}}, код состояния {{statusCode}}",
|
||||
"deleteSuccessLog": "Один или несколько ({{count}}) документов успешно удалены",
|
||||
"deleteThrottledLog": "Не удалось удалить один или несколько документов ({{count}}) из-за ошибки \"Слишком большой запрос\" (429). Выполняется повторная попытка...",
|
||||
"missingShardKeyLog": "Не удалось сохранить новый документ: не определён ключ экстента документа",
|
||||
"filterTooltip": "Введите предикат запроса или выберите его из списка.",
|
||||
"loadMore": "Загрузить еще",
|
||||
"documentEditor": "Редактор документов",
|
||||
"savedFilters": "Сохраненные фильтры",
|
||||
"defaultFilters": "Фильтры по умолчанию",
|
||||
"abort": "Прервать",
|
||||
"deletingDocuments": "Выполняется удаление одного или нескольких ({{count}}) документов",
|
||||
"deletedDocumentsSuccess": "Один или несколько ({{count}}) документов успешно удалены.",
|
||||
"deleteAborted": "Удаление одного или нескольких документов прервано.",
|
||||
"failedToDeleteDocuments": "Не удалось удалить один или несколько ({{count}}) документов.",
|
||||
"requestTooLargeBase": "Некоторые запросы на удаление не выполнены из-за исключения \"Запрос слишком большой\" (429)",
|
||||
"retriedSuccessfully": "но повторные попытки прошли успешно.",
|
||||
"retryingNow": "Выполняется повторная попытка.",
|
||||
"increaseThroughputTip": "Чтобы избежать этого в будущем, рассмотрите возможность увеличения пропускной способности контейнера или базы данных.",
|
||||
"numberOfSelectedDocuments": "Количество выбранных документов: {{count}}",
|
||||
"mongoFilterPlaceholder": "Введите предикат запроса (например, {\"id\":\"foo\"}), выберите его из раскрывающегося списка или оставьте это поле пустым, чтобы запросить все документы.",
|
||||
"sqlFilterPlaceholder": "Введите предикат запроса (например, WHERE c.id=\"1\"), выберите его из раскрывающегося списка или оставьте это поле пустым, чтобы запросить все документы.",
|
||||
"error": "Ошибка",
|
||||
"warning": "Предупреждение"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Выполнить запрос",
|
||||
"executeSelection": "Выполнить выделенное",
|
||||
"saveQuery": "Сохранить запрос",
|
||||
"downloadQuery": "Скачать запрос",
|
||||
"cancelQuery": "Отменить запрос",
|
||||
"openSavedQueries": "Открыть сохраненные запросы",
|
||||
"vertical": "Вертикально",
|
||||
"horizontal": "Горизонтально",
|
||||
"view": "Просмотр",
|
||||
"editingQuery": "Выполняется редактирование запроса"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "ИД хранимой процедуры",
|
||||
"idPlaceholder": "Введите новый идентификатор хранимой процедуры",
|
||||
"idAriaLabel": "ИД хранимой процедуры",
|
||||
"body": "Тело хранимой процедуры",
|
||||
"bodyAriaLabel": "Тело хранимой процедуры",
|
||||
"successfulExecution": "Хранимая процедура выполнена успешно",
|
||||
"resultAriaLabel": "Результат выполнения хранимой процедуры",
|
||||
"logsAriaLabel": "Журналы выполнения хранимой процедуры",
|
||||
"errors": "Ошибки:",
|
||||
"errorDetailsAriaLabel": "Ссылка на сведения об ошибке",
|
||||
"moreDetails": "Больше сведений",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "ИД триггера",
|
||||
"idPlaceholder": "Введите новый идентификатор триггера",
|
||||
"type": "Тип триггера",
|
||||
"operation": "Операция триггера",
|
||||
"body": "Тело триггера",
|
||||
"bodyAriaLabel": "Тело триггера",
|
||||
"pre": "До",
|
||||
"post": "Опубликовать",
|
||||
"all": "Все",
|
||||
"operationCreate": "Создать",
|
||||
"operationDelete": "Удалить",
|
||||
"operationReplace": "Заменить"
|
||||
},
|
||||
"udf": {
|
||||
"id": "ИД определяемой пользователем функции",
|
||||
"idPlaceholder": "Введите новый идентификатор определяемой пользователем функции",
|
||||
"body": "Тело определенной пользователем функции",
|
||||
"bodyAriaLabel": "Тело определенной пользователем функции"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Несохраненные изменения",
|
||||
"changesWillBeLost": "Изменения будут потеряны. Хотите продолжить?",
|
||||
"resolveConflictFailed": "Не удалось разрешить конфликт",
|
||||
"deleteConflictFailed": "Не удалось устранить конфликт",
|
||||
"refreshGridFailed": "Не удалось обновить сетку документов"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Оболочка Mongo"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Удалить {{databaseName}}",
|
||||
"warningMessage": "Предупреждение! Действие, которое вы собираетесь предпринять, невозможно отменить. Если вы продолжите, ресурс и все его дочерние ресурсы будут удалены без возможности восстановления.",
|
||||
"confirmPrompt": "Подтвердите, введя идентификатор {{databaseName}} (имя)",
|
||||
"inputMismatch": "Введённое имя базы данных {{databaseName}} \"{{input}}\" не соответствует выбранному {{databaseName}} \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Помогите нам улучшить Azure Cosmos DB!",
|
||||
"feedbackReason": "Какова причина удаления этой {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Удалить {{collectionName}}",
|
||||
"confirmPrompt": "Подтвердите, введя идентификатор {{collectionName}}",
|
||||
"inputMismatch": "Введённое имя базы данных {{input}} не соответствует выбранному {{selectedId}}",
|
||||
"feedbackTitle": "Помогите нам улучшить Azure Cosmos DB!",
|
||||
"feedbackReason": "Какова причина удаления этой {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "База данных {{suffix}}",
|
||||
"databaseIdLabel": "Идентификатор базы данных",
|
||||
"keyspaceIdLabel": "ИД ключевого пространства",
|
||||
"databaseIdPlaceholder": "Введите новый идентификатор {{databaseLabel}}",
|
||||
"databaseTooltip": "{{databaseLabel}} — логический контейнер с одним или несколькими {{collectionsLabel}}",
|
||||
"shareThroughput": "Делиться пропускной способностью в пределах {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Пропускная способность, настроенная на уровне {{databaseLabel}}, будет совместно использоваться всеми {{collectionsLabel}} в {{databaseLabel}}.",
|
||||
"greaterThanError": "Введите значение, большее {{minValue}}, для пропускной способности автопилота",
|
||||
"acknowledgeSpendError": "Подтвердите, что осведомлены о смете ежемесячных расходов за {{period}}."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Создать новую",
|
||||
"useExisting": "Использовать существующие",
|
||||
"databaseTooltip": "База данных аналогична пространству имён. Это единица управления для набора {{collectionName}}.",
|
||||
"shareThroughput": "Делиться пропускной способностью в пределах {{collectionName}}",
|
||||
"shareThroughputTooltip": "Пропускная способность, настроенная на уровне базы данных, будет совместно использоваться всеми {{collectionName}} в базе данных.",
|
||||
"collectionIdLabel": "ИД {{collectionName}}",
|
||||
"collectionIdTooltip": "Уникальный идентификатор {{collectionName}}, который используется для маршрутизации на основе идентификаторов в REST и всех пакетах SDK.",
|
||||
"collectionIdPlaceholder": "например, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ИД, пример {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Выберите существующий идентификатор {{databaseName}}",
|
||||
"existingDatabasePlaceholder": "Выберите существующий идентификатор {{databaseName}}",
|
||||
"indexing": "Индексирование",
|
||||
"turnOnIndexing": "Включить индексирование",
|
||||
"automatic": "Автоматически",
|
||||
"turnOffIndexing": "Отключить индексирование",
|
||||
"off": "Откл.",
|
||||
"sharding": "Экстентирование",
|
||||
"shardingTooltip": "Экстентированные коллекции распределяют ваши данные по множеству наборов реплик (экстентов) для обеспечения неограниченного масштабирования. Для экстентирования коллекций необходимо выбрать ключ экстента (поле), с помощью которого данные будут распределяться равномерно.",
|
||||
"unsharded": "Неэкстентированный",
|
||||
"unshardedLabel": "Неэкстентированный (лимит 20 ГБ)",
|
||||
"sharded": "Экстентированный",
|
||||
"addPartitionKey": "Добавить иерархический ключ раздела",
|
||||
"hierarchicalPartitionKeyInfo": "Эта функция позволяет секционировать данные с помощью ключей на нескольких уровнях (до трёх) для более равномерного распределения. Требуется SDK .NET V3, Java V4 или предварительная версия SDK JavaScript V3.",
|
||||
"provisionDedicatedThroughput": "Подготовить выделенную пропускную способность для этого {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "При необходимости можно подготовить выделенную пропускную способность для {{collectionName}} в базе данных, где уже подготовлена пропускная способность. Эта выделенная пропускная способность не будет использоваться совместно с другими {{collectionNamePlural}} в базе данных и не учитывается в общей пропускной способности, выделенной для базы данных. Оплата за эту пропускную способность будет взиматься дополнительно к сумме, выделенной на уровне базы данных.",
|
||||
"uniqueKeysPlaceholderMongo": "Пути, разделённые запятыми, например firstName,address/zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Пути, разделённые запятыми, например /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Добавить уникальный ключ",
|
||||
"enableAnalyticalStore": "Включить аналитическое хранилище",
|
||||
"disableAnalyticalStore": "Отключить аналитическое хранилище",
|
||||
"on": "Вкл.",
|
||||
"analyticalStoreSynapseLinkRequired": "Для создания аналитического хранилища {{collectionName}} требуется Azure Synapse Link. Включите Azure Synapse Link для этой учётной записи Cosmos DB.",
|
||||
"enable": "Включить",
|
||||
"containerVectorPolicy": "Политика вектора контейнера",
|
||||
"containerFullTextSearchPolicy": "Политика полнотекстового поиска в контейнере",
|
||||
"advanced": "Расширенная",
|
||||
"mongoIndexingTooltip": "Поле _id индексируется по умолчанию. Создание индекса с подстановочными знаками для всех полей оптимизирует запросы и рекомендуется для разработки.",
|
||||
"createWildcardIndex": "Создать индекс с подстановочными знаками для всех полей",
|
||||
"legacySdkCheckbox": "Моё приложение использует устаревшую версию SDK Cosmos .NET или Java (.NET V1 или Java V2)",
|
||||
"legacySdkInfo": "Чтобы обеспечить совместимость со старыми SDK, созданный контейнер будет использовать устаревшую схему секционирования, которая поддерживает значения ключа секционирования размером не более 101 байта. Если эта возможность включена, использование иерархических ключей секционирования будет недоступно.",
|
||||
"indexingOnInfo": "По умолчанию все свойства в документах будут индексироваться для гибкости и эффективности запросов.",
|
||||
"indexingOffInfo": "Индексация будет отключена. Рекомендуется, если не требуется выполнять запросы или используются только операции с ключами.",
|
||||
"indexingOffWarning": "Если создать контейнер с отключённым индексированием, изменения политики индексирования будут недоступны. Изменения разрешены только для контейнеров с включённой политикой индексирования.",
|
||||
"acknowledgeSpendErrorMonthly": "Подтвердите, что осведомлены о смете ежемесячных расходов.",
|
||||
"acknowledgeSpendErrorDaily": "Подтвердите, что осведомлены о смете ежемесячных расходов за день.",
|
||||
"unshardedMaxRuError": "Неэкстентированные коллекции поддерживают до 10 000 ЕЗ",
|
||||
"acknowledgeShareThroughputError": "Подтвердите, что осведомлены о сметной стоимости этой выделенной пропускной способности.",
|
||||
"vectorPolicyError": "Исправьте ошибки в политике вектора контейнера",
|
||||
"fullTextSearchPolicyError": "Исправьте ошибки в политике полнотекстового поиска контейнера",
|
||||
"addingSampleDataSet": "Выполняется добавление примера набора данных"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Ключ экстента (поле) используется для распределения ваших данных по множеству наборов реплик (экстентов) для обеспечения неограниченного масштабирования. Важно выбрать поле, по которому данные распределяются равномерно.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} используется для автоматического распределения данных между разделами для масштабируемости. Выберите в документе JSON свойство, которое имеет широкий диапазон значений и равномерно распределяет объем запросов.",
|
||||
"partitionKeyTooltipSqlSuffix": " Для небольших рабочих нагрузок с интенсивным чтением или любых по объёму с интенсивной записью идентификатор часто является хорошим выбором.",
|
||||
"shardKeyLabel": "Ключ экстента",
|
||||
"partitionKeyLabel": "Ключ раздела",
|
||||
"shardKeyPlaceholder": "например, categoryId",
|
||||
"partitionKeyPlaceholderDefault": "например, /address",
|
||||
"partitionKeyPlaceholderFirst": "Обязательно: первый ключ раздела, например /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "второй ключ раздела, например /UserId",
|
||||
"partitionKeyPlaceholderThird": "третий ключ раздела, например /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "например, /address/zipCode",
|
||||
"uniqueKeysTooltip": "Уникальные ключи позволяют разработчикам добавить дополнительный слой целостности данных в базе. Создавая уникальную политику ключей при создании контейнера, вы обеспечиваете уникальность одного или нескольких значений на каждый ключ секционирования.",
|
||||
"uniqueKeysLabel": "Уникальные ключи",
|
||||
"analyticalStoreLabel": "Аналитическое хранилище",
|
||||
"analyticalStoreTooltip": "Включите для аналитического хранилища возможность выполнения анализа операционных данных почти в реальном времени без снижения производительности транзакционных рабочих нагрузок.",
|
||||
"analyticalStoreDescription": "Включите для аналитического хранилища возможность выполнения анализа операционных данных почти в реальном времени без снижения производительности транзакционных рабочих нагрузок.",
|
||||
"vectorPolicyTooltip": "Опишите все свойства данных, содержащих векторы, чтобы сделать их доступными для запросов на поиск по сходству."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Параметры страницы",
|
||||
"pageOptionsDescription": "Выберите \"Настраиваемое\", чтобы указать, что нужно выводить фиксированное количество результатов запроса на страницу, или \"Без ограничений\", чтобы показывать неограниченное количество результатов на страницу.",
|
||||
"queryResultsPerPage": "Результатов запроса на страницу",
|
||||
"queryResultsPerPageTooltip": "Укажите количество результатов запроса на страницу.",
|
||||
"customQueryItemsPerPage": "Количество элементов пользовательских запросов на странице",
|
||||
"custom": "Пользовательская",
|
||||
"unlimited": "Без ограничений",
|
||||
"entraIdRbac": "Включить RBAC Entra ID",
|
||||
"entraIdRbacDescription": "Выберите \"Автоматически\", чтобы включить RBAC для Entra ID автоматически. Используйте значения True или False, чтобы принудительно включить или отключить RBAC для Entra ID.",
|
||||
"true": "Истина",
|
||||
"false": "Ложь",
|
||||
"regionSelection": "Выбор региона",
|
||||
"regionSelectionDescription": "Изменяет регион, который клиент Cosmos использует для доступа к учетной записи.",
|
||||
"selectRegion": "Выбрать регион",
|
||||
"selectRegionTooltip": "Изменяет конечную точку учётной записи, используемую для выполнения клиентских операций.",
|
||||
"globalDefault": "Глобальное (по умолчанию)",
|
||||
"readWrite": "(Чтение/запись)",
|
||||
"read": "(Чтение)",
|
||||
"queryTimeout": "Время ожидания запроса",
|
||||
"queryTimeoutDescription": "Когда запрос достигает заданного лимита времени, появляется всплывающее окно с возможностью отмены запроса, если автоматическая отмена не включена.",
|
||||
"enableQueryTimeout": "Включить время ожидания запроса",
|
||||
"queryTimeoutMs": "Время ожидания запроса (мс)",
|
||||
"automaticallyCancelQuery": "Автоматически отменять запрос по истечении времени ожидания",
|
||||
"ruLimit": "Лимит ЕЗ",
|
||||
"ruLimitDescription": "Если запрос превышает настроенный лимит RU, его выполнение будет прервано.",
|
||||
"enableRuLimit": "Включить ограничение ЕЗ",
|
||||
"ruLimitLabel": "Лимит ЕЗ (ЕЗ)",
|
||||
"defaultQueryResults": "Представление результатов запроса по умолчанию",
|
||||
"defaultQueryResultsDescription": "Выберите представление по умолчанию, которое будет использоваться для вывода результатов запроса.",
|
||||
"retrySettings": "Настройки повторной попытки",
|
||||
"retrySettingsDescription": "Политика повторных попыток, связанная с отклонением запросов для регулирования пропускной способности во время запросов CosmosDB.",
|
||||
"maxRetryAttempts": "Максимальное число повторных попыток",
|
||||
"maxRetryAttemptsTooltip": "Максимальное число повторных попыток выполнения запроса. Значение по умолчанию: 9.",
|
||||
"fixedRetryInterval": "Фиксированный интервал повторных попыток (мс)",
|
||||
"fixedRetryIntervalTooltip": "Фиксированный интервал повторных попыток в миллисекундах, в течение которого система будет выжидать, прежде чем выполнить повторную попытку. Значение retryAfter, возвращаемое в ответе, игнорируется. Значение по умолчанию — 0 миллисекунд.",
|
||||
"maxWaitTime": "Максимальное время ожидания (с)",
|
||||
"maxWaitTimeTooltip": "Максимальное время ожидания запроса при повторных попытках (в секундах). Значение по умолчанию — 30 секунд.",
|
||||
"enableContainerPagination": "Включить разбивку контейнера на страницы",
|
||||
"enableContainerPaginationDescription": "Загружать по 50 контейнеров за раз. На данный момент контейнеры не загружаются в алфавитно-цифровом порядке.",
|
||||
"enableCrossPartitionQuery": "Включить запросы с областью в несколько разделов",
|
||||
"enableCrossPartitionQueryDescription": "Отправляйте несколько запросов при выполнении запроса. Несколько запросов необходимы, если область запроса не ограничена одним значением ключа секционирования.",
|
||||
"maxDegreeOfParallelism": "Максимальная степень параллелизма",
|
||||
"maxDegreeOfParallelismDescription": "Получает или задаёт количество одновременных операций, выполняемых на стороне клиента при параллельном выполнении запроса. Положительное значение этого свойства действует как лимит, ограничивающий число одновременных операций. Если значение меньше 0, система самостоятельно определяет количество одновременно выполняемых операций.",
|
||||
"maxDegreeOfParallelismQuery": "Выполнить запрос с максимальной степенью параллелизма.",
|
||||
"priorityLevel": "Уровень приоритета",
|
||||
"priorityLevelDescription": "Задаёт уровень приоритета для запросов плоскости данных из Обозревателя при выполнении на основе приоритетов. Если выбрано значение \"Нет\", Обозреватель не указывает уровень приоритета и используется уровень, заданный по умолчанию на сервере.",
|
||||
"displayGremlinQueryResults": "Показывать результаты запроса Gremlin как:",
|
||||
"displayGremlinQueryResultsDescription": "Выберите Graph для автоматической визуализации результатов запроса в виде графа или JSON для вывода результатов в формате JSON.",
|
||||
"graph": "Граф",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Автоматическая визуализация графа",
|
||||
"enableSampleDatabase": "Включить пример базы данных",
|
||||
"enableSampleDatabaseDescription": "Это пример базы данных и коллекции с синтетическими данными о продуктах, которые можно использовать для изучения запросов NoSQL. Эта база данных появится как отдельная в интерфейсе Обозревателя. Microsoft создаёт и поддерживает ее бесплатно.",
|
||||
"enableSampleDbAriaLabel": "Включить пример базы данных для изучения запросов",
|
||||
"guidRepresentation": "Представление GUID",
|
||||
"guidRepresentationDescription": "GuidRepresentation в MongoDB определяет способ сериализации и десериализации глобальных уникальных идентификаторов (GUID) при хранении в документах BSON. Эта настройка применяется ко всем операциям с документами.",
|
||||
"advancedSettings": "Расширенные настройки",
|
||||
"ignorePartitionKey": "Игнорировать ключ раздела при обновлении документа",
|
||||
"ignorePartitionKeyTooltip": "Если установлен этот флажок, значение ключа раздела не будет использоваться для поиска документа во время операций обновления. Используйте только в случаях, когда обновления документа не удается выполнить из-за аномального ключа раздела.",
|
||||
"clearHistory": "Очистить историю",
|
||||
"clearHistoryConfirm": "Вы действительно хотите продолжить?",
|
||||
"clearHistoryDescription": "Это действие сбросит все пользовательские настройки для этой учётной записи в этом браузере, в том числе:",
|
||||
"clearHistoryTabLayout": "Сбросить настраиваемую компоновку вкладки, включая позиции разделителей",
|
||||
"clearHistoryTableColumns": "Удалите настройки столбцов таблицы, в том числе все пользовательские столбцы",
|
||||
"clearHistoryFilters": "Очистить историю фильтров",
|
||||
"clearHistoryRegion": "Сбросить выбор региона до глобального",
|
||||
"increaseValueBy1000": "Увеличить значение на 1000",
|
||||
"decreaseValueBy1000": "Уменьшить значение на 1000",
|
||||
"none": "Нет",
|
||||
"low": "Низкий",
|
||||
"high": "Высокое",
|
||||
"automatic": "Автоматически",
|
||||
"enhancedQueryControl": "Расширенное управление запросами",
|
||||
"enableQueryControl": "Включить управление запросами",
|
||||
"explorerVersion": "Версия обозревателя",
|
||||
"accountId": "Идентификатор учетной записи",
|
||||
"sessionId": "ИД сеанса",
|
||||
"popupsDisabledError": "Не удалось установить авторизацию для этой учетной записи из-за отключения всплывающих окон в браузере.\nВключите всплывающие окна для этого сайта и нажмите кнопку \"Вход для Entra ID\"",
|
||||
"failedToAcquireTokenError": "Не удалось получить маркер авторизации от имени субъекта-службы. Нажмите кнопку \"Вход для Entra ID\", чтобы включить операции RBAC для Entra ID"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Сохранить запрос",
|
||||
"setupCostMessage": "Для обеспечения соответствия требованиям мы сохраняем запросы в контейнере вашей учётной записи Azure Cosmos в отдельной базе данных с именем \"{{databaseName}}\". Для продолжения работы нам нужно создать контейнер в вашей учётной записи. Сметная дополнительная стоимость: 0,77 доллара США (USD) в день.",
|
||||
"completeSetup": "Завершить настройку",
|
||||
"noQueryNameError": "Имя запроса не указано",
|
||||
"invalidQueryContentError": "Указано недопустимое содержимое запроса",
|
||||
"failedToSaveQueryError": "Не удалось сохранить запрос {{queryName}}",
|
||||
"failedToSetupContainerError": "Не удалось настроить контейнер для сохранённых запросов",
|
||||
"accountNotSetupError": "Не удалось сохранить запрос: учётная запись не настроена для сохранения запросов",
|
||||
"name": "Имя"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Файл не указан",
|
||||
"failedToLoadQueryError": "Не удалось загрузить запрос",
|
||||
"failedToLoadQueryFromFileError": "Не удалось загрузить запрос из файла {{fileName}}",
|
||||
"selectFilesToOpen": "Выберите документ запроса",
|
||||
"browseFiles": "Просмотреть"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Введите входные параметры (если есть)",
|
||||
"key": "Ключ",
|
||||
"param": "Параметр",
|
||||
"partitionKeyValue": "Значение ключа раздела",
|
||||
"value": "Значение",
|
||||
"addNewParam": "Добавить новый параметр",
|
||||
"addParam": "Добавить параметр",
|
||||
"deleteParam": "Удалить параметр",
|
||||
"invalidParamError": "Указан недействительный параметр: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Указан недопустимый параметр: {{invalidParam}} не является допустимым значением-литералом",
|
||||
"stringType": "Строка",
|
||||
"customType": "Пользовательская"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Файлы не указаны. Введите по крайней мере один файл.",
|
||||
"selectJsonFiles": "Выбрать файлы JSON",
|
||||
"selectJsonFilesTooltip": "Выберите один или несколько файлов JSON для отправки. Каждый файл может содержать один JSON-документ или массив JSON-документов. Суммарный размер всех файлов в одной операции отправки должен быть меньше 2 МБ. Для больших наборов данных можно выполнить несколько операций отправки.",
|
||||
"fileNameColumn": "ИМЯ ФАЙЛА",
|
||||
"statusColumn": "СТАТУС",
|
||||
"uploadStatus": "Создано: {{numSucceeded}}, отклонено в результате регулирования: {{numThrottled}}, ошибок: {{numFailed}}",
|
||||
"uploadedFiles": "Отправленные файлы"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Не удалось скопировать {{name}} в {{destination}}",
|
||||
"uploadFailedError": "Не удалось отправить {{name}}",
|
||||
"location": "Расположение",
|
||||
"locationAriaLabel": "Расположение",
|
||||
"selectLocation": "Выберите место для копирования записной книжки",
|
||||
"name": "Имя"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Не удалось опубликовать {{notebookName}} в галерее",
|
||||
"publishDescription": "После публикации эта записная книжка появится в общедоступной галерее записных книжек Azure Cosmos DB. Перед публикацией убедитесь, что удалили все конфиденциальные данные и результаты.",
|
||||
"publishPrompt": "Хотите опубликовать \"{{name}}\" и поделиться ею в галерее?",
|
||||
"coverImage": "Изображение обложки",
|
||||
"coverImageUrl": "URL-адрес изображения обложки",
|
||||
"name": "Имя",
|
||||
"description": "Описание",
|
||||
"tags": "Теги",
|
||||
"tagsPlaceholder": "Необязательный тег 1, необязательный тег 2",
|
||||
"preview": "Предварительный просмотр",
|
||||
"urlType": "URL-адрес",
|
||||
"customImage": "Пользовательское изображение",
|
||||
"takeScreenshot": "Сделать снимок экрана",
|
||||
"useFirstDisplayOutput": "Использовать вывод первого дисплея",
|
||||
"failedToCaptureOutput": "Не удалось зафиксировать первый выданный результат",
|
||||
"outputDoesNotExist": "Выданный результат отсутствует для всех ячеек.",
|
||||
"failedToConvertError": "Не удалось преобразовать {{fileName}} в формат base64",
|
||||
"failedToUploadError": "Не удалось отправить {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Не удалось запустить задание передачи данных",
|
||||
"suboptimalPartitionKeyError": "Внимание! Система обнаружила, что в вашей коллекции используется неоптимальный ключ секционирования",
|
||||
"description": "При изменении ключа секционирования контейнера необходимо создать целевой контейнер с правильным ключом секционирования. Можно также выбрать существующий целевой контейнер.",
|
||||
"sourceContainerId": "ИД {{collectionName}}-источника",
|
||||
"destinationContainerId": "ИД целевого {{collectionName}}",
|
||||
"collectionIdTooltip": "Уникальный идентификатор {{collectionName}}, который используется для маршрутизации на основе идентификаторов в REST и всех пакетах SDK.",
|
||||
"collectionIdPlaceholder": "например, {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ИД, пример {{collectionName}}1",
|
||||
"existingContainers": "Существующие контейнеры",
|
||||
"partitionKeyWarning": "Целевой контейнер не должен быть уже существующим контейнером. Обозреватель данных создаст новый целевой контейнер."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Имя пространства ключей",
|
||||
"keyspaceTooltip": "Выберите существующее пространство ключей или введите новый идентификатор пространства ключей.",
|
||||
"tableIdLabel": "Введите команду CQL для создания таблицы.",
|
||||
"enterTableId": "Введите идентификатор таблицы",
|
||||
"tableSchemaAriaLabel": "Схема таблицы",
|
||||
"provisionDedicatedThroughput": "Подготовить выделенную пропускную способность для этой таблицы",
|
||||
"provisionDedicatedThroughputTooltip": "При необходимости можно подготовить выделенную пропускную способность для таблицы в пространстве ключей, где уже подготовлена пропускная способность. Эта выделенная пропускная способность не будет использоваться совместно с другими таблицами в пространстве ключей и не учитывается в общей пропускной способности, выделенной для пространства ключей. Оплата за эту пропускную способность будет взиматься дополнительно к сумме, выделенной на уровне пространства ключей."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Добавить свойство",
|
||||
"addRow": "Добавить строку",
|
||||
"addEntity": "Добавить сущность",
|
||||
"back": "назад",
|
||||
"nullFieldsWarning": "Внимание! Поля со значением NULL не будут выводиться для редактирования.",
|
||||
"propertyEmptyError": "{{property}} не может быть пустым. Введите значение для {{property}}",
|
||||
"whitespaceError": "{{property}} не может содержать пробелы. Введите значение для {{property}} без пробелов",
|
||||
"propertyTypeEmptyError": "Тип свойства не может быть пустым. Выберите тип свойства {{property}} из раскрывающегося списка"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Выберите столбцы, которые необходимо запросить.",
|
||||
"availableColumns": "Доступные столбцы"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Выберите столбцы, которые нужно показать в представлении элементов контейнера.",
|
||||
"searchFields": "Поля поиска",
|
||||
"reset": "Сбросить",
|
||||
"partitionKeySuffix": " (ключ раздела)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Добавить свойство"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Идентификатор контейнера глобального вторичного индекса",
|
||||
"globalSecondaryIndexIdPlaceholder": "например, indexbyEmailId",
|
||||
"projectionQuery": "Запрос проекции",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Подробнее об определении глобальных вторичных индексов.",
|
||||
"disabledTitle": "Глобальный вторичный индекс уже создаётся. Дождитесь завершения процесса, прежде чем создавать новый."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Введённое значение {{input}} не соответствует выбранному {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Информация",
|
||||
"moreDetails": "Больше сведений"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Ladda upp",
|
||||
"connect": "Anslut",
|
||||
"remove": "Ta bort",
|
||||
"load": "Läs in",
|
||||
"publish": "Publicera",
|
||||
"browse": "Bläddra",
|
||||
"increaseValueBy1": "Öka värdet med 1",
|
||||
"decreaseValueBy1": "Minska värdet med 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "Det gick inte att skapa containern: {{error}}",
|
||||
"errorImportData": "Det gick inte att importera data: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Ny {{containerName}}",
|
||||
"restoreContainer": "Återställ {{containerName}}",
|
||||
"deleteDatabase": "Ta bort {{databaseName}}",
|
||||
"deleteContainer": "Ta bort {{containerName}}",
|
||||
"newSqlQuery": "Ny SQL-fråga",
|
||||
"newQuery": "Ny fråga",
|
||||
"openMongoShell": "Öppna Mongo Shell",
|
||||
"newShell": "Ny Shell",
|
||||
"openCassandraShell": "Öppna Cassandra Shell",
|
||||
"newStoredProcedure": "Ny lagrad procedur",
|
||||
"newUdf": "Ny UDF",
|
||||
"newTrigger": "Ny utlösare",
|
||||
"deleteStoredProcedure": "Ta bort lagrad procedur",
|
||||
"deleteTrigger": "Ta bort utlösaren",
|
||||
"deleteUdf": "Ta bort användardefinierad funktion"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Nytt objekt",
|
||||
"newDocument": "Nytt dokument",
|
||||
"uploadItem": "Ladda upp objekt",
|
||||
"applyFilter": "Använd filter",
|
||||
"unsavedChanges": "Ändringar som inte har sparats",
|
||||
"unsavedChangesMessage": "Ej sparade ändringar går förlorade. Vill du fortsätta?",
|
||||
"createDocumentFailed": "Det gick inte att skapa dokumentet",
|
||||
"updateDocumentFailed": "Det gick inte att uppdatera dokumentet",
|
||||
"documentDeleted": "Dokument har tagits bort.",
|
||||
"deleteDocumentDialogTitle": "Ta bort dokument",
|
||||
"deleteDocumentsDialogTitle": "Ta bort dokument",
|
||||
"throttlingError": "Det gick inte att ta bort vissa dokument på grund av ett fel med hastighetsbegränsning. Försök igen senare. Om du vill undvika detta i framtiden, överväg att öka genomströmningen på din container eller databas.",
|
||||
"deleteFailed": "Det gick inte att ta bort dokument ({{error}})",
|
||||
"missingShardProperty": "Dokumentet saknar shardegenskapen: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Det gick inte att uppdatera dokumentrutnätet",
|
||||
"confirmDelete": "Vill du ta bort {{documentName}}?",
|
||||
"confirmDeleteTitle": "Bekräfta borttagning",
|
||||
"selectedItems": "de valda {{count}}-objekten",
|
||||
"selectedItem": "det markerade objektet",
|
||||
"selectedDocuments": "de valda {{count}}-dokumenten",
|
||||
"selectedDocument": "det markerade dokumentet",
|
||||
"deleteDocumentFailedLog": "Det gick inte att ta bort dokumentet {{documentId}} med statuskod {{statusCode}}",
|
||||
"deleteSuccessLog": "{{count}} dokument har tagits bort",
|
||||
"deleteThrottledLog": "Det gick inte att ta bort {{count}} dokument på grund av felet \"Begäran är för stor\" (429). Försöker igen...",
|
||||
"missingShardKeyLog": "Det gick inte att spara det nya dokumentet: Dokumentshardnyckeln är inte definierad",
|
||||
"filterTooltip": "Skriv ett frågepredikat eller välj ett från listan.",
|
||||
"loadMore": "Läs in mer",
|
||||
"documentEditor": "Dokumentredigeraren",
|
||||
"savedFilters": "Sparade filter",
|
||||
"defaultFilters": "Standardfilter",
|
||||
"abort": "Avbryt",
|
||||
"deletingDocuments": "Tar bort {{count}} dokument",
|
||||
"deletedDocumentsSuccess": "{{count}} dokument har tagits bort.",
|
||||
"deleteAborted": "Borttagning av dokument avbröts.",
|
||||
"failedToDeleteDocuments": "Det gick inte att ta bort {{count}} dokument.",
|
||||
"requestTooLargeBase": "Vissa borttagningsförfrågningar misslyckades på grund av undantaget \"Begäran är för stor\" (429)",
|
||||
"retriedSuccessfully": "men ett nytt försök har gjorts.",
|
||||
"retryingNow": "Försöker igen nu.",
|
||||
"increaseThroughputTip": "Om du vill undvika detta i framtiden, överväg att öka genomströmningen på din container eller databas.",
|
||||
"numberOfSelectedDocuments": "Antal markerade dokument: {{count}}",
|
||||
"mongoFilterPlaceholder": "Skriv ett frågepredikat (t.ex. {\"id\":\"foo\"}), välj ett från rullgardinslistan eller lämna tomt för att fråga alla dokument.",
|
||||
"sqlFilterPlaceholder": "Skriv ett frågepredikat (t.ex. WHERE c.id=\"1\"), välj ett från rullgardinslistan eller lämna tomt för att fråga alla dokument.",
|
||||
"error": "Fel",
|
||||
"warning": "Varning"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Kör fråga",
|
||||
"executeSelection": "Kör markering",
|
||||
"saveQuery": "Spara fråga",
|
||||
"downloadQuery": "Ladda ned fråga",
|
||||
"cancelQuery": "Avbryt fråga",
|
||||
"openSavedQueries": "Öppna sparade frågor",
|
||||
"vertical": "Lodrät",
|
||||
"horizontal": "Vågrät",
|
||||
"view": "Visa",
|
||||
"editingQuery": "Redigerar fråga"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Lagrad procedur-id",
|
||||
"idPlaceholder": "Ange det nya lagrade procedur-ID:t",
|
||||
"idAriaLabel": "Lagrad procedur-id",
|
||||
"body": "Lagrad procedurtext",
|
||||
"bodyAriaLabel": "Lagrad procedurtext",
|
||||
"successfulExecution": "Slutförd körning av lagrad procedur",
|
||||
"resultAriaLabel": "Kör lagrade procedurloggsresultat",
|
||||
"logsAriaLabel": "Kör lagrade procedurloggar",
|
||||
"errors": "Fel:",
|
||||
"errorDetailsAriaLabel": "Felinformationsrutnät",
|
||||
"moreDetails": "Mer information",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Utlösar-ID",
|
||||
"idPlaceholder": "Ange det nya utlösar-ID:t",
|
||||
"type": "Utlösartyp",
|
||||
"operation": "Utlösaråtgärd",
|
||||
"body": "Utlösarens innehåll",
|
||||
"bodyAriaLabel": "Utlösarens innehåll",
|
||||
"pre": "För",
|
||||
"post": "Inlägg",
|
||||
"all": "Alla",
|
||||
"operationCreate": "Skapa",
|
||||
"operationDelete": "Ta bort",
|
||||
"operationReplace": "Ersätt"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Användardefinierad funktion",
|
||||
"idPlaceholder": "Ange det nya användardefinierade funktions-ID:t",
|
||||
"body": "Användardefinierad funktionstext",
|
||||
"bodyAriaLabel": "Användardefinierad funktionstext"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Ändringar som inte har sparats",
|
||||
"changesWillBeLost": "Ändringar går förlorade. Vill du fortsätta?",
|
||||
"resolveConflictFailed": "Det gick inte att lösa konflikten",
|
||||
"deleteConflictFailed": "Det gick inte att ta bort konflikten",
|
||||
"refreshGridFailed": "Det gick inte att uppdatera dokumentrutnätet"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo-gränssnitt"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Ta bort {{databaseName}}",
|
||||
"warningMessage": "Varning! Den åtgärd du är i färd med att genomföra kan du inte ångra senare. Om du fortsätter tas den här resursen och alla dess underordnade resurser bort permanent.",
|
||||
"confirmPrompt": "Bekräfta genom att skriva ID:t {{databaseName}} (namn)",
|
||||
"inputMismatch": "{{databaseName}}Indatanamnet {{input}} matchar inte det valda {{databaseName}} {{selectedId}}",
|
||||
"feedbackTitle": "Hjälp oss att förbättra Azure Cosmos DB!",
|
||||
"feedbackReason": "Vad är anledningen till att du tar bort {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Ta bort {{collectionName}}",
|
||||
"confirmPrompt": "Bekräfta genom att skriva ID:t {{collectionName}} ",
|
||||
"inputMismatch": "Indata-ID {{input}} matchar inte det valda {{selectedId}}",
|
||||
"feedbackTitle": "Hjälp oss att förbättra Azure Cosmos DB!",
|
||||
"feedbackReason": "Vad är anledningen till att du tar bort {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Databas {{suffix}}",
|
||||
"databaseIdLabel": "Databas-ID",
|
||||
"keyspaceIdLabel": "Nyckelområdes-ID",
|
||||
"databaseIdPlaceholder": "Skriv ett nytt {{databaseLabel}}-ID",
|
||||
"databaseTooltip": "A {{databaseLabel}} är en logisk container för en eller flera {{collectionsLabel}}",
|
||||
"shareThroughput": "Dela dataflöde över {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Etablerat dataflöde på {{databaseLabel}}-nivån delas över alla {{collectionsLabel}} i {{databaseLabel}}.",
|
||||
"greaterThanError": "Ange ett värde som är större än {{minValue}} för autopilot-dataflöde",
|
||||
"acknowledgeSpendError": "Bekräfta den uppskattade {{period}} kostnaden."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Skapa ny",
|
||||
"useExisting": "Använd befintlig",
|
||||
"databaseTooltip": "En databas motsvarar ett namnområde. Det är hanteringsenheten för en uppsättning . {{collectionName}}",
|
||||
"shareThroughput": "Dela dataflöde över {{collectionName}}",
|
||||
"shareThroughputTooltip": "Dataflödet som konfigurerats på databasnivå delas över alla {{collectionName}} i databasen.",
|
||||
"collectionIdLabel": "{{collectionName}} -ID",
|
||||
"collectionIdTooltip": "Unik identifierare för {{collectionName}} och används för ID-baserad routning via REST och alla SDK:er.",
|
||||
"collectionIdPlaceholder": "t.ex. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}}-ID, exempel {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Välj befintligt {{databaseName}}-ID",
|
||||
"existingDatabasePlaceholder": "Välj befintligt {{databaseName}}-ID",
|
||||
"indexing": "Indexering",
|
||||
"turnOnIndexing": "Aktivera indexering",
|
||||
"automatic": "Automatisk",
|
||||
"turnOffIndexing": "Inaktivera indexering",
|
||||
"off": "Av",
|
||||
"sharding": "Horisontell partitionering",
|
||||
"shardingTooltip": "Shardade samlingar används för att dela dina data över många replikuppsättningar (shards) för att uppnå obegränsad skalbarhet. Shardade samlingar kräver att du väljer en shard-nyckel (fält) för att fördela dina data jämnt.",
|
||||
"unsharded": "Ej fragmenterad",
|
||||
"unshardedLabel": "Ej fragmenterad (gräns på 20 GB)",
|
||||
"sharded": "Shardad",
|
||||
"addPartitionKey": "Lägg till hierarkisk partitionsnyckel",
|
||||
"hierarchicalPartitionKeyInfo": "Med den här funktionen kan du partitionera dina data med upp till tre nivåer av nycklar för bättre datadistribution. Kräver .NET V3, Java V4 SDK eller förhandsversion av JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Etablera dedikerat dataflöde för detta {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "Du kan också etablera dedikerat dataflöde för en {{collectionName}} i en databas som har etablerat dataflöde. Den här dedikerade dataflödesmängden delas inte med andra {{collectionNamePlural}} i databasen och räknas inte in i det dataflöde som du etablerade för databasen. Det här dataflödesbeloppet faktureras utöver det dataflödesbelopp som du etablerade på databasnivå.",
|
||||
"uniqueKeysPlaceholderMongo": "Kommaavgränsade sökvägar, t.ex. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Kommaavgränsade sökvägar, t.ex. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Lägg till unik nyckel",
|
||||
"enableAnalyticalStore": "Aktivera analysarkiv",
|
||||
"disableAnalyticalStore": "Inaktivera analysarkiv",
|
||||
"on": "På",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link krävs för att skapa ett analysarkiv {{collectionName}}. Aktivera Synapse Link för det här Cosmos DB-kontot.",
|
||||
"enable": "Aktivera",
|
||||
"containerVectorPolicy": "Containervektorprincip",
|
||||
"containerFullTextSearchPolicy": "Princip för fulltextsökning för behållare",
|
||||
"advanced": "Avancerat",
|
||||
"mongoIndexingTooltip": "Fältet _id indexeras som standard. Att skapa ett jokerteckenindex för alla fält optimerar frågorna och rekommenderas för utveckling.",
|
||||
"createWildcardIndex": "Skapa ett jokerteckenindex för alla fält",
|
||||
"legacySdkCheckbox": "Mitt program använder en äldre Cosmos .NET- eller Java SDK-version (.NET V1 eller Java V2)",
|
||||
"legacySdkInfo": "För att säkerställa kompatibilitet med äldre SDK:er använder den skapade containern ett äldre partitioneringsschema som stöder partitionsnyckelvärden med endast storlek upp till 101 byte. Om detta är aktiverat kan du inte använda hierarkiska partitionsnycklar.",
|
||||
"indexingOnInfo": "Alla egenskaper i dina dokument indexeras som standard för flexibla och effektiva frågor.",
|
||||
"indexingOffInfo": "Indexering inaktiveras. Rekommenderas om du inte behöver köra frågor eller bara har nyckelvärdesåtgärder.",
|
||||
"indexingOffWarning": "Genom att skapa den här containern med indexering inaktiverad kan du inte göra några ändringar i indexeringsprincipen. Indexeringsändringar tillåts bara för en container med en indexeringsprincip.",
|
||||
"acknowledgeSpendErrorMonthly": "Bekräfta den uppskattade månadskostnaden.",
|
||||
"acknowledgeSpendErrorDaily": "Bekräfta den uppskattade dagliga kostnaden.",
|
||||
"unshardedMaxRuError": "Ej shardade samlingar stöder upp till 10 000 RU:er",
|
||||
"acknowledgeShareThroughputError": "Bekräfta den uppskattade kostnaden för det här dedikerade dataflödet.",
|
||||
"vectorPolicyError": "Åtgärda fel i containervektorprincipen",
|
||||
"fullTextSearchPolicyError": "Åtgärda felen i containerns fulltextsökningsprincip.",
|
||||
"addingSampleDataSet": "Lägger till exempeldatauppsättning"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "Shard-nyckeln (fältet) används för att dela dina data över många replikuppsättningar (shards) för att uppnå obegränsad skalbarhet. Det är viktigt att välja ett fält som distribuerar dina data jämnt.",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} används för att automatiskt distribuera data över partitioner för skalbarhet. Välj en egenskap i JSON-dokumentet som har ett stort antal värden och distribuerar begärandevolymen jämnt.",
|
||||
"partitionKeyTooltipSqlSuffix": " För små lästunga arbetsbelastningar eller skrivtunga arbetsbelastningar av alla storlekar är id ofta ett bra val.",
|
||||
"shardKeyLabel": "Shard-nyckel",
|
||||
"partitionKeyLabel": "Partitionsnyckel",
|
||||
"shardKeyPlaceholder": "t.ex. categoryId",
|
||||
"partitionKeyPlaceholderDefault": "t.ex. /address",
|
||||
"partitionKeyPlaceholderFirst": "Obligatoriskt – den första partitionsnyckeln, t.ex. /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "den andra partitionsnyckeln, t.ex. /UserId",
|
||||
"partitionKeyPlaceholderThird": "tredje partitionsnyckeln, t.ex. /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "t. ex. /address/zipCode",
|
||||
"uniqueKeysTooltip": "Med unika nycklar kan utvecklare lägga till ett lager med dataintegritet i databasen. Genom att skapa en unik nyckelprincip när en container skapas ser du till att ett eller flera värden per partitionsnyckel är unika.",
|
||||
"uniqueKeysLabel": "Unika nycklar",
|
||||
"analyticalStoreLabel": "Analyslager",
|
||||
"analyticalStoreTooltip": "Aktivera analyslagringsfunktionen för att utföra analyser i nära realtid på dina driftdata, utan att påverka prestandan för transaktionsarbetsbelastningar.",
|
||||
"analyticalStoreDescription": "Aktivera analyslagringsfunktionen för att utföra analyser i nära realtid på dina driftdata, utan att påverka prestandan för transaktionsarbetsbelastningar.",
|
||||
"vectorPolicyTooltip": "Beskriv alla egenskaper i dina data som innehåller vektorer, så att de kan göras tillgängliga för likhetsfrågor."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Sidalternativ",
|
||||
"pageOptionsDescription": "Välj Anpassat för att ange ett fast antal frågeresultat som ska visas, eller välj Obegränsat för att visa så många frågeresultat som möjligt per sida.",
|
||||
"queryResultsPerPage": "Frågeresultat per sida",
|
||||
"queryResultsPerPageTooltip": "Ange antalet frågeresultat som ska visas per sida.",
|
||||
"customQueryItemsPerPage": "Anpassade frågeobjekt per sida",
|
||||
"custom": "Anpassat",
|
||||
"unlimited": "Obegränsat",
|
||||
"entraIdRbac": "Aktivera Entra ID RBAC",
|
||||
"entraIdRbacDescription": "Välj Automatisk om du vill aktivera Entra ID RBAC automatiskt. Sant/falskt för att framtvinga aktivering/inaktivering av Entra ID RBAC.",
|
||||
"true": "Sant",
|
||||
"false": "Falskt",
|
||||
"regionSelection": "Regionval",
|
||||
"regionSelectionDescription": "Ändrar regionen som Cosmos-klienten använder för att komma åt kontot.",
|
||||
"selectRegion": "Välj region",
|
||||
"selectRegionTooltip": "Ändrar den kontoslutpunkt som används för att utföra klientåtgärder.",
|
||||
"globalDefault": "Globalt (standardvärde)",
|
||||
"readWrite": "(Läs/skriv)",
|
||||
"read": "(Läs)",
|
||||
"queryTimeout": "Timeout för fråga",
|
||||
"queryTimeoutDescription": "När en fråga når en angiven tidsgräns visas ett popup-fönster med ett alternativ för att avbryta frågan om inte automatisk annullering har aktiverats.",
|
||||
"enableQueryTimeout": "Aktivera tidsgräns för fråga",
|
||||
"queryTimeoutMs": "Tidsgräns för fråga (ms)",
|
||||
"automaticallyCancelQuery": "Avbryt frågan automatiskt efter tidsgräns",
|
||||
"ruLimit": "RU-gräns",
|
||||
"ruLimitDescription": "Om en fråga överskrider en konfigurerad RU-gräns avbryts frågan.",
|
||||
"enableRuLimit": "Aktivera RU-gräns",
|
||||
"ruLimitLabel": "RU-gräns (RU)",
|
||||
"defaultQueryResults": "Standardvy för frågeresultat",
|
||||
"defaultQueryResultsDescription": "Välj den standardvy som ska användas när frågeresultat visas.",
|
||||
"retrySettings": "Inställningar för nya försök",
|
||||
"retrySettingsDescription": "Återförsöksprincip som är associerad med begränsade begäranden under CosmosDB-frågor.",
|
||||
"maxRetryAttempts": "Maximalt antal återförsök",
|
||||
"maxRetryAttemptsTooltip": "Maximalt antal återförsök som ska utföras för en begäran. Standardvärde 9.",
|
||||
"fixedRetryInterval": "Fast återförsöksintervall (ms)",
|
||||
"fixedRetryIntervalTooltip": "Fast återförsöksintervall i millisekunder att vänta mellan varje försök, oavsett retryAfter-värdet som returneras i svaret. Standardvärdet är 0 millisekunder.",
|
||||
"maxWaitTime": "Maximal väntetid (s)",
|
||||
"maxWaitTimeTooltip": "Maximal väntetid i sekunder för en begäran medan nya försök görs. Standardvärde 30 sekunder.",
|
||||
"enableContainerPagination": "Aktivera containenumrering",
|
||||
"enableContainerPaginationDescription": "Läs in 50 containrar åt gången. För närvarande hämtas inte containrar i alfanumerisk ordning.",
|
||||
"enableCrossPartitionQuery": "Aktivera fråga mellan partitioner",
|
||||
"enableCrossPartitionQueryDescription": "Skicka mer än en begäran medan du kör en fråga. Mer än en begäran krävs om frågan inte är begränsad till värdet för en enskild partitionsnyckel.",
|
||||
"maxDegreeOfParallelism": "Maximal grad av parallellitet",
|
||||
"maxDegreeOfParallelismDescription": "Hämtar eller anger antalet samtidiga åtgärder som körs på klientsidan under parallell frågekörning. Ett positivt egenskapsvärde begränsar antalet samtidiga åtgärder till det angivna värdet. Om den är inställd på mindre än 0 bestämmer systemet automatiskt antalet samtidiga åtgärder som ska köras.",
|
||||
"maxDegreeOfParallelismQuery": "Fråga upp till maximal parallellitetsgrad.",
|
||||
"priorityLevel": "Prioritetsnivå",
|
||||
"priorityLevelDescription": "Anger prioritetsnivån för dataplansbegäranden från datautforskaren när prioritetsbaserad körning används. Om Ingen är markerat anger datautforskaren inte prioritetsnivå och standardprioritetsnivån på serversidan används.",
|
||||
"displayGremlinQueryResults": "Visa Gremlin-frågeresultat som:",
|
||||
"displayGremlinQueryResultsDescription": "Välj Diagram för att automatiskt visualisera frågeresultaten som ett diagram eller JSON för att visa resultaten som JSON.",
|
||||
"graph": "Graf",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Automatisk grafvisualisering",
|
||||
"enableSampleDatabase": "Aktivera exempeldatabas",
|
||||
"enableSampleDatabaseDescription": "Det här är en exempeldatabas och samling med syntetiska produktdata som du kan använda för att utforska med hjälp av NoSQL-frågor. Detta visas som en annan databas i Data Explorer-gränssnittet och skapas av och underhålls av Microsoft utan kostnad för dig.",
|
||||
"enableSampleDbAriaLabel": "Aktivera exempeldatabas för frågeutforskning",
|
||||
"guidRepresentation": "Guid-representation",
|
||||
"guidRepresentationDescription": "GuidRepresentation i MongoDB syftar på hur globalt unika identifierare (GUID) serialiseras och avserialiseras när de lagras i BSON-dokument. Detta gäller för alla dokumentåtgärder.",
|
||||
"advancedSettings": "Avancerade inställningar",
|
||||
"ignorePartitionKey": "Ignorera partitionsnyckel vid dokumentuppdatering",
|
||||
"ignorePartitionKeyTooltip": "Om det här alternativet är markerat används inte partitionsnyckelvärdet för att hitta dokumentet under uppdateringsåtgärderna. Använd endast detta om dokumentuppdateringar misslyckas på grund av en onormal partitionsnyckel.",
|
||||
"clearHistory": "Rensa historiken",
|
||||
"clearHistoryConfirm": "Vill du fortsätta?",
|
||||
"clearHistoryDescription": "Den här åtgärden rensar alla anpassningar för det här kontot i den här webbläsaren, inklusive:",
|
||||
"clearHistoryTabLayout": "Återställ din anpassade fliklayout, inklusive delningspositionerna",
|
||||
"clearHistoryTableColumns": "Radera inställningarna för tabellkolumner, inklusive eventuella anpassade kolumner",
|
||||
"clearHistoryFilters": "Rensa filterhistoriken",
|
||||
"clearHistoryRegion": "Återställ val av region till global",
|
||||
"increaseValueBy1000": "Öka värdet med 1000",
|
||||
"decreaseValueBy1000": "Minska värdet med 1000",
|
||||
"none": "Inget",
|
||||
"low": "Låg",
|
||||
"high": "Hög",
|
||||
"automatic": "Automatisk",
|
||||
"enhancedQueryControl": "Förbättrad frågekontroll",
|
||||
"enableQueryControl": "Aktivera frågekontroll",
|
||||
"explorerVersion": "Explorer-version",
|
||||
"accountId": "Konto-id",
|
||||
"sessionId": "Sessions-id",
|
||||
"popupsDisabledError": "Det gick inte att upprätta auktorisering för det här kontot eftersom popup-fönster är blockerade i webbläsaren.\nAktivera popup-fönster för den här webbplatsen och klicka på knappen Logga in för Entra ID",
|
||||
"failedToAcquireTokenError": "Det gick inte att hämta auktoriseringstoken automatiskt. Klicka på knappen Logga in för Entra ID för att aktivera Entra ID RBAC-åtgärder."
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Spara fråga",
|
||||
"setupCostMessage": "Av efterlevnadsskäl sparar vi frågor i en container i ditt Azure Cosmos-konto, i en separat databas som heter {{databaseName}}. För att kunna fortsätta måste vi skapa en container på ditt konto. Den uppskattade extra kostnaden är 0,77 USD per dag.",
|
||||
"completeSetup": "Slutför installationen",
|
||||
"noQueryNameError": "Inget frågenamn har angetts",
|
||||
"invalidQueryContentError": "Ogiltigt frågeinnehåll har angetts",
|
||||
"failedToSaveQueryError": "Det gick inte att spara frågan {{queryName}}",
|
||||
"failedToSetupContainerError": "Det gick inte att konfigurera en container för sparade frågor",
|
||||
"accountNotSetupError": "Det gick inte att spara frågan: kontot har inte konfigurerats för att spara frågor",
|
||||
"name": "Namn"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "Ingen fil har angetts",
|
||||
"failedToLoadQueryError": "Det gick inte att läsa in fråga",
|
||||
"failedToLoadQueryFromFileError": "Det gick inte att läsa in frågan från filen {{fileName}}",
|
||||
"selectFilesToOpen": "Välj ett frågedokument",
|
||||
"browseFiles": "Bläddra"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Ange indataparametrar (om sådana finns)",
|
||||
"key": "Nyckel",
|
||||
"param": "Param.",
|
||||
"partitionKeyValue": "Partitionsnyckelvärde",
|
||||
"value": "Värde",
|
||||
"addNewParam": "Lägg till ny param",
|
||||
"addParam": "Lägg till param",
|
||||
"deleteParam": "Ta bort param",
|
||||
"invalidParamError": "Ogiltig param har angetts: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Ogiltig param har angetts: {{invalidParam}} är inte ett giltigt literalvärde",
|
||||
"stringType": "Sträng",
|
||||
"customType": "Anpassat"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "Inga filer har angetts. Ange minst en fil.",
|
||||
"selectJsonFiles": "Välj JSON-filer",
|
||||
"selectJsonFilesTooltip": "Välj en eller flera JSON-filer att ladda upp. Varje fil kan innehålla ett enda JSON-dokument eller en matris med JSON-dokument. Den kombinerade storleken för alla filer i en enskild uppladdningsåtgärd måste vara mindre än 2 MB. Du kan utföra flera uppladdningsåtgärder för större datauppsättningar.",
|
||||
"fileNameColumn": "FILNAMN",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} skapades, {{numThrottled}} begränsades, {{numFailed}} fel",
|
||||
"uploadedFiles": "Uppladdade filer"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Det gick inte att kopiera {{name}} till {{destination}}",
|
||||
"uploadFailedError": "Det gick inte att ladda upp {{name}}",
|
||||
"location": "Plats",
|
||||
"locationAriaLabel": "Plats",
|
||||
"selectLocation": "Välj en plats för anteckningsbok att kopiera",
|
||||
"name": "Namn"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Det gick inte att publicera {{notebookName}} till galleriet",
|
||||
"publishDescription": "När den här anteckningsboken publiceras visas den i det offentliga galleriet för Azure Cosmos DB notebook-filer. Kontrollera att du har tagit bort känsliga data eller utdata innan du publicerar.",
|
||||
"publishPrompt": "Vill du publicera och dela {{name}} till galleriet?",
|
||||
"coverImage": "Omslagsbild",
|
||||
"coverImageUrl": "URL för omslagsbild",
|
||||
"name": "Namn",
|
||||
"description": "Beskrivning",
|
||||
"tags": "Taggar",
|
||||
"tagsPlaceholder": "Valfri tagg 1, valfri tagg 2",
|
||||
"preview": "Förhandsversion",
|
||||
"urlType": "Webbadress",
|
||||
"customImage": "Anpassad avbildning",
|
||||
"takeScreenshot": "Ta skärmbild",
|
||||
"useFirstDisplayOutput": "Använd första visningsutdata",
|
||||
"failedToCaptureOutput": "Det gick inte att samla in första utdata",
|
||||
"outputDoesNotExist": "Utdata finns inte för någon av cellerna.",
|
||||
"failedToConvertError": "Det gick inte att konvertera {{fileName}} till base64-format",
|
||||
"failedToUploadError": "Det gick inte att ladda upp {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Det gick inte att starta dataöverföringsjobbet",
|
||||
"suboptimalPartitionKeyError": "Varning! Systemet har upptäckt att din samling kanske använder en suboptimal partitionsnyckel",
|
||||
"description": "När du ändrar en containers partitionsnyckel måste du skapa en målcontainer med rätt partitionsnyckel. Du kan också välja en befintlig målcontainer.",
|
||||
"sourceContainerId": "Käll-id {{collectionName}}",
|
||||
"destinationContainerId": "Mål-{{collectionName}}-ID",
|
||||
"collectionIdTooltip": "Unik identifierare för {{collectionName}} och används för ID-baserad routning via REST och alla SDK:er.",
|
||||
"collectionIdPlaceholder": "t.ex. {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}}-ID, exempel {{collectionName}}1",
|
||||
"existingContainers": "Befintliga containrar",
|
||||
"partitionKeyWarning": "Målcontainern får inte redan finnas. Datautforskaren skapar en ny målcontainer åt dig."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Namn på nyckelutrymme",
|
||||
"keyspaceTooltip": "Välj ett befintligt nyckelutrymme eller ange ett nytt nyckelområdes-ID.",
|
||||
"tableIdLabel": "Ange CQL-kommandot för att skapa tabellen.",
|
||||
"enterTableId": "Ange tabell-Id",
|
||||
"tableSchemaAriaLabel": "Tabellschema",
|
||||
"provisionDedicatedThroughput": "Etablera dedikerat dataflöde för den här tabellen",
|
||||
"provisionDedicatedThroughputTooltip": "Du kan också etablera dedikerat dataflöde för en tabell i ett nyckelområde som har etablerat dataflöde. Det här dedikerade dataflödesbeloppet delas inte med andra tabeller i nyckelområdet och räknas inte in i det dataflöde som du etablerade för nyckelområdet. Det här dataflödesbeloppet faktureras utöver det dataflödesbelopp som du etablerade på nyckelområdesnivå."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Lägg till egenskap",
|
||||
"addRow": "Lägg till rad",
|
||||
"addEntity": "Lägg till entitet",
|
||||
"back": "tillbaka",
|
||||
"nullFieldsWarning": "Varning! Null-fält visas inte för redigering.",
|
||||
"propertyEmptyError": "{{property}} måste anges Ange ett värde för {{property}}",
|
||||
"whitespaceError": "{{property}} får inte innehålla blanksteg. Ange ett värde för {{property}} utan blanksteg",
|
||||
"propertyTypeEmptyError": "Egenskapstypen får inte vara tom. Välj en typ i listrutan för egenskapen {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Välj de kolumner som du vill fråga.",
|
||||
"availableColumns": "Tillgängliga kolumner"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Välj vilka kolumner som ska visas i vyn över objekt i containern.",
|
||||
"searchFields": "Sökfält",
|
||||
"reset": "Återställ",
|
||||
"partitionKeySuffix": " (partitionsnyckel)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Lägg till egenskap"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Container-ID för globalt sekundärt index",
|
||||
"globalSecondaryIndexIdPlaceholder": "t.ex. indexbyEmailId",
|
||||
"projectionQuery": "Projektionsfråga",
|
||||
"projectionQueryPlaceholder": "VÄLJ c.email, c.accountId FRÅN c",
|
||||
"projectionQueryTooltip": "Läs mer om att definiera globala sekundära index.",
|
||||
"disabledTitle": "Ett globalt sekundärt index skapas redan. Vänta tills den har slutförts innan du skapar en till."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Indata {{input}} matchar inte den valda {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Information",
|
||||
"moreDetails": "Mer information"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "Sil",
|
||||
"update": "Güncelleştir",
|
||||
"discard": "At",
|
||||
"execute": "Yürüt",
|
||||
"execute": "Execute",
|
||||
"loading": "Yükleniyor",
|
||||
"loadingEllipsis": "Yükleniyor...",
|
||||
"next": "Sonraki",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "Karşıya yükle",
|
||||
"connect": "Bağlan",
|
||||
"remove": "Kaldır",
|
||||
"load": "Yükle",
|
||||
"publish": "Yayımla",
|
||||
"browse": "Gözat",
|
||||
"increaseValueBy1": "Değeri 1 artır",
|
||||
"decreaseValueBy1": "Değeri 1 azalt"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "Örnek veri kümelerimizi, belgelerimizi ve ek araçlarımızı kullanmaya başlayın."
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "Hızlı başlangıcı başlatın",
|
||||
"description": "Örnek verilerle başlamanız için hızlı başlangıç öğreticisini başlatın"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "Yeni {{collectionName}}",
|
||||
"description": "Depolama ve aktarım hızı için yeni bir kapsayıcı oluşturun"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Azure Cosmos DB Örnekler Galerisi",
|
||||
"description": "Ölçeklenebilir, akıllı uygulama desenlerini gösteren örnekleri keşfedin. Cosmos DB ile kavramdan koda ne kadar hızlı geçebileceğinizi görmek için hemen birini deneyin"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "Bağlan",
|
||||
"description": "Kendi araçlarınızı kullanmayı mı tercih ediyorsunuz? Bağlanmak için ihtiyacınız olan bağlantı dizesini bulun",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "pgAdmin ile bağlanın",
|
||||
"description": "pgAdmin'i mi tercih edersiniz? Bağlantı dizelerinizi burada bulabilirsiniz"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "VS Code ile Bağlan",
|
||||
"description": "Visual Studio Code'da MongoDB ve DocumentDB kümelerinizi sorgulayın ve yönetin"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "PostgreSQL Kabuk",
|
||||
"description": "PostgreSQL kabuk arayüzünü kullanarak tablo oluşturun ve verilerle etkileşim kurun"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Mongo Shell",
|
||||
"description": "MongoDB kabuk arayüzünü kullanarak koleksiyon oluşturun ve verilerle etkileşim kurun"
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "Cosmos DB PGSQL yeni misiniz?",
|
||||
"body": "Hoş geldiniz! Cosmos DB PGSQL kullanmaya yeni başladıysanız ve başlamayla ilgili yardıma ihtiyacınız varsa, örnek verileri ve sorguları burada bulabilirsiniz."
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "Parolanızı oluşturun",
|
||||
"body": "Henüz parolanızı değiştirmediyseniz, şimdi değiştirin."
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "{{collectionName}} örneğiyle başlayın",
|
||||
"body": "Örnek verilerle örnek bir kapsayıcı oluşturmanız için size rehberlik edeceğiz, ardından Veri Gezgini turu yapacağız. Bu turu başlatmayı iptal edip kendiniz de keşfedebilirsiniz"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "Son kullanılanlar",
|
||||
"clearRecents": "Son Kullanılanları Temizle",
|
||||
"top3": "Bilmeniz gereken ilk 3 şey",
|
||||
"learningResources": "Öğrenme Kaynakları",
|
||||
"nextSteps": "Sonraki adımlar",
|
||||
"tipsAndLearnMore": "İpuçları & daha fazla bilgi edinin",
|
||||
"notebook": "Not Defteri",
|
||||
"needHelp": "Yardıma mı ihtiyacınız var?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "Gelişmiş Modelleme Desenleri",
|
||||
"description": "Veritabanınızı iyileştirme için gelişmiş stratejiler öğrenin."
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Bölümleme için En İyi Uygulamalar",
|
||||
"description": "Veri modeli ve bölümleme stratejilerini uygulamayı öğrenin."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "Kaynak Gereksinimlerinizi Planlayın",
|
||||
"description": "Farklı yapılandırma seçeneklerini öğrenin."
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "MongoDB API'si nedir?",
|
||||
"description": "Azure Cosmos DB for MongoDB ve özelliklerini anlayın."
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "Özellikler ve Söz Dizimi",
|
||||
"description": "Avantajları ve özellikleri keşfedin"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Verinizi Taşıyın",
|
||||
"description": "Veri taşımaya yönelik geçiş öncesi adımlar"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "Java Uygulaması oluşturun",
|
||||
"description": "SDK kullanarak Java uygulaması oluşturun."
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Bölümleme için En İyi Uygulamalar",
|
||||
"description": "Bölümlemenin nasıl çalıştığını öğrenin."
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "İstek Birimleri (RU'lar)",
|
||||
"description": "RU ücretlerini anlayın."
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "Veri Modelleme",
|
||||
"description": "Grafik veri modelleme önerileri"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "Bölümleme için En İyi Uygulamalar",
|
||||
"description": "Bölümlemenin nasıl çalıştığını öğrenin"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "Veri Sorgula",
|
||||
"description": "Gremlin ile veri sorgulama"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "Table API nedir?",
|
||||
"description": "Azure Cosmos DB for Table ve özelliklerini anlayın"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Verinizi taşıyın",
|
||||
"description": "Verilerinizi taşımayı öğrenin"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Azure Cosmos DB for Table SSS",
|
||||
"description": "Azure Cosmos DB for Table hakkında sık sorulan sorular"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "Veri Gezgini klavye kısayolları",
|
||||
"description": "Veri Gezgini'nde gezinmek için klavye kısayollarını öğrenin."
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "Temelleri Öğrenin",
|
||||
"description": "Azure Cosmos DB Canlı TV şovunun tanıtım ve nasıl yapılır videolarını izleyin."
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "SDK kullanarak Başla",
|
||||
"description": "Azure Cosmos DB SDK hakkında bilgi edinin."
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "Verinizi Taşıyın",
|
||||
"description": "Azure hizmetleri ve açık kaynak çözümler kullanarak verileri taşıyın."
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "Node.js ile uygulama oluşturun",
|
||||
"description": "Node.js uygulaması oluşturun."
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "Başlangıç Kılavuzu",
|
||||
"description": "Başlamak için temel bilgileri öğrenin."
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "Kapsayıcı Oluştur",
|
||||
"description": "Kapsayıcı oluşturma seçeneklerini öğrenin."
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "Aktarım Hızı Sağla",
|
||||
"description": "Verimliliği nasıl yapılandıracağınızı öğrenin."
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "Başlayın ",
|
||||
"description": "Gremlin konsolunu kullanarak oluşturun, sorgulayın ve gezin"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "Grafik Verilerini İçe Aktar",
|
||||
"description": "BulkExecutor kullanarak toplu veri alımını öğrenin"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": ".NET Uygulaması oluşturun",
|
||||
"description": ".NET uygulamasından Azure Cosmos DB for Table'a nasıl erişilir."
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "Java Uygulaması oluşturun",
|
||||
"description": "Java SDK ile Azure Cosmos DB for Table uygulaması oluşturun "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "Veri Modelleme",
|
||||
"distributionColumn": "Dağıtım Sütunu nasıl seçilir",
|
||||
"buildApps": "Python/Java/Django ile Uygulama Geliştirin"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "Verileri Geçir",
|
||||
"vectorSearch": "Vektör Arama ile yapay zeka uygulamaları geliştirin",
|
||||
"buildApps": "Node.js ile Uygulama Geliştirin"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "Performans Ayarlama",
|
||||
"diagnosticQueries": "Yararlı Tanılama Sorguları",
|
||||
"sqlReference": "Dağıtılmış SQL Referansı"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "Vektör Araması",
|
||||
"textIndexing": "Metin Dizini",
|
||||
"troubleshoot": "Sık karşılaşılan sorunları giderme"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "Veritabanınızı oluşturma",
|
||||
"useTitle": "Veritabanınızı kullanma",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "Yeni kapsayıcı",
|
||||
"description": "Verilerinizi depolamak için hedef kapsayıcı oluşturun"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "Örnek Veriler",
|
||||
"description": "Örnek verileri veritabanınıza yükleyin"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "Örnek Vektör Verileri",
|
||||
"description": "text-embedding-ada-002 ile örnek vektör verilerini yükleyin"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "Uygulama geliştirme",
|
||||
"description": "Uygulamalarınızı oluşturmak için bir SDK kullanmaya buradan başlayın"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "Örnek Galeri",
|
||||
"description": "Gerçek uçtan uca örnekler alın"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "Örnek Veriler",
|
||||
"startButton": "Başlat",
|
||||
"createPrompt": "\"{{containerName}}\" kapsayıcısını oluşturun ve örnek verileri içe aktarın. Bu işlem birkaç dakika sürebilir.",
|
||||
"creatingContainer": "\"{{containerName}}\" kapsayıcısı oluşturuluyor...",
|
||||
"importingData": "Veriler \"{{containerName}}\" içine aktarılıyor...",
|
||||
"success": "\"{{containerName}}\" örnek verilerle başarıyla oluşturuldu.",
|
||||
"errorContainerExists": "\"{{databaseName}}\" veritabanındaki \"{{containerName}}\" kapsayıcısı zaten var. Lütfen silip tekrar deneyin.",
|
||||
"errorCreateContainer": "Kapsayıcı oluşturulamadı: {{error}}",
|
||||
"errorImportData": "Veriler içeri aktarılamadı: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "Yeni {{containerName}}",
|
||||
"restoreContainer": "{{containerName}} öğesini geri yükle",
|
||||
"deleteDatabase": "{{databaseName}} öğesini sil",
|
||||
"deleteContainer": "{{containerName}} öğesini sil",
|
||||
"newSqlQuery": "Yeni SQL Sorgusu",
|
||||
"newQuery": "Yeni Sorgu",
|
||||
"openMongoShell": "Mongo Shell'i Aç",
|
||||
"newShell": "Yeni Kabuk",
|
||||
"openCassandraShell": "Cassandra Shell'i Aç",
|
||||
"newStoredProcedure": "Yeni Saklı Yordam",
|
||||
"newUdf": "Yeni UDF",
|
||||
"newTrigger": "Yeni Tetikleyici",
|
||||
"deleteStoredProcedure": "Saklı Yordamı Sil",
|
||||
"deleteTrigger": "Tetikleyiciyi Sil",
|
||||
"deleteUdf": "Kullanıcı Tanımlı İşlevi Sil"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "Yeni Öğe",
|
||||
"newDocument": "Yeni Belge",
|
||||
"uploadItem": "Öğeyi Karşıya Yükle",
|
||||
"applyFilter": "Filtre Uygula",
|
||||
"unsavedChanges": "Kaydedilmemiş değişiklikler",
|
||||
"unsavedChangesMessage": "Kaydedilmemiş değişiklikleriniz kaybedilir. Devam etmek istiyor musunuz?",
|
||||
"createDocumentFailed": "Belge oluşturma işlemi başarısız oldu",
|
||||
"updateDocumentFailed": "Belge güncelleştirme işlemi başarısız oldu",
|
||||
"documentDeleted": "Belge başarıyla silindi.",
|
||||
"deleteDocumentDialogTitle": "Belgeyi sil",
|
||||
"deleteDocumentsDialogTitle": "Belgeleri sil",
|
||||
"throttlingError": "Bazı belgeler hız sınırlama hatası nedeniyle silinemedi. Lütfen daha sonra yeniden deneyin. Gelecekte bunu engellemek için, kapsayıcınızda veya veritabanınızda aktarım hızını artırmayı göz önünde bulundurun.",
|
||||
"deleteFailed": "Belgeleri silme işlemi başarısız oldu ({{error}})",
|
||||
"missingShardProperty": "Belgede parça özelliği eksik: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Belgeler kılavuzu yenilenemedi",
|
||||
"confirmDelete": "{{documentName}} belgesini silmek istediğinizden emin misiniz?",
|
||||
"confirmDeleteTitle": "Silmeyi onaylayın",
|
||||
"selectedItems": "seçili {{count}} öğe",
|
||||
"selectedItem": "seçili öğe",
|
||||
"selectedDocuments": "seçili {{count}} belge",
|
||||
"selectedDocument": "seçili belge",
|
||||
"deleteDocumentFailedLog": "{{documentId}} belgesi silinemedi. Durum kodu: {{statusCode}}",
|
||||
"deleteSuccessLog": "{{count}} belge başarıyla silindi",
|
||||
"deleteThrottledLog": "“İstek fazla büyük” (429) hatası nedeniyle {{count}} belge silinemedi. Yeniden deneniyor...",
|
||||
"missingShardKeyLog": "Yeni belge kaydedilemedi: Belge parça anahtarı tanımlanmadı",
|
||||
"filterTooltip": "Bir sorgu koşulu yazın veya listeden bir koşul seçin.",
|
||||
"loadMore": "Daha fazla yükle",
|
||||
"documentEditor": "Belge düzenleyicisi",
|
||||
"savedFilters": "Kaydedilmiş filtreler",
|
||||
"defaultFilters": "Varsayılan filtreler",
|
||||
"abort": "Durdur",
|
||||
"deletingDocuments": "{{count}} belge siliniyor",
|
||||
"deletedDocumentsSuccess": "{{count}} belge başarıyla silindi.",
|
||||
"deleteAborted": "Belgeleri silme işlemi durduruldu.",
|
||||
"failedToDeleteDocuments": "{{count}} belge silinemedi.",
|
||||
"requestTooLargeBase": "Bazı silme istekleri \"İstek fazla büyük\" (429) hatası nedeniyle başarısız oldu",
|
||||
"retriedSuccessfully": "ancak başarıyla yeniden denendi.",
|
||||
"retryingNow": "Şimdi yeniden deneniyor.",
|
||||
"increaseThroughputTip": "Gelecekte bunu engellemek için, kapsayıcınızda veya veritabanınızda aktarım hızını artırmayı göz önünde bulundurun.",
|
||||
"numberOfSelectedDocuments": "Seçili belge sayısı: {{count}}",
|
||||
"mongoFilterPlaceholder": "Bir sorgu koşulu yazın (örneğin, {\"id\":\"foo\"}) veya açılan listeden bir koşul seçin. Ayrıca tüm belgeleri sorgulamak için boş bırakabilirsiniz.",
|
||||
"sqlFilterPlaceholder": "Bir sorgu koşulu yazın (örneğin, WHERE c.id=\"1\") veya açılan listeden bir koşul seçin. Ayrıca tüm belgeleri sorgulamak için boş bırakabilirsiniz.",
|
||||
"error": "Hata",
|
||||
"warning": "Uyarı"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Sorguyu Yürüt",
|
||||
"executeSelection": "Seçimi Yürüt",
|
||||
"saveQuery": "Sorguyu Kaydet",
|
||||
"downloadQuery": "Sorguyu İndir",
|
||||
"cancelQuery": "Sorguyu iptal et",
|
||||
"openSavedQueries": "Kaydedilmiş Sorguları Aç",
|
||||
"vertical": "Dikey kategori",
|
||||
"horizontal": "Yatay",
|
||||
"view": "Görünüm",
|
||||
"editingQuery": "Sorgu Düzenleniyor"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Saklı Yordam Kimliği",
|
||||
"idPlaceholder": "Yeni saklı yordam kimliğini girin",
|
||||
"idAriaLabel": "Saklı yordam kimliği",
|
||||
"body": "Saklı Yordam Gövdesi",
|
||||
"bodyAriaLabel": "Saklı yordam gövdesi",
|
||||
"successfulExecution": "Saklı yordamın başarıyla yürütülmesi",
|
||||
"resultAriaLabel": "Saklı yordam sonucunu yürüt",
|
||||
"logsAriaLabel": "Saklı yordam günlüklerini yürüt",
|
||||
"errors": "Hatalar:",
|
||||
"errorDetailsAriaLabel": "Hata ayrıntıları bağlantısı",
|
||||
"moreDetails": "Diğer ayrıntılar",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Tetikleyici Kimliği",
|
||||
"idPlaceholder": "Yeni tetikleyici kimliğini girin",
|
||||
"type": "Tetikleyici Türü",
|
||||
"operation": "Tetikleyici İşlemi",
|
||||
"body": "Tetikleyici Gövdesi",
|
||||
"bodyAriaLabel": "Tetikleyici gövdesi",
|
||||
"pre": "Önce",
|
||||
"post": "Gönder",
|
||||
"all": "Tümü",
|
||||
"operationCreate": "Oluştur",
|
||||
"operationDelete": "Sil",
|
||||
"operationReplace": "Değiştir"
|
||||
},
|
||||
"udf": {
|
||||
"id": "Kullanıcı Tanımlı İşlev Kimliği",
|
||||
"idPlaceholder": "Yeni kullanıcı tanımlı işlev kimliğini girin",
|
||||
"body": "Kullanıcı Tanımlı İşlev Gövdesi",
|
||||
"bodyAriaLabel": "Kullanıcı tanımlı işlev gövdesi"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Kaydedilmemiş değişiklikler",
|
||||
"changesWillBeLost": "Değişiklikler kaybolacak. Devam etmek istiyor musunuz?",
|
||||
"resolveConflictFailed": "Çakışmayı çözme işlemi başarısız oldu",
|
||||
"deleteConflictFailed": "Çakışmayı silme işlemi başarısız oldu",
|
||||
"refreshGridFailed": "Belgeler kılavuzu yenilenemedi"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "Delete {{databaseName}}",
|
||||
"warningMessage": "Warning! The action you are about to take cannot be undone. Continuing will permanently delete this resource and all of its children resources.",
|
||||
"confirmPrompt": "Confirm by typing the {{databaseName}} id (name)",
|
||||
"inputMismatch": "Input {{databaseName}} name \"{{input}}\" does not match the selected {{databaseName}} \"{{selectedId}}\"",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{databaseName}}?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "Delete {{collectionName}}",
|
||||
"confirmPrompt": "Confirm by typing the {{collectionName}} id",
|
||||
"inputMismatch": "Input id {{input}} does not match the selected {{selectedId}}",
|
||||
"feedbackTitle": "Help us improve Azure Cosmos DB!",
|
||||
"feedbackReason": "What is the reason why you are deleting this {{collectionName}}?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "Database {{suffix}}",
|
||||
"databaseIdLabel": "Database id",
|
||||
"keyspaceIdLabel": "Keyspace id",
|
||||
"databaseIdPlaceholder": "Type a new {{databaseLabel}} id",
|
||||
"databaseTooltip": "A {{databaseLabel}} is a logical container of one or more {{collectionsLabel}}",
|
||||
"shareThroughput": "Share throughput across {{collectionsLabel}}",
|
||||
"shareThroughputTooltip": "Provisioned throughput at the {{databaseLabel}} level will be shared across all {{collectionsLabel}} within the {{databaseLabel}}.",
|
||||
"greaterThanError": "Please enter a value greater than {{minValue}} for autopilot throughput",
|
||||
"acknowledgeSpendError": "Please acknowledge the estimated {{period}} spend."
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "Create new",
|
||||
"useExisting": "Use existing",
|
||||
"databaseTooltip": "A database is analogous to a namespace. It is the unit of management for a set of {{collectionName}}.",
|
||||
"shareThroughput": "Share throughput across {{collectionName}}",
|
||||
"shareThroughputTooltip": "Throughput configured at the database level will be shared across all {{collectionName}} within the database.",
|
||||
"collectionIdLabel": "{{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "Choose existing {{databaseName}} id",
|
||||
"existingDatabasePlaceholder": "Choose existing {{databaseName}} id",
|
||||
"indexing": "Indexing",
|
||||
"turnOnIndexing": "Turn on indexing",
|
||||
"automatic": "Automatic",
|
||||
"turnOffIndexing": "Turn off indexing",
|
||||
"off": "Off",
|
||||
"sharding": "Sharding",
|
||||
"shardingTooltip": "Sharded collections split your data across many replica sets (shards) to achieve unlimited scalability. Sharded collections require choosing a shard key (field) to evenly distribute your data.",
|
||||
"unsharded": "Unsharded",
|
||||
"unshardedLabel": "Unsharded (20GB limit)",
|
||||
"sharded": "Sharded",
|
||||
"addPartitionKey": "Add hierarchical partition key",
|
||||
"hierarchicalPartitionKeyInfo": "This feature allows you to partition your data with up to three levels of keys for better data distribution. Requires .NET V3, Java V4 SDK, or preview JavaScript V3 SDK.",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this {{collectionName}}",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a {{collectionName}} within a database that has throughput provisioned. This dedicated throughput amount will not be shared with other {{collectionNamePlural}} in the database and does not count towards the throughput you provisioned for the database. This throughput amount will be billed in addition to the throughput amount you provisioned at the database level.",
|
||||
"uniqueKeysPlaceholderMongo": "Comma separated paths e.g. firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "Comma separated paths e.g. /firstName,/address/zipCode",
|
||||
"addUniqueKey": "Add unique key",
|
||||
"enableAnalyticalStore": "Enable analytical store",
|
||||
"disableAnalyticalStore": "Disable analytical store",
|
||||
"on": "On",
|
||||
"analyticalStoreSynapseLinkRequired": "Azure Synapse Link is required for creating an analytical store {{collectionName}}. Enable Synapse Link for this Cosmos DB account.",
|
||||
"enable": "Enable",
|
||||
"containerVectorPolicy": "Container Vector Policy",
|
||||
"containerFullTextSearchPolicy": "Container Full Text Search Policy",
|
||||
"advanced": "Advanced",
|
||||
"mongoIndexingTooltip": "The _id field is indexed by default. Creating a wildcard index for all fields will optimize queries and is recommended for development.",
|
||||
"createWildcardIndex": "Create a Wildcard Index on all fields",
|
||||
"legacySdkCheckbox": "My application uses an older Cosmos .NET or Java SDK version (.NET V1 or Java V2)",
|
||||
"legacySdkInfo": "To ensure compatibility with older SDKs, the created container will use a legacy partitioning scheme that supports partition key values of size only up to 101 bytes. If this is enabled, you will not be able to use hierarchical partition keys.",
|
||||
"indexingOnInfo": "All properties in your documents will be indexed by default for flexible and efficient queries.",
|
||||
"indexingOffInfo": "Indexing will be turned off. Recommended if you don't need to run queries or only have key value operations.",
|
||||
"indexingOffWarning": "By creating this container with indexing turned off, you will not be able to make any indexing policy changes. Indexing changes are only allowed on a container with a indexing policy.",
|
||||
"acknowledgeSpendErrorMonthly": "Please acknowledge the estimated monthly spend.",
|
||||
"acknowledgeSpendErrorDaily": "Please acknowledge the estimated daily spend.",
|
||||
"unshardedMaxRuError": "Unsharded collections support up to 10,000 RUs",
|
||||
"acknowledgeShareThroughputError": "Please acknowledge the estimated cost of this dedicated throughput.",
|
||||
"vectorPolicyError": "Please fix errors in container vector policy",
|
||||
"fullTextSearchPolicyError": "Please fix errors in container full text search policy",
|
||||
"addingSampleDataSet": "Adding sample data set"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "The shard key (field) is used to split your data across many replica sets (shards) to achieve unlimited scalability. It's critical to choose a field that will evenly distribute your data.",
|
||||
"partitionKeyTooltip": "The {{partitionKeyName}} is used to automatically distribute data across partitions for scalability. Choose a property in your JSON document that has a wide range of values and evenly distributes request volume.",
|
||||
"partitionKeyTooltipSqlSuffix": " For small read-heavy workloads or write-heavy workloads of any size, id is often a good choice.",
|
||||
"shardKeyLabel": "Shard key",
|
||||
"partitionKeyLabel": "Partition key",
|
||||
"shardKeyPlaceholder": "e.g., categoryId",
|
||||
"partitionKeyPlaceholderDefault": "e.g., /address",
|
||||
"partitionKeyPlaceholderFirst": "Required - first partition key e.g., /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "ikinci bölüm anahtarı, örneğin, /UserId",
|
||||
"partitionKeyPlaceholderThird": "third partition key e.g., /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "e.g., /address/zipCode",
|
||||
"uniqueKeysTooltip": "Unique keys provide developers with the ability to add a layer of data integrity to their database. By creating a unique key policy when a container is created, you ensure the uniqueness of one or more values per partition key.",
|
||||
"uniqueKeysLabel": "Unique keys",
|
||||
"analyticalStoreLabel": "Analytical Store",
|
||||
"analyticalStoreTooltip": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"analyticalStoreDescription": "Enable analytical store capability to perform near real-time analytics on your operational data, without impacting the performance of transactional workloads.",
|
||||
"vectorPolicyTooltip": "Describe any properties in your data that contain vectors, so that they can be made available for similarity queries."
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "Page Options",
|
||||
"pageOptionsDescription": "Choose Custom to specify a fixed amount of query results to show, or choose Unlimited to show as many query results per page.",
|
||||
"queryResultsPerPage": "Query results per page",
|
||||
"queryResultsPerPageTooltip": "Enter the number of query results that should be shown per page.",
|
||||
"customQueryItemsPerPage": "Custom query items per page",
|
||||
"custom": "Custom",
|
||||
"unlimited": "Unlimited",
|
||||
"entraIdRbac": "Enable Entra ID RBAC",
|
||||
"entraIdRbacDescription": "Choose Automatic to enable Entra ID RBAC automatically. True/False to force enable/disable Entra ID RBAC.",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "Region Selection",
|
||||
"regionSelectionDescription": "Changes region the Cosmos Client uses to access account.",
|
||||
"selectRegion": "Select Region",
|
||||
"selectRegionTooltip": "Changes the account endpoint used to perform client operations.",
|
||||
"globalDefault": "Global (Default)",
|
||||
"readWrite": "(Read/Write)",
|
||||
"read": "(Read)",
|
||||
"queryTimeout": "Query Timeout",
|
||||
"queryTimeoutDescription": "When a query reaches a specified time limit, a popup with an option to cancel the query will show unless automatic cancellation has been enabled.",
|
||||
"enableQueryTimeout": "Enable query timeout",
|
||||
"queryTimeoutMs": "Query timeout (ms)",
|
||||
"automaticallyCancelQuery": "Automatically cancel query after timeout",
|
||||
"ruLimit": "RU Limit",
|
||||
"ruLimitDescription": "If a query exceeds a configured RU limit, the query will be aborted.",
|
||||
"enableRuLimit": "Enable RU limit",
|
||||
"ruLimitLabel": "RU Limit (RU)",
|
||||
"defaultQueryResults": "Default Query Results View",
|
||||
"defaultQueryResultsDescription": "Select the default view to use when displaying query results.",
|
||||
"retrySettings": "Retry Settings",
|
||||
"retrySettingsDescription": "Retry policy associated with throttled requests during CosmosDB queries.",
|
||||
"maxRetryAttempts": "Max retry attempts",
|
||||
"maxRetryAttemptsTooltip": "Max number of retries to be performed for a request. Default value 9.",
|
||||
"fixedRetryInterval": "Fixed retry interval (ms)",
|
||||
"fixedRetryIntervalTooltip": "Fixed retry interval in milliseconds to wait between each retry ignoring the retryAfter returned as part of the response. Default value is 0 milliseconds.",
|
||||
"maxWaitTime": "Max wait time (s)",
|
||||
"maxWaitTimeTooltip": "Max wait time in seconds to wait for a request while the retries are happening. Default value 30 seconds.",
|
||||
"enableContainerPagination": "Enable container pagination",
|
||||
"enableContainerPaginationDescription": "Load 50 containers at a time. Currently, containers are not pulled in alphanumeric order.",
|
||||
"enableCrossPartitionQuery": "Enable cross-partition query",
|
||||
"enableCrossPartitionQueryDescription": "Send more than one request while executing a query. More than one request is necessary if the query is not scoped to single partition key value.",
|
||||
"maxDegreeOfParallelism": "Maksimum paralellik derecesi",
|
||||
"maxDegreeOfParallelismDescription": "Gets or sets the number of concurrent operations run client side during parallel query execution. A positive property value limits the number of concurrent operations to the set value. If it is set to less than 0, the system automatically decides the number of concurrent operations to run.",
|
||||
"maxDegreeOfParallelismQuery": "Query up to the max degree of parallelism.",
|
||||
"priorityLevel": "Priority Level",
|
||||
"priorityLevelDescription": "Sets the priority level for data-plane requests from Data Explorer when using Priority-Based Execution. If \"None\" is selected, Data Explorer will not specify priority level, and the server-side default priority level will be used.",
|
||||
"displayGremlinQueryResults": "Display Gremlin query results as:",
|
||||
"displayGremlinQueryResultsDescription": "Select Graph to automatically visualize the query results as a Graph or JSON to display the results as JSON.",
|
||||
"graph": "Graph",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "Graph Auto-visualization",
|
||||
"enableSampleDatabase": "Enable sample database",
|
||||
"enableSampleDatabaseDescription": "This is a sample database and collection with synthetic product data you can use to explore using NoSQL queries. This will appear as another database in the Data Explorer UI, and is created by, and maintained by Microsoft at no cost to you.",
|
||||
"enableSampleDbAriaLabel": "Enable sample db for query exploration",
|
||||
"guidRepresentation": "Guid Representation",
|
||||
"guidRepresentationDescription": "GuidRepresentation in MongoDB refers to how Globally Unique Identifiers (GUIDs) are serialized and deserialized when stored in BSON documents. This will apply to all document operations.",
|
||||
"advancedSettings": "Advanced Settings",
|
||||
"ignorePartitionKey": "Ignore partition key on document update",
|
||||
"ignorePartitionKeyTooltip": "If checked, the partition key value will not be used to locate the document during update operations. Only use this if document updates are failing due to an abnormal partition key.",
|
||||
"clearHistory": "Clear History",
|
||||
"clearHistoryConfirm": "Devam etmek istediğinizden emin misiniz?",
|
||||
"clearHistoryDescription": "This action will clear the all customizations for this account in this browser, including:",
|
||||
"clearHistoryTabLayout": "Reset your customized tab layout, including the splitter positions",
|
||||
"clearHistoryTableColumns": "Erase your table column preferences, including any custom columns",
|
||||
"clearHistoryFilters": "Clear your filter history",
|
||||
"clearHistoryRegion": "Reset region selection to global",
|
||||
"increaseValueBy1000": "Increase value by 1000",
|
||||
"decreaseValueBy1000": "Decrease value by 1000",
|
||||
"none": "None",
|
||||
"low": "Low",
|
||||
"high": "High",
|
||||
"automatic": "Automatic",
|
||||
"enhancedQueryControl": "Enhanced query control",
|
||||
"enableQueryControl": "Enable query control",
|
||||
"explorerVersion": "Explorer Version",
|
||||
"accountId": "Account ID",
|
||||
"sessionId": "Session ID",
|
||||
"popupsDisabledError": "We were unable to establish authorization for this account, due to pop-ups being disabled in the browser.\nPlease enable pop-ups for this site and click on \"Login for Entra ID\" button",
|
||||
"failedToAcquireTokenError": "Failed to acquire authorization token automatically. Please click on \"Login for Entra ID\" button to enable Entra ID RBAC operations"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "Save Query",
|
||||
"setupCostMessage": "For compliance reasons, we save queries in a container in your Azure Cosmos account, in a separate database called “{{databaseName}}”. To proceed, we need to create a container in your account, estimated additional cost is $0.77 daily.",
|
||||
"completeSetup": "Complete setup",
|
||||
"noQueryNameError": "No query name specified",
|
||||
"invalidQueryContentError": "Invalid query content specified",
|
||||
"failedToSaveQueryError": "Failed to save query {{queryName}}",
|
||||
"failedToSetupContainerError": "Failed to setup a container for saved queries",
|
||||
"accountNotSetupError": "Failed to save query: account not setup to save queries",
|
||||
"name": "Name"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "No file specified",
|
||||
"failedToLoadQueryError": "Sorgu yüklenemedi",
|
||||
"failedToLoadQueryFromFileError": "Failed to load query from file {{fileName}}",
|
||||
"selectFilesToOpen": "Select a query document",
|
||||
"browseFiles": "Browse"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "Enter input parameters (if any)",
|
||||
"key": "Key",
|
||||
"param": "Param",
|
||||
"partitionKeyValue": "Partition key value",
|
||||
"value": "Value",
|
||||
"addNewParam": "Add New Param",
|
||||
"addParam": "Add param",
|
||||
"deleteParam": "Delete param",
|
||||
"invalidParamError": "Invalid param specified: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "Invalid param specified: {{invalidParam}} is not a valid literal value",
|
||||
"stringType": "String",
|
||||
"customType": "Custom"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "No files were specified. Please input at least one file.",
|
||||
"selectJsonFiles": "Select JSON Files",
|
||||
"selectJsonFilesTooltip": "Select one or more JSON files to upload. Each file can contain a single JSON document or an array of JSON documents. The combined size of all files in an individual upload operation must be less than 2 MB. You can perform multiple upload operations for larger data sets.",
|
||||
"fileNameColumn": "FILE NAME",
|
||||
"statusColumn": "STATUS",
|
||||
"uploadStatus": "{{numSucceeded}} created, {{numThrottled}} throttled, {{numFailed}} errors",
|
||||
"uploadedFiles": "Uploaded files"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "Failed to copy {{name}} to {{destination}}",
|
||||
"uploadFailedError": "Failed to upload {{name}}",
|
||||
"location": "Location",
|
||||
"locationAriaLabel": "Location",
|
||||
"selectLocation": "Select a notebook location to copy",
|
||||
"name": "Name"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "Failed to publish {{notebookName}} to gallery",
|
||||
"publishDescription": "When published, this notebook will appear in the Azure Cosmos DB notebooks public gallery. Make sure you have removed any sensitive data or output before publishing.",
|
||||
"publishPrompt": "Would you like to publish and share \"{{name}}\" to the gallery?",
|
||||
"coverImage": "Cover image",
|
||||
"coverImageUrl": "Cover image url",
|
||||
"name": "Name",
|
||||
"description": "Description",
|
||||
"tags": "Tags",
|
||||
"tagsPlaceholder": "Optional tag 1, Optional tag 2",
|
||||
"preview": "Preview",
|
||||
"urlType": "URL",
|
||||
"customImage": "Custom Image",
|
||||
"takeScreenshot": "Take Screenshot",
|
||||
"useFirstDisplayOutput": "Use First Display Output",
|
||||
"failedToCaptureOutput": "Failed to capture first output",
|
||||
"outputDoesNotExist": "Output does not exist for any of the cells.",
|
||||
"failedToConvertError": "Failed to convert {{fileName}} to base64 format",
|
||||
"failedToUploadError": "Failed to upload {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "Failed to start data transfer job",
|
||||
"suboptimalPartitionKeyError": "Warning: The system has detected that your collection may be using a suboptimal partition key",
|
||||
"description": "When changing a container’s partition key, you will need to create a destination container with the correct partition key. You may also select an existing destination container.",
|
||||
"sourceContainerId": "Source {{collectionName}} id",
|
||||
"destinationContainerId": "Destination {{collectionName}} id",
|
||||
"collectionIdTooltip": "Unique identifier for the {{collectionName}} and used for id-based routing through REST and all SDKs.",
|
||||
"collectionIdPlaceholder": "e.g., {{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} id, Example {{collectionName}}1",
|
||||
"existingContainers": "Existing Containers",
|
||||
"partitionKeyWarning": "The destination container must not already exist. Data Explorer will create a new destination container for you."
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "Keyspace name",
|
||||
"keyspaceTooltip": "Select an existing keyspace or enter a new keyspace id.",
|
||||
"tableIdLabel": "Enter CQL command to create the table.",
|
||||
"enterTableId": "Enter table Id",
|
||||
"tableSchemaAriaLabel": "Table schema",
|
||||
"provisionDedicatedThroughput": "Provision dedicated throughput for this table",
|
||||
"provisionDedicatedThroughputTooltip": "You can optionally provision dedicated throughput for a table within a keyspace that has throughput provisioned. This dedicated throughput amount will not be shared with other tables in the keyspace and does not count towards the throughput you provisioned for the keyspace. This throughput amount will be billed in addition to the throughput amount you provisioned at the keyspace level."
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "Add Property",
|
||||
"addRow": "Add Row",
|
||||
"addEntity": "Add Entity",
|
||||
"back": "back",
|
||||
"nullFieldsWarning": "Warning: Null fields will not be displayed for editing.",
|
||||
"propertyEmptyError": "{{property}} cannot be empty. Please input a value for {{property}}",
|
||||
"whitespaceError": "{{property}} cannot have whitespace. Please input a value for {{property}} without whitespace",
|
||||
"propertyTypeEmptyError": "Property type cannot be empty. Please select a type from the dropdown for property {{property}}"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "Sorgulamak istediğiniz sütunları seçin.",
|
||||
"availableColumns": "Available Columns"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "Select which columns to display in your view of items in your container.",
|
||||
"searchFields": "Search fields",
|
||||
"reset": "Reset",
|
||||
"partitionKeySuffix": " (partition key)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "Add Property"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "Global secondary index container id",
|
||||
"globalSecondaryIndexIdPlaceholder": "e.g., indexbyEmailId",
|
||||
"projectionQuery": "Projection query",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "Learn more about defining global secondary indexes.",
|
||||
"disabledTitle": "A global secondary index is already being created. Please wait for it to complete before creating another one."
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "Input {{input}} does not match the selected {{selectedId}}"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "Information",
|
||||
"moreDetails": "More details"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "上传",
|
||||
"connect": "连接",
|
||||
"remove": "删除",
|
||||
"load": "加载",
|
||||
"publish": "发布",
|
||||
"browse": "浏览",
|
||||
"increaseValueBy1": "将值增加 1",
|
||||
"decreaseValueBy1": "将值减少 1"
|
||||
},
|
||||
@@ -294,434 +291,5 @@
|
||||
"errorCreateContainer": "未能创建容器: {{error}}",
|
||||
"errorImportData": "未能导入数据: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "新建 {{containerName}}",
|
||||
"restoreContainer": "还原 {{containerName}}",
|
||||
"deleteDatabase": "删除 {{databaseName}}",
|
||||
"deleteContainer": "删除 {{containerName}}",
|
||||
"newSqlQuery": "新建 SQL 查询",
|
||||
"newQuery": "新建查询",
|
||||
"openMongoShell": "打开 Mongo Shell",
|
||||
"newShell": "新建 Shell",
|
||||
"openCassandraShell": "打开 Cassandra Shell",
|
||||
"newStoredProcedure": "新建存储过程",
|
||||
"newUdf": "新建 UDF",
|
||||
"newTrigger": "新建触发器",
|
||||
"deleteStoredProcedure": "删除存储过程",
|
||||
"deleteTrigger": "删除触发器",
|
||||
"deleteUdf": "删除用户定义函数"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "新建项目",
|
||||
"newDocument": "新建文档",
|
||||
"uploadItem": "上传项目",
|
||||
"applyFilter": "应用筛选器",
|
||||
"unsavedChanges": "未保存的更改",
|
||||
"unsavedChangesMessage": "未保存的更改将会丢失。是否要继续?",
|
||||
"createDocumentFailed": "创建文档失败",
|
||||
"updateDocumentFailed": "更新文档失败",
|
||||
"documentDeleted": "已成功删除文档。",
|
||||
"deleteDocumentDialogTitle": "删除文档",
|
||||
"deleteDocumentsDialogTitle": "删除文档",
|
||||
"throttlingError": "由于速率限制错误,某些文档无法删除。请稍后重试。若要防止将来出现这种情况,请考虑增加容器或数据库的吞吐量。",
|
||||
"deleteFailed": "删除文档失败({{error}})",
|
||||
"missingShardProperty": "文档缺少分片属性: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "刷新文档网格失败",
|
||||
"confirmDelete": "确定要删除 {{documentName}}?",
|
||||
"confirmDeleteTitle": "确认删除",
|
||||
"selectedItems": "所选 {{count}} 个项",
|
||||
"selectedItem": "所选项目",
|
||||
"selectedDocuments": "所选 {{count}} 个文档",
|
||||
"selectedDocument": "所选文档",
|
||||
"deleteDocumentFailedLog": "未能删除具有状态代码 {{statusCode}} 的文档 {{documentId}}",
|
||||
"deleteSuccessLog": "已成功删除 {{count}} 个文档",
|
||||
"deleteThrottledLog": "由于“请求太大”(429)错误,未能删除 {{count}} 个文档。正在重试...",
|
||||
"missingShardKeyLog": "未能保存新文档: 未定义文档分片键",
|
||||
"filterTooltip": "键入查询谓词或从列表中选择一个。",
|
||||
"loadMore": "加载更多",
|
||||
"documentEditor": "文档编辑器",
|
||||
"savedFilters": "已保存的筛选器",
|
||||
"defaultFilters": "默认筛选器",
|
||||
"abort": "中止",
|
||||
"deletingDocuments": "正在删除 {{count}} 个文档",
|
||||
"deletedDocumentsSuccess": "已成功删除 {{count}} 个文档。",
|
||||
"deleteAborted": "已中止删除文档。",
|
||||
"failedToDeleteDocuments": "未能删除 {{count}} 个文档。",
|
||||
"requestTooLargeBase": "由于“请求太大”异常(429),某些删除请求失败",
|
||||
"retriedSuccessfully": "但已成功重试。",
|
||||
"retryingNow": "正在重试。",
|
||||
"increaseThroughputTip": "若要防止将来出现这种情况,请考虑增加容器或数据库的吞吐量。",
|
||||
"numberOfSelectedDocuments": "所选文档数: {{count}}",
|
||||
"mongoFilterPlaceholder": "键入查询谓词(例如 {\"id\":\"foo\"}),或从下拉列表中选择一个,或留空以查询所有文档。",
|
||||
"sqlFilterPlaceholder": "键入查询谓词(例如 WHERE c.id=\"1\"),或从下拉列表中选择一个,或留空以查询所有文档。",
|
||||
"error": "错误",
|
||||
"warning": "警告"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "执行查询",
|
||||
"executeSelection": "执行选择",
|
||||
"saveQuery": "保存查询",
|
||||
"downloadQuery": "下载查询",
|
||||
"cancelQuery": "取消查询",
|
||||
"openSavedQueries": "打开已保存的查询",
|
||||
"vertical": "垂直",
|
||||
"horizontal": "水平",
|
||||
"view": "查看",
|
||||
"editingQuery": "正在编辑查询"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "存储过程 ID",
|
||||
"idPlaceholder": "输入新的存储过程 ID",
|
||||
"idAriaLabel": "存储过程 ID",
|
||||
"body": "存储过程主体",
|
||||
"bodyAriaLabel": "存储过程主体",
|
||||
"successfulExecution": "已成功执行存储过程",
|
||||
"resultAriaLabel": "执行存储过程结果",
|
||||
"logsAriaLabel": "执行存储过程日志",
|
||||
"errors": "错误:",
|
||||
"errorDetailsAriaLabel": "错误详细信息链接",
|
||||
"moreDetails": "更多详细信息",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "触发器 ID",
|
||||
"idPlaceholder": "输入新的触发器 ID",
|
||||
"type": "触发器类型",
|
||||
"operation": "触发器操作",
|
||||
"body": "触发器正文",
|
||||
"bodyAriaLabel": "触发器正文",
|
||||
"pre": "预",
|
||||
"post": "发布",
|
||||
"all": "全部",
|
||||
"operationCreate": "创建",
|
||||
"operationDelete": "删除",
|
||||
"operationReplace": "替换"
|
||||
},
|
||||
"udf": {
|
||||
"id": "用户定义的函数 ID",
|
||||
"idPlaceholder": "输入新的用户定义的函数 ID",
|
||||
"body": "用户定义的函数正文",
|
||||
"bodyAriaLabel": "用户定义的函数正文"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "未保存的更改",
|
||||
"changesWillBeLost": "更改将丢失。是否要继续?",
|
||||
"resolveConflictFailed": "解决冲突失败",
|
||||
"deleteConflictFailed": "删除冲突失败",
|
||||
"refreshGridFailed": "刷新文档网格失败"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "删除 {{databaseName}}",
|
||||
"warningMessage": "警告!你将执行的操作无法撤消。继续操作将永久删除此资源及其所有子资源。",
|
||||
"confirmPrompt": "通过键入 {{databaseName}} ID(名称)进行确认",
|
||||
"inputMismatch": "输入的 {{databaseName}} 名称 '{{input}}' 与所选的 {{databaseName}} '{{selectedId}}' 不匹配",
|
||||
"feedbackTitle": "帮助我们改进 Azure Cosmos DB!",
|
||||
"feedbackReason": "删除此 {{databaseName}} 的原因是什么?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "删除 {{collectionName}}",
|
||||
"confirmPrompt": "通过键入 {{collectionName}} ID 进行确认",
|
||||
"inputMismatch": "输入 id {{input}} 与所选 {{selectedId}} 不匹配",
|
||||
"feedbackTitle": "帮助我们改进 Azure Cosmos DB!",
|
||||
"feedbackReason": "删除此 {{collectionName}} 的原因是什么?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "数据库 {{suffix}}",
|
||||
"databaseIdLabel": "数据库 ID",
|
||||
"keyspaceIdLabel": "键空间 ID",
|
||||
"databaseIdPlaceholder": "键入新的 {{databaseLabel}} ID",
|
||||
"databaseTooltip": "{{databaseLabel}} 是一个或多个 {{collectionsLabel}} 的逻辑容器",
|
||||
"shareThroughput": "跨 {{collectionsLabel}} 共享吞吐量",
|
||||
"shareThroughputTooltip": "{{databaseLabel}} 级别的预配吞吐量将在 {{databaseLabel}} 内的所有 {{collectionsLabel}} 之间共享。",
|
||||
"greaterThanError": "对于 autopilot 吞吐量,请输入大于 {{minValue}} 的值",
|
||||
"acknowledgeSpendError": "请确认估计的 {{period}} 支出。"
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "新建",
|
||||
"useExisting": "使用现有项",
|
||||
"databaseTooltip": "数据库类似于命名空间。它是一组 {{collectionName}} 的管理单元。",
|
||||
"shareThroughput": "跨 {{collectionName}} 共享吞吐量",
|
||||
"shareThroughputTooltip": "在数据库级别配置的吞吐量将在数据库内的所有 {{collectionName}} 之间共享。",
|
||||
"collectionIdLabel": "{{collectionName}} id",
|
||||
"collectionIdTooltip": "{{collectionName}} 的唯一标识符,用于通过 REST 和所有 SDK 进行基于 ID 的路由。",
|
||||
"collectionIdPlaceholder": "例如,{{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID,示例 {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "选择现有的 {{databaseName}} ID",
|
||||
"existingDatabasePlaceholder": "选择现有的 {{databaseName}} ID",
|
||||
"indexing": "正在索引",
|
||||
"turnOnIndexing": "打开索引",
|
||||
"automatic": "自动",
|
||||
"turnOffIndexing": "关闭索引",
|
||||
"off": "关",
|
||||
"sharding": "正在分片",
|
||||
"shardingTooltip": "分片集合跨多个副本集(分片)拆分数据,以实现无限的可伸缩性。分片集合需要选择分片键(字段)以均匀分布数据。",
|
||||
"unsharded": "未分片",
|
||||
"unshardedLabel": "未分片(20GB 限制)",
|
||||
"sharded": "已分片",
|
||||
"addPartitionKey": "添加分层分区键",
|
||||
"hierarchicalPartitionKeyInfo": "此功能允许你使用最多三个级别的键对数据进行分区,以便更好地进行数据分发。需要 .NET V3、Java V4 SDK 或预览版 JavaScript V3 SDK。",
|
||||
"provisionDedicatedThroughput": "为此 {{collectionName}} 预配专用吞吐量",
|
||||
"provisionDedicatedThroughputTooltip": "可以选择为已预配吞吐量的数据库内的 {{collectionName}} 预配专用吞吐量。此专用吞吐量不会与数据库中的其他 {{collectionNamePlural}} 共享,也不计入为数据库预配的吞吐量。除了在数据库级别预配的吞吐量量外,还将对此吞吐量进行计费。",
|
||||
"uniqueKeysPlaceholderMongo": "逗号分隔的路径,例如 firstName, address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "逗号分隔的路径,例如 /firstName、/address/zipCode",
|
||||
"addUniqueKey": "添加唯一键",
|
||||
"enableAnalyticalStore": "启用分析存储",
|
||||
"disableAnalyticalStore": "禁用分析存储",
|
||||
"on": "开",
|
||||
"analyticalStoreSynapseLinkRequired": "创建分析存储 {{collectionName}} 时需要 Azure Synapse Link。为此 Cosmos DB 帐户启用 Synapse Link。",
|
||||
"enable": "启用",
|
||||
"containerVectorPolicy": "容器向量策略",
|
||||
"containerFullTextSearchPolicy": "容器全文搜索策略",
|
||||
"advanced": "高级",
|
||||
"mongoIndexingTooltip": "默认为 _id 字段编制索引。为所有字段创建通配符索引将优化查询,建议用于开发。",
|
||||
"createWildcardIndex": "在所有字段上创建通配符索引",
|
||||
"legacySdkCheckbox": "我的应用程序使用较旧的 Cosmos .NET 或 Java SDK 版本(.NET V1 或 Java V2)",
|
||||
"legacySdkInfo": "为了确保与较旧的 SDK 兼容,创建的容器将使用旧版分区方案,该方案仅支持大小上限为 101 字节的分区键值。如果启用此功能,将无法使用分层分区键。",
|
||||
"indexingOnInfo": "默认情况下,将为文档中的所有属性编制索引,以便进行灵活高效的查询。",
|
||||
"indexingOffInfo": "索引将关闭。如果不需要运行查询或仅具有键值操作,则建议使用。",
|
||||
"indexingOffWarning": "通过在关闭索引的情况下创建此容器,你将无法进行任何索引策略更改。仅允许对具有索引策略的容器进行索引更改。",
|
||||
"acknowledgeSpendErrorMonthly": "请确认估计的每月支出。",
|
||||
"acknowledgeSpendErrorDaily": "请确认估计的每日支出。",
|
||||
"unshardedMaxRuError": "未分片集合最多支持 10,000 RU",
|
||||
"acknowledgeShareThroughputError": "请确认此专用吞吐量的估计成本。",
|
||||
"vectorPolicyError": "请修复容器向量策略中的错误",
|
||||
"fullTextSearchPolicyError": "请修复容器全文搜索策略中的错误",
|
||||
"addingSampleDataSet": "添加示例数据集"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "分片键(字段)用于跨多个副本集(分片)拆分数据,以实现无限的可伸缩性。选择将均匀分发数据的字段至关重要。",
|
||||
"partitionKeyTooltip": "{{partitionKeyName}} 用于跨分区自动分发数据,以实现可伸缩性。在 JSON 文档中选择一个具有各种值并均匀分布请求卷的属性。",
|
||||
"partitionKeyTooltipSqlSuffix": " 对于小型读密集型工作负载或任何规模的写密集型工作负载,id 通常是一个不错的选择。",
|
||||
"shardKeyLabel": "分片键",
|
||||
"partitionKeyLabel": "分区键",
|
||||
"shardKeyPlaceholder": "例如,categoryId",
|
||||
"partitionKeyPlaceholderDefault": "例如,/address",
|
||||
"partitionKeyPlaceholderFirst": "必需 - 第一个分区键,例如 /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "第二个分区键,例如 /UserId",
|
||||
"partitionKeyPlaceholderThird": "第三个分区键,例如 /SessionId",
|
||||
"partitionKeyPlaceholderGraph": "例如,/address/zipCode",
|
||||
"uniqueKeysTooltip": "唯一键使开发人员能够向其数据库添加一层数据完整性。通过在创建容器时创建唯一键策略,可以确保每个分区键一个或多个值的唯一性。",
|
||||
"uniqueKeysLabel": "唯一键",
|
||||
"analyticalStoreLabel": "分析存储",
|
||||
"analyticalStoreTooltip": "使分析存储功能能够对作数据执行近实时分析,而不会影响事务工作负载的性能。",
|
||||
"analyticalStoreDescription": "使分析存储功能能够对作数据执行近实时分析,而不会影响事务工作负载的性能。",
|
||||
"vectorPolicyTooltip": "描述数据中包含向量的任何属性,以便它们可用于相似性查询。"
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "页面选项",
|
||||
"pageOptionsDescription": "选择“自定义”可指定要显示的固定数量的查询结果,选择“无限制”可显示每页任意数量的查询结果。",
|
||||
"queryResultsPerPage": "每页查询结果",
|
||||
"queryResultsPerPageTooltip": "输入每页应显示的查询结果数。",
|
||||
"customQueryItemsPerPage": "每页自定义查询项",
|
||||
"custom": "自定义",
|
||||
"unlimited": "无限制",
|
||||
"entraIdRbac": "启用 Entra ID RBAC",
|
||||
"entraIdRbacDescription": "选择“自动”以自动启用 Entra ID RBAC。如果为 True/False,则强制启用/禁用 Entra ID RBAC。",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "区域选择",
|
||||
"regionSelectionDescription": "更改 Cosmos 客户端用于访问帐户的区域。",
|
||||
"selectRegion": "选择区域",
|
||||
"selectRegionTooltip": "更改用于执行客户端操作的帐户终结点。",
|
||||
"globalDefault": "全局(默认)",
|
||||
"readWrite": "(读/写)",
|
||||
"read": "(读取)",
|
||||
"queryTimeout": "查询超时",
|
||||
"queryTimeoutDescription": "当查询达到指定的时间限制时,将显示一个弹出窗口,其中包含取消查询的选项,除非已启用自动取消。",
|
||||
"enableQueryTimeout": "启用查询超时",
|
||||
"queryTimeoutMs": "查询超时(毫秒)",
|
||||
"automaticallyCancelQuery": "超时后自动取消查询",
|
||||
"ruLimit": "RU 限制",
|
||||
"ruLimitDescription": "如果查询超过配置的 RU 限制,则查询将中止。",
|
||||
"enableRuLimit": "启用 RU 限制",
|
||||
"ruLimitLabel": "RU 限制(RU)",
|
||||
"defaultQueryResults": "默认查询结果视图",
|
||||
"defaultQueryResultsDescription": "选择显示查询结果时要使用的默认视图。",
|
||||
"retrySettings": "重试设置",
|
||||
"retrySettingsDescription": "在 CosmosDB 查询期间与受限制的请求关联的重试策略。",
|
||||
"maxRetryAttempts": "最大重试次数",
|
||||
"maxRetryAttemptsTooltip": "要为请求执行的最大重试次数。默认值 9。",
|
||||
"fixedRetryInterval": "修复了重试间隔(毫秒)",
|
||||
"fixedRetryIntervalTooltip": "修复了在每次重试之间等待的重试间隔(以毫秒为单位),忽略作为响应一部分返回的 retryAfter。默认值为 0 毫秒。",
|
||||
"maxWaitTime": "最长等待时间",
|
||||
"maxWaitTimeTooltip": "重试期间等待请求的最长等待时间(以秒为单位)。默认值 30 秒。",
|
||||
"enableContainerPagination": "启用容器分页",
|
||||
"enableContainerPaginationDescription": "一次加载 50 个容器。目前,容器不会按字母数字顺序拉取。",
|
||||
"enableCrossPartitionQuery": "启用跨分区查询",
|
||||
"enableCrossPartitionQueryDescription": "执行查询时发送多个请求。如果查询的范围不限于单个分区键值,则需要多个请求。",
|
||||
"maxDegreeOfParallelism": "最大并行度",
|
||||
"maxDegreeOfParallelismDescription": "获取或设置并行查询执行期间运行客户端的并发操作数。正值会将并发操作数限制为该值。若设置为小于 0,系统将自动决定并发操作数。",
|
||||
"maxDegreeOfParallelismQuery": "查询最大并行度。",
|
||||
"priorityLevel": "优先级别",
|
||||
"priorityLevelDescription": "设置使用基于优先级的执行时来自数据资源管理器的数据平面请求的优先级。如果选择“无”,数据资源管理器将不指定优先级,将使用服务器端默认优先级。",
|
||||
"displayGremlinQueryResults": "将 Gremlin 查询结果显示为:",
|
||||
"displayGremlinQueryResultsDescription": "选择“图形”以自动将查询结果可视化为图形,或选择“JSON”以将结果显示为 JSON 格式。",
|
||||
"graph": "图形",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "图形自动可视化",
|
||||
"enableSampleDatabase": "启用示例数据库",
|
||||
"enableSampleDatabaseDescription": "这是一个包含合成产品数据的示例数据库和集合,可用于使用 NoSQL 查询进行浏览。它将作为数据资源管理器 UI 中的另一个数据库显示,由 Microsoft 创建并免费维护。",
|
||||
"enableSampleDbAriaLabel": "为查询浏览启用示例数据库",
|
||||
"guidRepresentation": "Guid 表示形式",
|
||||
"guidRepresentationDescription": "MongoDB 中的 GuidRepresentation 是指在 BSON 文档中存储全局唯一标识符(GUID)时如何进行序列化和反序列化。这适用于所有文档操作。",
|
||||
"advancedSettings": "高级设置",
|
||||
"ignorePartitionKey": "在文档更新时忽略分区键",
|
||||
"ignorePartitionKeyTooltip": "如果选中,分区键值将不会用于在更新操作期间查找文档。仅当文档更新由于异常分区键而失败时才使用此项。",
|
||||
"clearHistory": "清除历史记录",
|
||||
"clearHistoryConfirm": "确定要继续吗?",
|
||||
"clearHistoryDescription": "此操作将清除此浏览器中此帐户的所有自定义设置,包括:",
|
||||
"clearHistoryTabLayout": "重置自定义选项卡布局,包括拆分器位置",
|
||||
"clearHistoryTableColumns": "擦除表列首选项,包括任何自定义列",
|
||||
"clearHistoryFilters": "清除筛选历史记录",
|
||||
"clearHistoryRegion": "将区域选择重置为全局",
|
||||
"increaseValueBy1000": "将值增加 1000",
|
||||
"decreaseValueBy1000": "将值减小 1000",
|
||||
"none": "无",
|
||||
"low": "低",
|
||||
"high": "高",
|
||||
"automatic": "自动",
|
||||
"enhancedQueryControl": "增强的查询控制",
|
||||
"enableQueryControl": "启用查询控制",
|
||||
"explorerVersion": "资源管理器版本",
|
||||
"accountId": "帐户 ID",
|
||||
"sessionId": "会话 ID",
|
||||
"popupsDisabledError": "我们无法为此帐户建立授权,因为浏览器中已禁用弹出窗口。\n请为此网站启用弹出窗口,然后单击“登录 Entra ID”按钮",
|
||||
"failedToAcquireTokenError": "未能自动获取授权令牌。请单击“Entra ID 登录”按钮以启用 Entra ID RBAC 操作"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "保存查询",
|
||||
"setupCostMessage": "出于合规性原因,我们将在你的 Azure Cosmos 帐户中一个名为“{{databaseName}}”的独立数据库里保存查询。若要继续,我们需要在你的帐户中创建一个容器,估计每天额外费用为 0.77 美元。",
|
||||
"completeSetup": "完成设置",
|
||||
"noQueryNameError": "未指定查询名称",
|
||||
"invalidQueryContentError": "指定的查询内容无效",
|
||||
"failedToSaveQueryError": "未能保存查询 {{queryName}}",
|
||||
"failedToSetupContainerError": "未能为保存的查询设置容器",
|
||||
"accountNotSetupError": "未能保存查询: 帐户未设置,无法保存查询",
|
||||
"name": "名称"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "未指定文件",
|
||||
"failedToLoadQueryError": "未能加载查询",
|
||||
"failedToLoadQueryFromFileError": "未能从文件 {{fileName}} 加载查询",
|
||||
"selectFilesToOpen": "选择查询文档",
|
||||
"browseFiles": "浏览"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "请输入输入参数(如果有)",
|
||||
"key": "键",
|
||||
"param": "参数",
|
||||
"partitionKeyValue": "分区键值",
|
||||
"value": "值",
|
||||
"addNewParam": "添加新参数",
|
||||
"addParam": "添加参数",
|
||||
"deleteParam": "删除参数",
|
||||
"invalidParamError": "指定的参数无效: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "指定的参数无效: {{invalidParam}} 不是有效的文本值",
|
||||
"stringType": "字符串",
|
||||
"customType": "自定义"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "未指定任何文件。请输入至少一个文件。",
|
||||
"selectJsonFiles": "选择 JSON 文件",
|
||||
"selectJsonFilesTooltip": "选择一个或多个要上传的 JSON 文件。每个文件可以包含单个 JSON 文档或 JSON 文档数组。单个上传操作中所有文件的总大小必须小于 2 MB。对于较大数据集,可以执行多次上传操作。",
|
||||
"fileNameColumn": "文件名",
|
||||
"statusColumn": "状态",
|
||||
"uploadStatus": "{{numSucceeded}} 已创建,{{numThrottled}} 受限,{{numFailed}} 个错误",
|
||||
"uploadedFiles": "已上传的文件"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "未能将 {{name}} 复制到 {{destination}}",
|
||||
"uploadFailedError": "未能上传 {{name}}",
|
||||
"location": "位置",
|
||||
"locationAriaLabel": "位置",
|
||||
"selectLocation": "选择要复制的笔记本位置",
|
||||
"name": "名称"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "未能将 {{notebookName}} 发布到库",
|
||||
"publishDescription": "发布后,此笔记本将显示在 Azure Cosmos DB 笔记本公共库中。在发布之前,请确保已移除任何敏感数据或输出。",
|
||||
"publishPrompt": "是否要发布“{{name}}”并共享到库?",
|
||||
"coverImage": "封面图像",
|
||||
"coverImageUrl": "封面图像 URL",
|
||||
"name": "名称",
|
||||
"description": "说明",
|
||||
"tags": "标记",
|
||||
"tagsPlaceholder": "可选标记 1,可选标记 2",
|
||||
"preview": "预览",
|
||||
"urlType": "URL",
|
||||
"customImage": "自定义映像",
|
||||
"takeScreenshot": "生成屏幕快照",
|
||||
"useFirstDisplayOutput": "使用第一个显示输出",
|
||||
"failedToCaptureOutput": "未能捕获第一个输出",
|
||||
"outputDoesNotExist": "任何单元格都不存在输出。",
|
||||
"failedToConvertError": "未能将 {{fileName}} 转换为 base64 格式",
|
||||
"failedToUploadError": "未能上传 {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "未能启动数据传输作业",
|
||||
"suboptimalPartitionKeyError": "警告: 系统检测到集合使用的分区键可能不理想",
|
||||
"description": "更改容器的分区键时,需要使用正确的分区键创建目标容器。还可以选择现有目标容器。",
|
||||
"sourceContainerId": "源 {{collectionName}} ID",
|
||||
"destinationContainerId": "目标 {{collectionName}} ID",
|
||||
"collectionIdTooltip": "{{collectionName}} 的唯一标识符,用于通过 REST 和所有 SDK 进行基于 ID 的路由。",
|
||||
"collectionIdPlaceholder": "例如,{{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} ID,示例 {{collectionName}}1",
|
||||
"existingContainers": "现有容器",
|
||||
"partitionKeyWarning": "目标容器必须不存在。数据资源管理器将为你创建新的目标容器。"
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "键空间名称",
|
||||
"keyspaceTooltip": "选择现有键空间或输入新的键空间 ID。",
|
||||
"tableIdLabel": "输入 CQL 命令以创建表。",
|
||||
"enterTableId": "输入表 ID",
|
||||
"tableSchemaAriaLabel": "表架构",
|
||||
"provisionDedicatedThroughput": "为此表预配专用吞吐量",
|
||||
"provisionDedicatedThroughputTooltip": "可以选择为预配了吞吐量的键空间中的表预配专用吞吐量。此专用吞吐量量不会与键空间中的其他表共享,也不计入为键空间预配的吞吐量。除了在键空间级别预配的吞吐量量外,还将对此吞吐量进行计费。"
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "添加属性",
|
||||
"addRow": "添加行",
|
||||
"addEntity": "添加实体",
|
||||
"back": "返回",
|
||||
"nullFieldsWarning": "警告: 空字段将不会显示供编辑。",
|
||||
"propertyEmptyError": "{{property}} 不能为空。请输入 {{property}} 的值",
|
||||
"whitespaceError": "{{property}} 不能有空格。请为 {{property}} 输入不带空格的值",
|
||||
"propertyTypeEmptyError": "属性类型不能为空。请从属性 {{property}} 的下拉列表中选择类型"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "选择要查询的列。",
|
||||
"availableColumns": "可用列"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "选择要在容器中的项视图中显示的列。",
|
||||
"searchFields": "搜索字段",
|
||||
"reset": "重置",
|
||||
"partitionKeySuffix": " (分区键)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "添加属性"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "全局辅助索引容器 ID",
|
||||
"globalSecondaryIndexIdPlaceholder": "例如 indexbyEmailId",
|
||||
"projectionQuery": "投影查询",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "详细了解如何定义全局辅助索引。",
|
||||
"disabledTitle": "已在创建全局辅助索引。请等待它完成,然后再创建另一个。"
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "输入 {{input}} 与所选的 {{selectedId}} 不匹配"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "信息",
|
||||
"moreDetails": "更多详细信息"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,7 +7,7 @@
|
||||
"delete": "刪除",
|
||||
"update": "更新",
|
||||
"discard": "捨棄",
|
||||
"execute": "執行",
|
||||
"execute": "Execute",
|
||||
"loading": "正在載入",
|
||||
"loadingEllipsis": "正在載入...",
|
||||
"next": "下一個",
|
||||
@@ -29,9 +29,6 @@
|
||||
"upload": "上傳",
|
||||
"connect": "連線",
|
||||
"remove": "移除",
|
||||
"load": "載入",
|
||||
"publish": "發佈",
|
||||
"browse": "瀏覽",
|
||||
"increaseValueBy1": "將值增加 1",
|
||||
"decreaseValueBy1": "將值減少 1"
|
||||
},
|
||||
@@ -46,682 +43,253 @@
|
||||
"getStarted": "開始使用我們的樣本資料集、文件和其他工具。"
|
||||
},
|
||||
"quickStart": {
|
||||
"title": "啟動快速入門",
|
||||
"description": "啟動快速入門教學課程,以開始使用範例資料"
|
||||
"title": "Launch quick start",
|
||||
"description": "Launch a quick start tutorial to get started with sample data"
|
||||
},
|
||||
"newCollection": {
|
||||
"title": "新增 {{collectionName}}",
|
||||
"description": "建立用於儲存空間和輸送量的新容器"
|
||||
"title": "New {{collectionName}}",
|
||||
"description": "Create a new container for storage and throughput"
|
||||
},
|
||||
"samplesGallery": {
|
||||
"title": "Azure Cosmos DB 範例圖庫",
|
||||
"description": "探索展示可擴展的智慧型應用模式的範例。立即嘗試,體驗使用 Cosmos DB 從概念到程式碼實作可以有多快速"
|
||||
"title": "Azure Cosmos DB Samples Gallery",
|
||||
"description": "Discover samples that showcase scalable, intelligent app patterns. Try one now to see how fast you can go from concept to code with Cosmos DB"
|
||||
},
|
||||
"connectCard": {
|
||||
"title": "連線",
|
||||
"description": "偏好使用您自己的工具?找到您需要的連接字串以進行連線",
|
||||
"title": "Connect",
|
||||
"description": "Prefer using your own choice of tooling? Find the connection string you need to connect",
|
||||
"pgAdmin": {
|
||||
"title": "使用 pgAdmin 連結",
|
||||
"description": "偏好使用 pgAdmin?請在這裡尋找您的連接字串"
|
||||
"title": "Connect with pgAdmin",
|
||||
"description": "Prefer pgAdmin? Find your connection strings here"
|
||||
},
|
||||
"vsCode": {
|
||||
"title": "與 VS Code 連線",
|
||||
"description": "在 Visual Studio Code 中查詢並管理您的 MongoDB 與 DocumentDB 叢集"
|
||||
"description": "Query and Manage your MongoDB and DocumentDB clusters in Visual Studio Code"
|
||||
}
|
||||
},
|
||||
"shell": {
|
||||
"postgres": {
|
||||
"title": "PostgreSQL 殼層",
|
||||
"description": "建立資料表並使用 PostgreSQL 殼層介面與資料互動"
|
||||
"title": "PostgreSQL Shell",
|
||||
"description": "Create table and interact with data using PostgreSQL's shell interface"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"title": "Mongo 殼層",
|
||||
"description": "建立集合並使用 MongoDB 殼層介面與資料互動"
|
||||
"title": "Mongo Shell",
|
||||
"description": "Create a collection and interact with data using MongoDB's shell interface"
|
||||
}
|
||||
},
|
||||
"teachingBubble": {
|
||||
"newToPostgres": {
|
||||
"headline": "首次使用 Cosmos DB PGSQL?",
|
||||
"body": "歡迎!如果您首次使用 Cosmos DB PGSQL,需要入門協助,這裡可找到範例資料與查詢範例。"
|
||||
"headline": "New to Cosmos DB PGSQL?",
|
||||
"body": "Welcome! If you are new to Cosmos DB PGSQL and need help with getting started, here is where you can find sample data, query."
|
||||
},
|
||||
"resetPassword": {
|
||||
"headline": "建立您的密碼",
|
||||
"body": "如果您尚未變更密碼,請立即變更。"
|
||||
"headline": "Create your password",
|
||||
"body": "If you haven't changed your password yet, change it now."
|
||||
},
|
||||
"coachMark": {
|
||||
"headline": "從範例 {{collectionName}} 開始",
|
||||
"body": "我們將引導您建立一個包含範例資料的容器,並帶您導覽資料總管。您也可以取消啟動此導覽,自行探索"
|
||||
"headline": "Start with sample {{collectionName}}",
|
||||
"body": "You will be guided to create a sample container with sample data, then we will give you a tour of data explorer. You can also cancel launching this tour and explore yourself"
|
||||
}
|
||||
},
|
||||
"sections": {
|
||||
"recents": "最近項目",
|
||||
"clearRecents": "清除最近項目",
|
||||
"top3": "您需要知道的 3 大重點",
|
||||
"learningResources": "學習資源",
|
||||
"nextSteps": "後續步驟",
|
||||
"tipsAndLearnMore": "提示與深入了解",
|
||||
"notebook": "筆記本",
|
||||
"needHelp": "是否需要協助?"
|
||||
"recents": "Recents",
|
||||
"clearRecents": "Clear Recents",
|
||||
"top3": "Top 3 things you need to know",
|
||||
"learningResources": "Learning Resources",
|
||||
"nextSteps": "Next steps",
|
||||
"tipsAndLearnMore": "Tips & learn more",
|
||||
"notebook": "Notebook",
|
||||
"needHelp": "Need help?"
|
||||
},
|
||||
"top3Items": {
|
||||
"sql": {
|
||||
"advancedModeling": {
|
||||
"title": "進階模型化模式",
|
||||
"description": "學習進階策略以最佳化您的資料庫效能。"
|
||||
"title": "Advanced Modeling Patterns",
|
||||
"description": "Learn advanced strategies to optimize your database."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "資料分割的最佳做法",
|
||||
"description": "學習套用資料模型與資料分割策略。"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn to apply data model and partitioning strategies."
|
||||
},
|
||||
"resourcePlanning": {
|
||||
"title": "規劃您的資源要求",
|
||||
"description": "認識不同的設定選項。"
|
||||
"title": "Plan Your Resource Requirements",
|
||||
"description": "Get to know the different configuration choices."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"whatIsMongo": {
|
||||
"title": "什麼是 MongoDB API?",
|
||||
"description": "了解 Azure Cosmos DB for MongoDB 及其功能。"
|
||||
"title": "What is the MongoDB API?",
|
||||
"description": "Understand Azure Cosmos DB for MongoDB and its features."
|
||||
},
|
||||
"features": {
|
||||
"title": "功能與語法",
|
||||
"description": "探索優勢與功能"
|
||||
"title": "Features and Syntax",
|
||||
"description": "Discover the advantages and features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "移轉您的資料",
|
||||
"description": "移動資料前的預先移轉步驟"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Pre-migration steps for moving data"
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"buildJavaApp": {
|
||||
"title": "建置 Java 應用程式",
|
||||
"description": "使用 SDK 建立 Java 應用程式。"
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Java app using an SDK."
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "資料分割的最佳做法",
|
||||
"description": "了解資料分割的運作方式。"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works."
|
||||
},
|
||||
"requestUnits": {
|
||||
"title": "要求單位 (RU)",
|
||||
"description": "了解 RU 的費用。"
|
||||
"title": "Request Units (RUs)",
|
||||
"description": "Understand RU charges."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"dataModeling": {
|
||||
"title": "資料模型化",
|
||||
"description": "圖形資料模型化建議"
|
||||
"title": "Data Modeling",
|
||||
"description": "Graph data modeling recommendations"
|
||||
},
|
||||
"partitioning": {
|
||||
"title": "資料分割的最佳做法",
|
||||
"description": "了解資料分割的運作方式"
|
||||
"title": "Partitioning Best Practices",
|
||||
"description": "Learn how partitioning works"
|
||||
},
|
||||
"queryData": {
|
||||
"title": "查詢資料",
|
||||
"description": "正在使用 Gremlin 查詢資料"
|
||||
"title": "Query Data",
|
||||
"description": "Querying data with Gremlin"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"whatIsTable": {
|
||||
"title": "什麼是 Table API?",
|
||||
"description": "了解 Azure Cosmos DB for Table 及其功能"
|
||||
"title": "What is the Table API?",
|
||||
"description": "Understand Azure Cosmos DB for Table and its features"
|
||||
},
|
||||
"migrate": {
|
||||
"title": "移轉您的資料",
|
||||
"description": "深入了解如何移轉資料"
|
||||
"title": "Migrate your data",
|
||||
"description": "Learn how to migrate your data"
|
||||
},
|
||||
"faq": {
|
||||
"title": "Azure Cosmos DB for Table 常見問題解答",
|
||||
"description": "關於 Azure Cosmos DB for Table 的常見問題"
|
||||
"title": "Azure Cosmos DB for Table FAQs",
|
||||
"description": "Common questions about Azure Cosmos DB for Table"
|
||||
}
|
||||
}
|
||||
},
|
||||
"learningResources": {
|
||||
"shortcuts": {
|
||||
"title": "[資料總管] 鍵盤快速鍵",
|
||||
"description": "學習使用快捷鍵來瀏覽 [資料總管]。"
|
||||
"title": "Data Explorer keyboard shortcuts",
|
||||
"description": "Learn keyboard shortcuts to navigate Data Explorer."
|
||||
},
|
||||
"liveTv": {
|
||||
"title": "了解基礎知識",
|
||||
"description": "觀看 Azure Cosmos DB 直播節目,了解入門與操作教學影片。"
|
||||
"title": "Learn the Fundamentals",
|
||||
"description": "Watch Azure Cosmos DB Live TV show introductory and how to videos."
|
||||
},
|
||||
"sql": {
|
||||
"sdk": {
|
||||
"title": "開始使用 SDK",
|
||||
"description": "深入了解 Azure Cosmos DB SDK。"
|
||||
"title": "Get Started using an SDK",
|
||||
"description": "Learn about the Azure Cosmos DB SDK."
|
||||
},
|
||||
"migrate": {
|
||||
"title": "移轉您的資料",
|
||||
"description": "使用 Azure 服務與開源解決方案來移轉資料。"
|
||||
"title": "Migrate Your Data",
|
||||
"description": "Migrate data using Azure services and open-source solutions."
|
||||
}
|
||||
},
|
||||
"mongo": {
|
||||
"nodejs": {
|
||||
"title": "使用 Node.js 建置應用程式",
|
||||
"description": "建立 Node.js 應用程式。"
|
||||
"title": "Build an app with Node.js",
|
||||
"description": "Create a Node.js app."
|
||||
},
|
||||
"gettingStarted": {
|
||||
"title": "使用者入門指南",
|
||||
"description": "學習基礎知識,以開始使用。"
|
||||
"title": "Getting Started Guide",
|
||||
"description": "Learn the basics to get started."
|
||||
}
|
||||
},
|
||||
"cassandra": {
|
||||
"createContainer": {
|
||||
"title": "建立容器",
|
||||
"description": "了解建立容器的選項。"
|
||||
"title": "Create a Container",
|
||||
"description": "Get to know the create a container options."
|
||||
},
|
||||
"throughput": {
|
||||
"title": "佈建輸送量",
|
||||
"description": "了解如何設定輸送量。"
|
||||
"title": "Provision Throughput",
|
||||
"description": "Learn how to configure throughput."
|
||||
}
|
||||
},
|
||||
"gremlin": {
|
||||
"getStarted": {
|
||||
"title": "開始使用 ",
|
||||
"description": "使用 Gremlin 控制台建立、查詢及進行遍歷作業"
|
||||
"title": "Get Started ",
|
||||
"description": "Create, query, and traverse using the Gremlin console"
|
||||
},
|
||||
"importData": {
|
||||
"title": "匯入圖形資料",
|
||||
"description": "使用 BulkExecutor 學習批次資料攝取"
|
||||
"title": "Import Graph Data",
|
||||
"description": "Learn Bulk ingestion data using BulkExecutor"
|
||||
}
|
||||
},
|
||||
"tables": {
|
||||
"dotnet": {
|
||||
"title": "建置 .NET 應用程式",
|
||||
"description": "如何從 .NET 應用程式存取 Azure Cosmos DB for Table。"
|
||||
"title": "Build a .NET App",
|
||||
"description": "How to access Azure Cosmos DB for Table from a .NET app."
|
||||
},
|
||||
"java": {
|
||||
"title": "建置 Java 應用程式",
|
||||
"description": "使用 Java SDK 建立 Azure Cosmos DB for Table 應用程式 "
|
||||
"title": "Build a Java App",
|
||||
"description": "Create a Azure Cosmos DB for Table app with Java SDK "
|
||||
}
|
||||
}
|
||||
},
|
||||
"nextStepItems": {
|
||||
"postgres": {
|
||||
"dataModeling": "資料模型化",
|
||||
"distributionColumn": "如何選擇分佈欄位",
|
||||
"buildApps": "使用 Python/Java/Django 建置應用程式"
|
||||
"dataModeling": "Data Modeling",
|
||||
"distributionColumn": "How to choose a Distribution Column",
|
||||
"buildApps": "Build Apps with Python/Java/Django"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"migrateData": "移轉資料",
|
||||
"vectorSearch": "使用向量搜尋建置 AI 應用程式",
|
||||
"buildApps": "使用 Node.js 建置應用程式"
|
||||
"migrateData": "Migrate Data",
|
||||
"vectorSearch": "Build AI apps with Vector Search",
|
||||
"buildApps": "Build Apps with Nodejs"
|
||||
}
|
||||
},
|
||||
"learnMoreItems": {
|
||||
"postgres": {
|
||||
"performanceTuning": "效能微調",
|
||||
"diagnosticQueries": "實用診斷查詢",
|
||||
"sqlReference": "分散式 SQL 參考"
|
||||
"performanceTuning": "Performance Tuning",
|
||||
"diagnosticQueries": "Useful Diagnostic Queries",
|
||||
"sqlReference": "Distributed SQL Reference"
|
||||
},
|
||||
"vcoreMongo": {
|
||||
"vectorSearch": "向量搜尋",
|
||||
"textIndexing": "文字索引",
|
||||
"troubleshoot": "疑難排解常見問題"
|
||||
"vectorSearch": "Vector Search",
|
||||
"textIndexing": "Text Indexing",
|
||||
"troubleshoot": "Troubleshoot common issues"
|
||||
}
|
||||
},
|
||||
"fabric": {
|
||||
"buildTitle": "建立資料庫",
|
||||
"useTitle": "使用您的資料庫",
|
||||
"buildTitle": "Build your database",
|
||||
"useTitle": "Use your database",
|
||||
"newContainer": {
|
||||
"title": "新容器",
|
||||
"description": "建立目的地容器以儲存您的資料"
|
||||
"title": "New container",
|
||||
"description": "Create a destination container to store your data"
|
||||
},
|
||||
"sampleData": {
|
||||
"title": "範例資料",
|
||||
"description": "在資料庫中載入範例資料"
|
||||
"title": "Sample Data",
|
||||
"description": "Load sample data in your database"
|
||||
},
|
||||
"sampleVectorData": {
|
||||
"title": "範例向量資料",
|
||||
"description": "以 text-embedding-ada-002 載入範例向量資料"
|
||||
"title": "Sample Vector Data",
|
||||
"description": "Load sample vector data with text-embedding-ada-002"
|
||||
},
|
||||
"appDevelopment": {
|
||||
"title": "應用程式開發",
|
||||
"description": "從這裡開始,使用 SDK 建置您的應用程式"
|
||||
"title": "App development",
|
||||
"description": "Start here to use an SDK to build your apps"
|
||||
},
|
||||
"sampleGallery": {
|
||||
"title": "範例圖庫",
|
||||
"description": "取得真實世界的端對端範例"
|
||||
"title": "Sample Gallery",
|
||||
"description": "Get real-world end-to-end samples"
|
||||
}
|
||||
},
|
||||
"sampleDataDialog": {
|
||||
"title": "範例資料",
|
||||
"startButton": "開始",
|
||||
"createPrompt": "建立容器「{{containerName}}」並匯入範例資料至其中。這可能需要幾分鐘的時間。",
|
||||
"creatingContainer": "正在建立容器「{{containerName}}」...",
|
||||
"importingData": "正在將資料匯入「{{containerName}}」...",
|
||||
"success": "已成功使用範例資料建立「{{containerName}}」。",
|
||||
"errorContainerExists": "資料庫「{{databaseName}}」中的容器「{{containerName}}」已存在。請刪除後重試。",
|
||||
"errorCreateContainer": "無法建立容器: {{error}}",
|
||||
"errorImportData": "無法匯入資料: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "新增 {{containerName}}",
|
||||
"restoreContainer": "還原 {{containerName}}",
|
||||
"deleteDatabase": "刪除 {{databaseName}}",
|
||||
"deleteContainer": "刪除 {{containerName}}",
|
||||
"newSqlQuery": "新增 SQL 查詢",
|
||||
"newQuery": "新增查詢",
|
||||
"openMongoShell": "開啟 Mongo 殼層",
|
||||
"newShell": "新增殼層",
|
||||
"openCassandraShell": "開啟 Cassandra 殼層",
|
||||
"newStoredProcedure": "新增預存程序",
|
||||
"newUdf": "新增 UDF",
|
||||
"newTrigger": "新增觸發程序",
|
||||
"deleteStoredProcedure": "刪除預存程序",
|
||||
"deleteTrigger": "刪除觸發程序",
|
||||
"deleteUdf": "刪除使用者定義的函式"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "新增項目",
|
||||
"newDocument": "新增文件",
|
||||
"uploadItem": "上傳項目",
|
||||
"applyFilter": "套用篩選",
|
||||
"unsavedChanges": "未儲存的變更",
|
||||
"unsavedChangesMessage": "您未儲存的變更都會遺失。是否要繼續?",
|
||||
"createDocumentFailed": "建立文件失敗",
|
||||
"updateDocumentFailed": "更新文件失敗",
|
||||
"documentDeleted": "已成功刪除文件。",
|
||||
"deleteDocumentDialogTitle": "刪除文件",
|
||||
"deleteDocumentsDialogTitle": "刪除文件",
|
||||
"throttlingError": "由於速率限制錯誤,部分文件無法刪除。請稍後再試。若要在未來避免此情況,請考慮增加容器或資料庫上的輸送量。",
|
||||
"deleteFailed": "刪除文件失敗 ({{error}})",
|
||||
"missingShardProperty": "文件缺少分區屬性: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "重新整理文件方格失敗",
|
||||
"confirmDelete": "確定要刪除 {{documentName}}?",
|
||||
"confirmDeleteTitle": "確認刪除",
|
||||
"selectedItems": "選取的 {{count}} 個項目",
|
||||
"selectedItem": "選取的項目",
|
||||
"selectedDocuments": "選取的 {{count}} 個文件",
|
||||
"selectedDocument": "選取的文件",
|
||||
"deleteDocumentFailedLog": "無法刪除文件 {{documentId}},出現狀態代碼 {{statusCode}}",
|
||||
"deleteSuccessLog": "已成功刪除 {{count}} 個文件",
|
||||
"deleteThrottledLog": "由於「要求太大」(429) 錯誤,無法刪除 {{count}} 個文件。正在重試...",
|
||||
"missingShardKeyLog": "無法儲存新文件: 未定義文件分區金鑰",
|
||||
"filterTooltip": "輸入查詢述詞,或從清單中選擇一個。",
|
||||
"loadMore": "載入更多",
|
||||
"documentEditor": "文件編輯器",
|
||||
"savedFilters": "儲存的篩選",
|
||||
"defaultFilters": "預設篩選",
|
||||
"abort": "中止",
|
||||
"deletingDocuments": "正在刪除 {{count}} 個文件",
|
||||
"deletedDocumentsSuccess": "已成功刪除 {{count}} 個文件。",
|
||||
"deleteAborted": "刪除文件已中止。",
|
||||
"failedToDeleteDocuments": "無法刪除 {{count}} 個文件。",
|
||||
"requestTooLargeBase": "由於「要求太大」例外狀況 (429),部分刪除要求失敗",
|
||||
"retriedSuccessfully": "但已成功重試。",
|
||||
"retryingNow": "正在重試。",
|
||||
"increaseThroughputTip": "若要在未來避免此情況,請考慮增加容器或資料庫上的輸送量。",
|
||||
"numberOfSelectedDocuments": "選取的文件數目: {{count}}",
|
||||
"mongoFilterPlaceholder": "輸入查詢述詞 (例如 {\"id\":\"foo\"}),或從下拉式清單中選擇一個,或保留空白以查詢所有文件。",
|
||||
"sqlFilterPlaceholder": "輸入查詢述詞 (例如 WHERE c.id=\"1\"),或從下拉式清單中選擇一個,或保留空白以查詢所有文件。",
|
||||
"error": "錯誤",
|
||||
"warning": "警告"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "執行查詢",
|
||||
"executeSelection": "執行選取範圍",
|
||||
"saveQuery": "儲存查詢",
|
||||
"downloadQuery": "下載查詢",
|
||||
"cancelQuery": "取消查詢",
|
||||
"openSavedQueries": "開啟已儲存的查詢",
|
||||
"vertical": "垂直",
|
||||
"horizontal": "水平",
|
||||
"view": "檢視",
|
||||
"editingQuery": "編輯查詢"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "預存程序識別碼",
|
||||
"idPlaceholder": "輸入新的預存程序識別碼",
|
||||
"idAriaLabel": "預存程序識別碼",
|
||||
"body": "預存程序主體",
|
||||
"bodyAriaLabel": "預存程序主體",
|
||||
"successfulExecution": "成功執行預存程序",
|
||||
"resultAriaLabel": "執行預存程序結果",
|
||||
"logsAriaLabel": "執行預存程序記錄",
|
||||
"errors": "錯誤:",
|
||||
"errorDetailsAriaLabel": "錯誤詳細資料連結",
|
||||
"moreDetails": "其他詳細資料",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "觸發程序識別碼",
|
||||
"idPlaceholder": "輸入新的觸發程序識別碼",
|
||||
"type": "觸發程序類型",
|
||||
"operation": "觸發程序作業",
|
||||
"body": "觸發程序主體",
|
||||
"bodyAriaLabel": "觸發程序主體",
|
||||
"pre": "之前",
|
||||
"post": "張貼",
|
||||
"all": "全部",
|
||||
"operationCreate": "建立",
|
||||
"operationDelete": "刪除",
|
||||
"operationReplace": "取代"
|
||||
},
|
||||
"udf": {
|
||||
"id": "使用者定義的函式識別碼",
|
||||
"idPlaceholder": "輸入新的使用者定義函式識別碼",
|
||||
"body": "使用者定義的函式主體",
|
||||
"bodyAriaLabel": "使用者定義的函式主體"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "未儲存的變更",
|
||||
"changesWillBeLost": "變更將會遺失。是否要繼續?",
|
||||
"resolveConflictFailed": "解決衝突失敗",
|
||||
"deleteConflictFailed": "刪除衝突失敗",
|
||||
"refreshGridFailed": "重新整理文件方格失敗"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo 殼層"
|
||||
}
|
||||
},
|
||||
"panes": {
|
||||
"deleteDatabase": {
|
||||
"panelTitle": "刪除 {{databaseName}}",
|
||||
"warningMessage": "警告!您即將進行的動作無法復原。繼續將會永久刪除此資源及其所有子資源。",
|
||||
"confirmPrompt": "輸入 {{databaseName}} 識別碼 (名稱) 以確認",
|
||||
"inputMismatch": "輸入 {{databaseName}} 名稱 \"{{input}}\" 與選取的 {{databaseName}} \"{{selectedId}}\" 不符",
|
||||
"feedbackTitle": "協助我們改進 Azure Cosmos DB!",
|
||||
"feedbackReason": "您刪除此 {{databaseName}} 的原因為何?"
|
||||
},
|
||||
"deleteCollection": {
|
||||
"panelTitle": "刪除 {{collectionName}}",
|
||||
"confirmPrompt": "輸入 {{collectionName}} 識別碼以確認",
|
||||
"inputMismatch": "輸入識別碼 {{input}} 與選取的 {{selectedId}} 不符",
|
||||
"feedbackTitle": "協助我們改進 Azure Cosmos DB!",
|
||||
"feedbackReason": "您刪除此 {{collectionName}} 的原因為何?"
|
||||
},
|
||||
"addDatabase": {
|
||||
"databaseLabel": "資料庫 {{suffix}}",
|
||||
"databaseIdLabel": "資料庫識別碼",
|
||||
"keyspaceIdLabel": "索引鍵空間識別碼",
|
||||
"databaseIdPlaceholder": "輸入新的 {{databaseLabel}} 識別碼",
|
||||
"databaseTooltip": "{{databaseLabel}} 是一或多個 {{collectionsLabel}} 的邏輯容器",
|
||||
"shareThroughput": "跨 {{collectionsLabel}} 共用輸送量",
|
||||
"shareThroughputTooltip": "{{databaseLabel}} 層級的已佈建輸送量將會跨 {{databaseLabel}} 內的所有 {{collectionsLabel}} 共用。",
|
||||
"greaterThanError": "請為 Autopilot 輸送量輸入大於 {{minValue}} 的值",
|
||||
"acknowledgeSpendError": "請認知估計的 {{period}} 支出。"
|
||||
},
|
||||
"addCollection": {
|
||||
"createNew": "新建",
|
||||
"useExisting": "使用現有項目",
|
||||
"databaseTooltip": "資料庫類似於命名空間。它是一組 {{collectionName}} 的管理單位。",
|
||||
"shareThroughput": "跨 {{collectionName}} 共用輸送量",
|
||||
"shareThroughputTooltip": "在資料庫層級所設定的輸送量,將會跨資料庫內的所有 {{collectionName}} 共用。",
|
||||
"collectionIdLabel": "{{collectionName}} 識別碼",
|
||||
"collectionIdTooltip": "{{collectionName}} 的唯一識別碼,並用於透過 REST 和所有 SDK 進行識別碼型路由。",
|
||||
"collectionIdPlaceholder": "例如,{{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} 識別碼,範例 {{collectionName}}1",
|
||||
"existingDatabaseAriaLabel": "選擇現有的 {{databaseName}} 識別碼",
|
||||
"existingDatabasePlaceholder": "選擇現有的 {{databaseName}} 識別碼",
|
||||
"indexing": "編製索引",
|
||||
"turnOnIndexing": "開啟索引編製",
|
||||
"automatic": "自動",
|
||||
"turnOffIndexing": "關閉索引編製",
|
||||
"off": "關閉",
|
||||
"sharding": "分區化",
|
||||
"shardingTooltip": "分區集合會將您的資料分割到多個複本集 (分區),以達到無限制的擴充性。分區集合需要選擇分區索引鍵 (欄位),以平均散發您的資料。",
|
||||
"unsharded": "未分區",
|
||||
"unshardedLabel": "未分區 (20 GB 限制)",
|
||||
"sharded": "已分區",
|
||||
"addPartitionKey": "新增階層式資料分割索引鍵",
|
||||
"hierarchicalPartitionKeyInfo": "此功能可讓您使用最多三個層級的索引鍵來分割資料,以提供更好的資料散發。需要 .NET V3、Java V4 SDK 或預覽 JavaScript V3 SDK。",
|
||||
"provisionDedicatedThroughput": "為此 {{collectionName}} 佈建專用輸送量",
|
||||
"provisionDedicatedThroughputTooltip": "您可以選擇性地為已佈建輸送量的資料庫內的 {{collectionName}} 佈建專用的輸送量。此專用輸送量數量不會與資料庫中的其他 {{collectionNamePlural}} 共用,也不會計入您為資料庫所佈建的輸送量。除了您在資料庫層級佈建的輸送量數量之外,也將針對此輸送量計費。",
|
||||
"uniqueKeysPlaceholderMongo": "以逗號分隔的路徑,例如 firstName,address.zipCode",
|
||||
"uniqueKeysPlaceholderSql": "以逗號分隔的路徑,例如 /firstName,/address/zipCode",
|
||||
"addUniqueKey": "新增唯一索引鍵",
|
||||
"enableAnalyticalStore": "啟用分析存放區",
|
||||
"disableAnalyticalStore": "停用分析存放區",
|
||||
"on": "開啟",
|
||||
"analyticalStoreSynapseLinkRequired": "建立分析存放區 {{collectionName}} 需要 Azure Synapse Link。為此 Cosmos DB 帳戶啟用 Synapse Link。",
|
||||
"enable": "啟用",
|
||||
"containerVectorPolicy": "容器向量原則",
|
||||
"containerFullTextSearchPolicy": "容器全文搜尋原則",
|
||||
"advanced": "進階",
|
||||
"mongoIndexingTooltip": "預設會編製 _id 欄位的索引。建立所有欄位的萬用字元索引將最佳化查詢,並且建議用於開發。",
|
||||
"createWildcardIndex": "在所有欄位上建立萬用字元索引",
|
||||
"legacySdkCheckbox": "我的應用程式使用舊版 Cosmos .NET 或 Java SDK 版本 (.NET V1 或 Java V2)",
|
||||
"legacySdkInfo": "為確保與舊版 SDK 的相容性,已建立的容器將使用舊版分割配置,其支援大小最多僅 101 個位元組的資料分割索引鍵值。如果啟用此功能,您將無法使用階層式資料分割索引鍵。",
|
||||
"indexingOnInfo": "預設會對文件中的所有屬性編製索引,以獲得彈性且有效率的查詢。",
|
||||
"indexingOffInfo": "索引編製將會關閉。如果您不需要執行查詢或只有索引鍵值作業,建議您使用。",
|
||||
"indexingOffWarning": "藉由建立此容器並關閉索引編製,您將無法進行任何索引編製原則變更。索引變更只允許在具有索引編製原則的容器上執行。",
|
||||
"acknowledgeSpendErrorMonthly": "請認知每月預估支出。",
|
||||
"acknowledgeSpendErrorDaily": "請認知估計的每日支出。",
|
||||
"unshardedMaxRuError": "未分區的集合最多支援 10,000 個 RU",
|
||||
"acknowledgeShareThroughputError": "請認知此專用輸送量的估計成本。",
|
||||
"vectorPolicyError": "請修正容器向量原則中的錯誤",
|
||||
"fullTextSearchPolicyError": "請修正容器全文搜尋原則中的錯誤",
|
||||
"addingSampleDataSet": "新增範例資料集"
|
||||
},
|
||||
"addCollectionUtility": {
|
||||
"shardKeyTooltip": "分區索引鍵 (欄位) 可用來將您的資料分割到多個複本集 (分區),以達到無限制的擴充性。選擇將平均散發您的資料的欄位非常重要。",
|
||||
"partitionKeyTooltip": "使用 {{partitionKeyName}} 來自動跨資料分割散發資料,以獲得可擴縮性。選擇 JSON 文件中具有各種值範圍且平均散發要求數量的屬性。",
|
||||
"partitionKeyTooltipSqlSuffix": " 針對小型大量讀取的工作負載或任何大小的大量寫入工作負載,識別碼通常是良好的選擇。",
|
||||
"shardKeyLabel": "分區索引鍵",
|
||||
"partitionKeyLabel": "資料分割索引鍵",
|
||||
"shardKeyPlaceholder": "例如,categoryId",
|
||||
"partitionKeyPlaceholderDefault": "例如,/address",
|
||||
"partitionKeyPlaceholderFirst": "必要 - 第一個資料分割索引鍵,例如 /TenantId",
|
||||
"partitionKeyPlaceholderSecond": "第二個資料分割索引鍵,例如 /UserId",
|
||||
"partitionKeyPlaceholderThird": "第三個資料分割索引鍵,例如,/SessionId",
|
||||
"partitionKeyPlaceholderGraph": "例如,/address/zipCode",
|
||||
"uniqueKeysTooltip": "唯一索引鍵可讓開發人員新增一層資料完整性至其資料庫。在建立容器時建立唯一的索引鍵原則,可確保每個資料分割索引鍵一或多個值的唯一性。",
|
||||
"uniqueKeysLabel": "唯一索引鍵",
|
||||
"analyticalStoreLabel": "分析存放區",
|
||||
"analyticalStoreTooltip": "啟用分析存放區功能,以對作業資料執行接近即時的分析,而不會影響交易工作負載的效能。",
|
||||
"analyticalStoreDescription": "啟用分析存放區功能,以對作業資料執行接近即時的分析,而不會影響交易工作負載的效能。",
|
||||
"vectorPolicyTooltip": "描述資料中包含向量的任何屬性,以便可供相似性查詢使用。"
|
||||
},
|
||||
"settings": {
|
||||
"pageOptions": "頁面選項",
|
||||
"pageOptionsDescription": "選擇 [自訂] 以指定要顯示的查詢結果的固定數量,或選擇選擇 [無限制],以每頁顯示盡可能多的查詢結果。",
|
||||
"queryResultsPerPage": "每個頁面查詢結果",
|
||||
"queryResultsPerPageTooltip": "輸入每個頁面應顯示的查詢結果數目。",
|
||||
"customQueryItemsPerPage": "自訂每個頁面的查詢項目",
|
||||
"custom": "自訂",
|
||||
"unlimited": "無限制",
|
||||
"entraIdRbac": "啟用 Entra ID RBAC",
|
||||
"entraIdRbacDescription": "選擇 [自動] 以自動啟用 Entra ID RBAC。True/False 可強制啟用/停用 Entra ID RBAC。",
|
||||
"true": "True",
|
||||
"false": "False",
|
||||
"regionSelection": "區域選取項目",
|
||||
"regionSelectionDescription": "變更 Cosmos 用戶端用來存取帳戶的區域。",
|
||||
"selectRegion": "選取區域",
|
||||
"selectRegionTooltip": "變更用來執行用戶端作業的帳戶端點。",
|
||||
"globalDefault": "全域 (預設值)",
|
||||
"readWrite": "(讀取/寫入)",
|
||||
"read": "(讀取)",
|
||||
"queryTimeout": "查詢逾時",
|
||||
"queryTimeoutDescription": "當查詢達到指定的時間限制時,除非已啟用自動取消,否則會顯示包含取消查詢選項的快顯視窗。",
|
||||
"enableQueryTimeout": "啟用查詢逾時",
|
||||
"queryTimeoutMs": "查詢逾時 (毫秒)",
|
||||
"automaticallyCancelQuery": "逾時後自動取消查詢",
|
||||
"ruLimit": "RU 限制",
|
||||
"ruLimitDescription": "如果查詢超過設定的 RU 限制,查詢將會中止。",
|
||||
"enableRuLimit": "啟用 RU 限制",
|
||||
"ruLimitLabel": "RU 限制 (RU)",
|
||||
"defaultQueryResults": "預設查詢結果檢視",
|
||||
"defaultQueryResultsDescription": "選取顯示查詢結果時要使用的預設檢視。",
|
||||
"retrySettings": "重試設定",
|
||||
"retrySettingsDescription": "重試在 CosmosDB 查詢期間,與節流要求相關聯的原則。",
|
||||
"maxRetryAttempts": "最大重試嘗試次數",
|
||||
"maxRetryAttemptsTooltip": "要針對要求執行的重試次數上限。預設值 9。",
|
||||
"fixedRetryInterval": "修正重試間隔 (毫秒)",
|
||||
"fixedRetryIntervalTooltip": "已修正要在每個重試之間等候的重試間隔 (以毫秒為單位),正在忽略隨著回應傳回的 retryAfter。預設值為 0 毫秒。",
|
||||
"maxWaitTime": "最長等候時間",
|
||||
"maxWaitTimeTooltip": "重試時等候要求的等候時間上限 (秒)。預設值 30 秒。",
|
||||
"enableContainerPagination": "啟用容器分頁",
|
||||
"enableContainerPaginationDescription": "一次載入 50 個容器。目前容器未以英數字元順序提取。",
|
||||
"enableCrossPartitionQuery": "啟用跨資料分割查詢",
|
||||
"enableCrossPartitionQueryDescription": "執行查詢時傳送多個要求。如果查詢範圍未限制在單一資料分割索引鍵值,則需要多個要求。",
|
||||
"maxDegreeOfParallelism": "平行處理原則的最大程度",
|
||||
"maxDegreeOfParallelismDescription": "取得或設定在平行查詢執行期間,並行作業執行用戶端的數目。正數的屬性值會將並行作業數目限制為設定值。如果設定為小於 0,系統會自動決定要執行的並行作業數目。",
|
||||
"maxDegreeOfParallelismQuery": "查詢至平行處理原則的最大程度。",
|
||||
"priorityLevel": "優先順序層級",
|
||||
"priorityLevelDescription": "使用以優先順序為基礎的執行時,從資料總管設定資料平面要求的優先順序等級。如果選取 [無],資料總管將不會指定優先順序等級,且會使用伺服器端的預設優先順序等級。",
|
||||
"displayGremlinQueryResults": "將 Gremlin 查詢結果顯示為:",
|
||||
"displayGremlinQueryResultsDescription": "選取 [圖表] 以將查詢結果自動視覺化為圖表,或選取 [JSON] 以 JSON 形式顯示結果。",
|
||||
"graph": "圖表",
|
||||
"json": "JSON",
|
||||
"graphAutoVisualization": "圖表自動視覺效果",
|
||||
"enableSampleDatabase": "啟用範例資料庫",
|
||||
"enableSampleDatabaseDescription": "這是包含綜合產品資料的範例資料庫和集合,您可以使用 NoSQL 查詢來探索。這會在資料總管 UI 中顯示為另一個資料庫,且由 Microsoft 建立並維護,您無需付費。",
|
||||
"enableSampleDbAriaLabel": "啟用用於查詢探索的範例資料庫",
|
||||
"guidRepresentation": "GUID 表示法",
|
||||
"guidRepresentationDescription": "MongoDB 中的 GuidRepresentation 是指儲存在 BSON 文件中時,全域唯一識別碼 (GUID) 的序列化與還原序列化方式。這將套用至所有文件作業。",
|
||||
"advancedSettings": "進階設定",
|
||||
"ignorePartitionKey": "在文件更新時忽略資料分割索引鍵",
|
||||
"ignorePartitionKeyTooltip": "如果勾選,將不會在更新作業期間使用資料分割索引鍵值來尋找文件。只有在文件更新由於異常的資料分割索引鍵而失敗時,才使用此功能。",
|
||||
"clearHistory": "清除歷程記錄",
|
||||
"clearHistoryConfirm": "確定要繼續嗎?",
|
||||
"clearHistoryDescription": "此動作會清除此瀏覽器中此帳戶的所有自訂項目,包括:",
|
||||
"clearHistoryTabLayout": "重設您自訂的索引標籤版面配置,包括分隔器位置",
|
||||
"clearHistoryTableColumns": "清除資料表資料行喜好設定,包括任何自訂資料行",
|
||||
"clearHistoryFilters": "清除您的篩選歷程記錄",
|
||||
"clearHistoryRegion": "將區域選取範圍重設為全域",
|
||||
"increaseValueBy1000": "將值增加 1000",
|
||||
"decreaseValueBy1000": "將值減少 1000",
|
||||
"none": "無",
|
||||
"low": "低",
|
||||
"high": "高",
|
||||
"automatic": "自動",
|
||||
"enhancedQueryControl": "增強的查詢控制",
|
||||
"enableQueryControl": "啟用查詢控制",
|
||||
"explorerVersion": "瀏覽器版本",
|
||||
"accountId": "帳戶識別碼",
|
||||
"sessionId": "工作階段識別碼",
|
||||
"popupsDisabledError": "由於瀏覽器中停用快顯視窗,我們無法為此帳戶建立授權。\n請為此網站啟用快顯視窗,然後按一下 [Entra ID 的登入] 按鈕",
|
||||
"failedToAcquireTokenError": "無法自動取得授權權杖。請按一下 [Entra ID 的登入] 按鈕,以啟用 Entra ID RBAC 作業"
|
||||
},
|
||||
"saveQuery": {
|
||||
"panelTitle": "儲存查詢",
|
||||
"setupCostMessage": "為了符合規範,我們會將查詢儲存在 Azure Cosmos 帳戶的容器中,在名為「{{databaseName}}」的個別資料庫中。若要繼續,我們需要在您的帳戶中建立容器,估計每天的額外費用為 $0.77 美元。",
|
||||
"completeSetup": "完成設定",
|
||||
"noQueryNameError": "未指定查詢名稱",
|
||||
"invalidQueryContentError": "指定的查詢內容無效",
|
||||
"failedToSaveQueryError": "無法儲存查詢 {{queryName}}",
|
||||
"failedToSetupContainerError": "無法為已儲存的查詢設定容器",
|
||||
"accountNotSetupError": "無法儲存查詢: 帳戶未設定為儲存查詢",
|
||||
"name": "名稱"
|
||||
},
|
||||
"loadQuery": {
|
||||
"noFileSpecifiedError": "未指定檔案",
|
||||
"failedToLoadQueryError": "無法載入查詢",
|
||||
"failedToLoadQueryFromFileError": "無法從檔案 {{fileName}} 載入查詢",
|
||||
"selectFilesToOpen": "選取查詢文件",
|
||||
"browseFiles": "瀏覽"
|
||||
},
|
||||
"executeStoredProcedure": {
|
||||
"enterInputParameters": "輸入輸入參數 (如果有)",
|
||||
"key": "索引鍵",
|
||||
"param": "參數",
|
||||
"partitionKeyValue": "資料分割索引鍵值",
|
||||
"value": "值",
|
||||
"addNewParam": "新增參數",
|
||||
"addParam": "新增參數",
|
||||
"deleteParam": "刪除參數",
|
||||
"invalidParamError": "指定的參數無效: {{invalidParam}}",
|
||||
"invalidParamConsoleError": "指定的參數無效: {{invalidParam}} 不是有效的常值",
|
||||
"stringType": "字串",
|
||||
"customType": "自訂"
|
||||
},
|
||||
"uploadItems": {
|
||||
"noFilesSpecifiedError": "未指定任何檔案。請至少輸入一個檔案。",
|
||||
"selectJsonFiles": "選取 JSON 檔案",
|
||||
"selectJsonFilesTooltip": "選取一或多個要上傳的 JSON 檔案。每個檔案可以包含單一 JSON 文件或 JSON 文件的陣列。個別上傳作業中所有檔案的合併大小必須小於 2 MB。您可以針對較大的資料集執行多個上傳作業。",
|
||||
"fileNameColumn": "檔案名稱",
|
||||
"statusColumn": "狀態",
|
||||
"uploadStatus": "{{numSucceeded}} 個已建立,{{numThrottled}} 個已節流,{{numFailed}} 個錯誤",
|
||||
"uploadedFiles": "上傳的檔案"
|
||||
},
|
||||
"copyNotebook": {
|
||||
"copyFailedError": "無法將 {{name}} 複製到 {{destination}}",
|
||||
"uploadFailedError": "無法上傳 {{name}}",
|
||||
"location": "位置",
|
||||
"locationAriaLabel": "位置",
|
||||
"selectLocation": "選取要複製的筆記本位置",
|
||||
"name": "名稱"
|
||||
},
|
||||
"publishNotebook": {
|
||||
"publishFailedError": "無法將 {{notebookName}} 發佈至資源庫",
|
||||
"publishDescription": "發佈後,此筆記本會出現在 Azure Cosmos DB 筆記本公用資源庫中。發佈前,請確定已移除任何敏感性資料或輸出。",
|
||||
"publishPrompt": "您是否要發佈並共用 \"{{name}}\" 至資源庫?",
|
||||
"coverImage": "封面影像",
|
||||
"coverImageUrl": "封面影像 URL",
|
||||
"name": "名稱",
|
||||
"description": "描述",
|
||||
"tags": "標籤",
|
||||
"tagsPlaceholder": "選用標記 1,選用標記 2",
|
||||
"preview": "預覽",
|
||||
"urlType": "URL",
|
||||
"customImage": "自訂映像",
|
||||
"takeScreenshot": "擷取螢幕擷取畫面",
|
||||
"useFirstDisplayOutput": "使用第一個顯示輸出",
|
||||
"failedToCaptureOutput": "無法擷取第一個輸出",
|
||||
"outputDoesNotExist": "任何儲存格的輸出都不存在。",
|
||||
"failedToConvertError": "無法將 {{fileName}} 轉換為 base64 格式",
|
||||
"failedToUploadError": "無法上傳 {{fileName}}"
|
||||
},
|
||||
"changePartitionKey": {
|
||||
"failedToStartError": "無法啟動資料傳輸工作",
|
||||
"suboptimalPartitionKeyError": "警告: 系統偵測到您的集合可能在使用次佳的資料分割索引鍵",
|
||||
"description": "變更容器的資料分割索引鍵時,您將必須使用正確的資料分割索引鍵來建立目的地容器。您也可以選取現有的目的地容器。",
|
||||
"sourceContainerId": "來源 {{collectionName}} 識別碼",
|
||||
"destinationContainerId": "目的地 {{collectionName}} 識別碼",
|
||||
"collectionIdTooltip": "{{collectionName}} 的唯一識別碼,並用於透過 REST 和所有 SDK 進行識別碼型路由。",
|
||||
"collectionIdPlaceholder": "例如,{{collectionName}}1",
|
||||
"collectionIdAriaLabel": "{{collectionName}} 識別碼,範例 {{collectionName}}1",
|
||||
"existingContainers": "現有的容器",
|
||||
"partitionKeyWarning": "目的地容器必不得已存在。資料總管將為您建立新的目的地容器。"
|
||||
},
|
||||
"cassandraAddCollection": {
|
||||
"keyspaceLabel": "索引鍵空間名稱",
|
||||
"keyspaceTooltip": "選取現有的索引鍵空間或輸入新的索引鍵空間識別碼。",
|
||||
"tableIdLabel": "輸入 CQL 命令以建立資料表。",
|
||||
"enterTableId": "輸入資料表識別碼",
|
||||
"tableSchemaAriaLabel": "資料表結構描述",
|
||||
"provisionDedicatedThroughput": "為此資料表佈建專用輸送量",
|
||||
"provisionDedicatedThroughputTooltip": "您可以選擇性地為已佈建輸送量的索引鍵空間內的資料表佈建專用輸送量。此專用輸送量數量不會與索引鍵空間中的其他資料表共用,也不會計入您為索引鍵空間所佈建的輸送量。除了您在索引鍵空間層級佈建的輸送量數量之外,也將針對此輸送量計費。"
|
||||
},
|
||||
"tables": {
|
||||
"addProperty": "新增屬性",
|
||||
"addRow": "新增資料列",
|
||||
"addEntity": "新增實體",
|
||||
"back": "返回",
|
||||
"nullFieldsWarning": "警告: 將不會顯示 Null 欄位供編輯。",
|
||||
"propertyEmptyError": "{{property}} 不得為空白。請輸入 {{property}} 的值",
|
||||
"whitespaceError": "{{property}} 不能有空格。請輸入 {{property}} 的值 (不含空格)",
|
||||
"propertyTypeEmptyError": "屬性類型不可為空白。請從屬性 {{property}} 的下拉式清單中選擇類型"
|
||||
},
|
||||
"tableQuerySelect": {
|
||||
"selectColumns": "請選取您要查詢的資料行。",
|
||||
"availableColumns": "可用的資料行"
|
||||
},
|
||||
"tableColumnSelection": {
|
||||
"selectColumns": "選取要在您的容器的項目檢視中顯示的資料行。",
|
||||
"searchFields": "搜尋欄位",
|
||||
"reset": "重設",
|
||||
"partitionKeySuffix": " (資料分割索引鍵)"
|
||||
},
|
||||
"newVertex": {
|
||||
"addProperty": "新增屬性"
|
||||
},
|
||||
"addGlobalSecondaryIndex": {
|
||||
"globalSecondaryIndexId": "全域次要索引容器識別碼",
|
||||
"globalSecondaryIndexIdPlaceholder": "例如,indexbyEmailId",
|
||||
"projectionQuery": "投射查詢",
|
||||
"projectionQueryPlaceholder": "SELECT c.email, c.accountId FROM c",
|
||||
"projectionQueryTooltip": "深入了解如何定義全域次要索引。",
|
||||
"disabledTitle": "已在建立全域次要索引。請等候它完成,再建立新的工作。"
|
||||
},
|
||||
"stringInput": {
|
||||
"inputMismatchError": "輸入 {{input}} 與選取的 {{selectedId}} 不符"
|
||||
},
|
||||
"panelInfo": {
|
||||
"information": "資訊",
|
||||
"moreDetails": "其他詳細資料"
|
||||
"title": "Sample Data",
|
||||
"startButton": "Start",
|
||||
"createPrompt": "Create a container \"{{containerName}}\" and import sample data into it. This may take a few minutes.",
|
||||
"creatingContainer": "Creating container \"{{containerName}}\"...",
|
||||
"importingData": "Importing data into \"{{containerName}}\"...",
|
||||
"success": "Successfully created \"{{containerName}}\" with sample data.",
|
||||
"errorContainerExists": "The container \"{{containerName}}\" in database \"{{databaseName}}\" already exists. Please delete it and retry.",
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -350,6 +350,25 @@ describe("Query Utils", () => {
|
||||
expect(partitionKeyValues.length).toBe(2);
|
||||
expect(partitionKeyValues).toEqual(["Japan", "hello"]);
|
||||
});
|
||||
|
||||
it("should extract partition key value when path has surrounding whitespace", () => {
|
||||
const doc = {
|
||||
id: "test-id",
|
||||
Country: "United States",
|
||||
Location: {
|
||||
type: "Point",
|
||||
},
|
||||
};
|
||||
|
||||
const partitionKeyDefinition: PartitionKeyDefinition = {
|
||||
kind: PartitionKeyKind.MultiHash,
|
||||
paths: ["/ Country ", "/ Location / type "],
|
||||
};
|
||||
|
||||
const partitionKeyValues: PartitionKey[] = extractPartitionKeyValues(doc, partitionKeyDefinition);
|
||||
expect(partitionKeyValues.length).toBe(2);
|
||||
expect(partitionKeyValues).toEqual(["United States", "Point"]);
|
||||
});
|
||||
});
|
||||
|
||||
describe("stripDoubleQuotesFromSegment", () => {
|
||||
|
||||
@@ -157,7 +157,11 @@ export const extractPartitionKeyValues = (
|
||||
const partitionKeyValues: PartitionKey[] = [];
|
||||
|
||||
partitionKeyDefinition.paths.forEach((partitionKeyPath: string) => {
|
||||
const pathSegments: string[] = partitionKeyPath.substring(1).split("/").map(stripDoubleQuotesFromSegment);
|
||||
const pathSegments: string[] = partitionKeyPath
|
||||
.substring(1)
|
||||
.split("/")
|
||||
.map(stripDoubleQuotesFromSegment)
|
||||
.map((s) => s.trim());
|
||||
const value = getValueForPath(documentContent, pathSegments);
|
||||
|
||||
if (value !== undefined) {
|
||||
|
||||
@@ -272,4 +272,27 @@ export const documentTestCases: DocumentTestCase[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Single Partition Key With Whitespace",
|
||||
databaseId: "e2etests-sql-readonly",
|
||||
containerId: "whitespacePartitionKey",
|
||||
documents: [
|
||||
{
|
||||
documentId: "whitespacePartitionKey",
|
||||
partitionKeys: [{ key: "/ partitionKey ", value: "whitespaceValue" }],
|
||||
},
|
||||
{
|
||||
documentId: "whitespacePartitionKey_empty_string",
|
||||
partitionKeys: [{ key: "/ partitionKey ", value: "" }],
|
||||
},
|
||||
{
|
||||
documentId: "whitespacePartitionKey_null",
|
||||
partitionKeys: [{ key: "/ partitionKey ", value: null }],
|
||||
},
|
||||
{
|
||||
documentId: "whitespacePartitionKey_missing",
|
||||
partitionKeys: [],
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user