@gooddata/sdk-ui 8.11.0-alpha.10 → 8.11.0-alpha.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/base/index.d.ts +2 -2
- package/dist/base/index.d.ts.map +1 -1
- package/dist/base/index.js +4 -1
- package/dist/base/index.js.map +1 -1
- package/dist/base/localization/Locale.d.ts +12 -0
- package/dist/base/localization/Locale.d.ts.map +1 -1
- package/dist/base/localization/Locale.js +26 -1
- package/dist/base/localization/Locale.js.map +1 -1
- package/dist/base/localization/TranslationsCustomizationProvider/utils.d.ts.map +1 -1
- package/dist/base/localization/TranslationsCustomizationProvider/utils.js +11 -15
- package/dist/base/localization/TranslationsCustomizationProvider/utils.js.map +1 -1
- package/dist/base/localization/bundles/de-DE.json +25 -7
- package/dist/base/localization/bundles/en-US.json +115 -30
- package/dist/base/localization/bundles/es-ES.json +26 -8
- package/dist/base/localization/bundles/fr-FR.json +26 -8
- package/dist/base/localization/bundles/ja-JP.json +26 -8
- package/dist/base/localization/bundles/nl-NL.json +25 -7
- package/dist/base/localization/bundles/pt-BR.json +26 -8
- package/dist/base/localization/bundles/pt-PT.json +26 -8
- package/dist/base/localization/bundles/ru-RU.json +26 -8
- package/dist/base/localization/bundles/zh-Hans.json +26 -8
- package/dist/base/localization/intlUtils.d.ts +8 -0
- package/dist/base/localization/intlUtils.d.ts.map +1 -1
- package/dist/base/localization/intlUtils.js +11 -1
- package/dist/base/localization/intlUtils.js.map +1 -1
- package/dist/execution/Execute.d.ts +1 -1
- package/dist/execution/Execute.d.ts.map +1 -1
- package/dist/execution/Execute.js +3 -0
- package/dist/execution/Execute.js.map +1 -1
- package/dist/execution/createExecution.d.ts +1 -1
- package/dist/execution/createExecution.d.ts.map +1 -1
- package/dist/execution/createExecution.js +1 -1
- package/dist/execution/createExecution.js.map +1 -1
- package/dist/sdk-ui.d.ts +24 -1
- package/esm/base/index.d.ts +2 -2
- package/esm/base/index.d.ts.map +1 -1
- package/esm/base/index.js +2 -2
- package/esm/base/index.js.map +1 -1
- package/esm/base/localization/Locale.d.ts +12 -0
- package/esm/base/localization/Locale.d.ts.map +1 -1
- package/esm/base/localization/Locale.js +25 -0
- package/esm/base/localization/Locale.js.map +1 -1
- package/esm/base/localization/TranslationsCustomizationProvider/utils.d.ts.map +1 -1
- package/esm/base/localization/TranslationsCustomizationProvider/utils.js +12 -16
- package/esm/base/localization/TranslationsCustomizationProvider/utils.js.map +1 -1
- package/esm/base/localization/bundles/de-DE.json +25 -7
- package/esm/base/localization/bundles/en-US.json +115 -30
- package/esm/base/localization/bundles/es-ES.json +26 -8
- package/esm/base/localization/bundles/fr-FR.json +26 -8
- package/esm/base/localization/bundles/ja-JP.json +26 -8
- package/esm/base/localization/bundles/nl-NL.json +25 -7
- package/esm/base/localization/bundles/pt-BR.json +26 -8
- package/esm/base/localization/bundles/pt-PT.json +26 -8
- package/esm/base/localization/bundles/ru-RU.json +26 -8
- package/esm/base/localization/bundles/zh-Hans.json +26 -8
- package/esm/base/localization/intlUtils.d.ts +8 -0
- package/esm/base/localization/intlUtils.d.ts.map +1 -1
- package/esm/base/localization/intlUtils.js +11 -1
- package/esm/base/localization/intlUtils.js.map +1 -1
- package/esm/execution/Execute.d.ts +1 -1
- package/esm/execution/Execute.d.ts.map +1 -1
- package/esm/execution/Execute.js +4 -1
- package/esm/execution/Execute.js.map +1 -1
- package/esm/execution/createExecution.d.ts +1 -1
- package/esm/execution/createExecution.d.ts.map +1 -1
- package/esm/execution/createExecution.js +1 -1
- package/esm/execution/createExecution.js.map +1 -1
- package/package.json +14 -11
- package/styles/scss/_settings.scss +14 -2
package/dist/base/index.d.ts
CHANGED
|
@@ -24,12 +24,12 @@ export { IClientWorkspaceProviderProps, IClientWorkspaceProviderCoreProps, IClie
|
|
|
24
24
|
export { IClientWorkspaceIdentifiers, IClientWorkspaceStatus, } from "./react/ClientWorkspaceContext/interfaces";
|
|
25
25
|
export { resolveLCMWorkspaceIdentifiers } from "./react/ClientWorkspaceContext/resolveLCMWorkspaceIdentifiers";
|
|
26
26
|
export { usePrevious } from "./react/usePrevious";
|
|
27
|
-
export { ILocale, DefaultLocale } from "./localization/Locale";
|
|
27
|
+
export { ILocale, DefaultLocale, isLocale, LOCALES } from "./localization/Locale";
|
|
28
28
|
export { getTranslation, getIntl } from "./localization/IntlStore";
|
|
29
29
|
export { IntlWrapper, IIntlWrapperProps } from "./localization/IntlWrapper";
|
|
30
30
|
export { messagesMap, ITranslations } from "./localization/messagesMap";
|
|
31
31
|
export { TranslationsProvider, IntlTranslationsProvider, ITranslationsComponentProps, ITranslationsProviderOwnProps, ITranslationsProviderProps, } from "./localization/TranslationsProvider";
|
|
32
|
-
export { createIntlMock, withIntl } from "./localization/intlUtils";
|
|
32
|
+
export { createIntlMock, withIntl, resolveLocale } from "./localization/intlUtils";
|
|
33
33
|
export { ITranslationsCustomizationContextProviderProps, TranslationsCustomizationContextProvider, withTranslationsCustomization, ITranslationsCustomizationProviderProps, TranslationsCustomizationProvider, pickCorrectInsightWording, pickCorrectMetricWording, pickCorrectWording, removeAllInsightToReportTranslations, removeAllWordingTranslationsWithSpecialSuffix, } from "./localization/TranslationsCustomizationProvider";
|
|
34
34
|
export { IMappingHeader, getMappingHeaderLocalIdentifier, hasMappingHeaderLocalIdentifier, getMappingHeaderUri, getMappingHeaderName, getMappingHeaderIdentifier, } from "./headerMatching/MappingHeader";
|
|
35
35
|
export { IHeaderPredicate, IHeaderPredicateContext, isHeaderPredicate, } from "./headerMatching/HeaderPredicate";
|
package/dist/base/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base/index.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/base/index.tsx"],"names":[],"mappings":"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"}
|
package/dist/base/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// (C) 2019-2022 GoodData Corporation
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.DefaultDataAccessConfig = exports.createNumberJsFormatter = exports.DataViewFacade = exports.CatalogHelper = exports.OverTimeComparisonTypes = exports.getVisualizationType = exports.VisualizationTypes = exports.createExportErrorFunction = exports.createExportFunction = exports.fireDrillEvent = exports.getIntersectionPartAfter = exports.getDrillIntersection = exports.isSomeHeaderPredicateMatched = exports.convertDrillableItemsToPredicates = exports.isDrillIntersectionAttributeItem = exports.isExplicitDrill = exports.isDrillableItem = exports.isDrillableItemUri = exports.isDrillableItemIdentifier = exports.fillMissingFormat = exports.fillMissingFormats = exports.ignoreTitlesForSimpleMeasures = exports.fillMissingTitles = exports.DerivedMeasureTitleSuffixFactory = exports.ArithmeticMeasureTitleFactory = exports.objMatch = exports.objRefMatch = exports.uriMatch = exports.localIdentifierMatch = exports.identifierMatch = exports.composedFromUri = exports.composedFromIdentifier = exports.attributeItemNameMatch = exports.HeaderPredicates = exports.isHeaderPredicate = exports.getMappingHeaderIdentifier = exports.getMappingHeaderName = exports.getMappingHeaderUri = exports.hasMappingHeaderLocalIdentifier = exports.getMappingHeaderLocalIdentifier = exports.removeAllWordingTranslationsWithSpecialSuffix = exports.removeAllInsightToReportTranslations = exports.pickCorrectWording = exports.pickCorrectMetricWording = exports.pickCorrectInsightWording = exports.TranslationsCustomizationProvider = exports.withTranslationsCustomization = exports.TranslationsCustomizationContextProvider = exports.withIntl = exports.createIntlMock = exports.IntlTranslationsProvider = exports.TranslationsProvider = exports.messagesMap = exports.IntlWrapper = exports.getIntl = exports.getTranslation = exports.DefaultLocale = exports.usePrevious = exports.resolveLCMWorkspaceIdentifiers = exports.useClientWorkspaceInitialized = exports.useClientWorkspaceError = exports.useClientWorkspaceStatus = exports.useClientWorkspaceIdentifiers = exports.ResolvedClientWorkspaceProvider = exports.ClientWorkspaceProvider = exports.resolveUseCancelablePromisesStatus = exports.resolveUseCancelablePromisesError = exports.getIntersectionAttributes = exports.withEntireDataView = exports.isCancelError = exports.makeCancelable = exports.CancelError = exports.wrapDisplayName = exports.withContexts = exports.useCancelablePromise = exports.usePagedResource = exports.useResolveValuesWithPlaceholders = exports.useResolveValueWithPlaceholders = exports.useComposedPlaceholder = exports.usePlaceholders = exports.usePlaceholder = exports.newPlaceholder = exports.newComposedPlaceholder = exports.isComposedPlaceholder = exports.isPlaceholder = exports.isAnyPlaceholder = exports.PlaceholdersProvider = exports.withWorkspace = exports.useWorkspaceStrict = exports.useWorkspace = exports.WorkspaceProvider = exports.withBackend = exports.useBackendStrict = exports.useBackend = exports.BackendProvider = exports.ErrorComponent = exports.LoadingComponent = exports.defaultErrorHandler = exports.convertError = exports.newErrorMapping = exports.isDynamicScriptLoadSdkError = exports.isUnknownSdkError = exports.isUnauthorized = exports.isProtectedReport = exports.isNotFound = exports.isNoDataSdkError = exports.isNegativeValues = exports.isGeoTokenMissing = exports.isGeoLocationMissing = exports.isDataTooLargeToDisplay = exports.isDataTooLargeToCompute = exports.isCancelledSdkError = exports.isBadRequest = exports.isGoodDataSdkError = exports.DynamicScriptLoadSdkError = exports.GeoTokenMissingSdkError = exports.BadRequestSdkError = exports.GeoLocationMissingSdkError = exports.DataTooLargeToDisplaySdkError = exports.DataTooLargeToComputeSdkError = exports.NegativeValuesSdkError = exports.NoDataSdkError = exports.ProtectedReportSdkError = exports.UnexpectedSdkError = exports.CancelledSdkError = exports.NotFoundSdkError = exports.UnauthorizedSdkError = exports.GoodDataSdkError = exports.ErrorCodes = exports.visualizationIsBetaWarning = exports.BucketNames = exports.DefaultColorPalette = void 0;
|
|
4
|
+
exports.DefaultDataAccessConfig = exports.createNumberJsFormatter = exports.DataViewFacade = exports.CatalogHelper = exports.OverTimeComparisonTypes = exports.getVisualizationType = exports.VisualizationTypes = exports.createExportErrorFunction = exports.createExportFunction = exports.fireDrillEvent = exports.getIntersectionPartAfter = exports.getDrillIntersection = exports.isSomeHeaderPredicateMatched = exports.convertDrillableItemsToPredicates = exports.isDrillIntersectionAttributeItem = exports.isExplicitDrill = exports.isDrillableItem = exports.isDrillableItemUri = exports.isDrillableItemIdentifier = exports.fillMissingFormat = exports.fillMissingFormats = exports.ignoreTitlesForSimpleMeasures = exports.fillMissingTitles = exports.DerivedMeasureTitleSuffixFactory = exports.ArithmeticMeasureTitleFactory = exports.objMatch = exports.objRefMatch = exports.uriMatch = exports.localIdentifierMatch = exports.identifierMatch = exports.composedFromUri = exports.composedFromIdentifier = exports.attributeItemNameMatch = exports.HeaderPredicates = exports.isHeaderPredicate = exports.getMappingHeaderIdentifier = exports.getMappingHeaderName = exports.getMappingHeaderUri = exports.hasMappingHeaderLocalIdentifier = exports.getMappingHeaderLocalIdentifier = exports.removeAllWordingTranslationsWithSpecialSuffix = exports.removeAllInsightToReportTranslations = exports.pickCorrectWording = exports.pickCorrectMetricWording = exports.pickCorrectInsightWording = exports.TranslationsCustomizationProvider = exports.withTranslationsCustomization = exports.TranslationsCustomizationContextProvider = exports.resolveLocale = exports.withIntl = exports.createIntlMock = exports.IntlTranslationsProvider = exports.TranslationsProvider = exports.messagesMap = exports.IntlWrapper = exports.getIntl = exports.getTranslation = exports.LOCALES = exports.isLocale = exports.DefaultLocale = exports.usePrevious = exports.resolveLCMWorkspaceIdentifiers = exports.useClientWorkspaceInitialized = exports.useClientWorkspaceError = exports.useClientWorkspaceStatus = exports.useClientWorkspaceIdentifiers = exports.ResolvedClientWorkspaceProvider = exports.ClientWorkspaceProvider = exports.resolveUseCancelablePromisesStatus = exports.resolveUseCancelablePromisesError = exports.getIntersectionAttributes = exports.withEntireDataView = exports.isCancelError = exports.makeCancelable = exports.CancelError = exports.wrapDisplayName = exports.withContexts = exports.useCancelablePromise = exports.usePagedResource = exports.useResolveValuesWithPlaceholders = exports.useResolveValueWithPlaceholders = exports.useComposedPlaceholder = exports.usePlaceholders = exports.usePlaceholder = exports.newPlaceholder = exports.newComposedPlaceholder = exports.isComposedPlaceholder = exports.isPlaceholder = exports.isAnyPlaceholder = exports.PlaceholdersProvider = exports.withWorkspace = exports.useWorkspaceStrict = exports.useWorkspace = exports.WorkspaceProvider = exports.withBackend = exports.useBackendStrict = exports.useBackend = exports.BackendProvider = exports.ErrorComponent = exports.LoadingComponent = exports.defaultErrorHandler = exports.convertError = exports.newErrorMapping = exports.isDynamicScriptLoadSdkError = exports.isUnknownSdkError = exports.isUnauthorized = exports.isProtectedReport = exports.isNotFound = exports.isNoDataSdkError = exports.isNegativeValues = exports.isGeoTokenMissing = exports.isGeoLocationMissing = exports.isDataTooLargeToDisplay = exports.isDataTooLargeToCompute = exports.isCancelledSdkError = exports.isBadRequest = exports.isGoodDataSdkError = exports.DynamicScriptLoadSdkError = exports.GeoTokenMissingSdkError = exports.BadRequestSdkError = exports.GeoLocationMissingSdkError = exports.DataTooLargeToDisplaySdkError = exports.DataTooLargeToComputeSdkError = exports.NegativeValuesSdkError = exports.NoDataSdkError = exports.ProtectedReportSdkError = exports.UnexpectedSdkError = exports.CancelledSdkError = exports.NotFoundSdkError = exports.UnauthorizedSdkError = exports.GoodDataSdkError = exports.ErrorCodes = exports.visualizationIsBetaWarning = exports.BucketNames = exports.DefaultColorPalette = void 0;
|
|
5
5
|
/*
|
|
6
6
|
*
|
|
7
7
|
*/
|
|
@@ -115,6 +115,8 @@ Object.defineProperty(exports, "usePrevious", { enumerable: true, get: function
|
|
|
115
115
|
*/
|
|
116
116
|
var Locale_1 = require("./localization/Locale");
|
|
117
117
|
Object.defineProperty(exports, "DefaultLocale", { enumerable: true, get: function () { return Locale_1.DefaultLocale; } });
|
|
118
|
+
Object.defineProperty(exports, "isLocale", { enumerable: true, get: function () { return Locale_1.isLocale; } });
|
|
119
|
+
Object.defineProperty(exports, "LOCALES", { enumerable: true, get: function () { return Locale_1.LOCALES; } });
|
|
118
120
|
var IntlStore_1 = require("./localization/IntlStore");
|
|
119
121
|
Object.defineProperty(exports, "getTranslation", { enumerable: true, get: function () { return IntlStore_1.getTranslation; } });
|
|
120
122
|
Object.defineProperty(exports, "getIntl", { enumerable: true, get: function () { return IntlStore_1.getIntl; } });
|
|
@@ -129,6 +131,7 @@ Object.defineProperty(exports, "IntlTranslationsProvider", { enumerable: true, g
|
|
|
129
131
|
var intlUtils_1 = require("./localization/intlUtils");
|
|
130
132
|
Object.defineProperty(exports, "createIntlMock", { enumerable: true, get: function () { return intlUtils_1.createIntlMock; } });
|
|
131
133
|
Object.defineProperty(exports, "withIntl", { enumerable: true, get: function () { return intlUtils_1.withIntl; } });
|
|
134
|
+
Object.defineProperty(exports, "resolveLocale", { enumerable: true, get: function () { return intlUtils_1.resolveLocale; } });
|
|
132
135
|
var TranslationsCustomizationProvider_1 = require("./localization/TranslationsCustomizationProvider");
|
|
133
136
|
Object.defineProperty(exports, "TranslationsCustomizationContextProvider", { enumerable: true, get: function () { return TranslationsCustomizationProvider_1.TranslationsCustomizationContextProvider; } });
|
|
134
137
|
Object.defineProperty(exports, "withTranslationsCustomization", { enumerable: true, get: function () { return TranslationsCustomizationProvider_1.withTranslationsCustomization; } });
|
package/dist/base/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/base/index.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/base/index.tsx"],"names":[],"mappings":";AAAA,qCAAqC;;;AAErC;;GAEG;AAEH,yDAA+D;AAAtD,mHAAA,mBAAmB,OAAA;AAC5B,uDAAsD;AAA7C,0GAAA,WAAW,OAAA;AACpB,6CAA+D;AAAtD,qHAAA,0BAA0B,OAAA;AAEnC;;GAEG;AACH,8DA+BmC;AA7B/B,8GAAA,UAAU,OAAA;AACV,oHAAA,gBAAgB,OAAA;AAChB,wHAAA,oBAAoB,OAAA;AACpB,oHAAA,gBAAgB,OAAA;AAChB,qHAAA,iBAAiB,OAAA;AACjB,sHAAA,kBAAkB,OAAA;AAClB,2HAAA,uBAAuB,OAAA;AACvB,kHAAA,cAAc,OAAA;AACd,0HAAA,sBAAsB,OAAA;AACtB,iIAAA,6BAA6B,OAAA;AAC7B,iIAAA,6BAA6B,OAAA;AAC7B,8HAAA,0BAA0B,OAAA;AAC1B,sHAAA,kBAAkB,OAAA;AAClB,2HAAA,uBAAuB,OAAA;AACvB,6HAAA,yBAAyB,OAAA;AACzB,sHAAA,kBAAkB,OAAA;AAClB,gHAAA,YAAY,OAAA;AACZ,uHAAA,mBAAmB,OAAA;AACnB,2HAAA,uBAAuB,OAAA;AACvB,2HAAA,uBAAuB,OAAA;AACvB,wHAAA,oBAAoB,OAAA;AACpB,qHAAA,iBAAiB,OAAA;AACjB,oHAAA,gBAAgB,OAAA;AAChB,oHAAA,gBAAgB,OAAA;AAChB,8GAAA,UAAU,OAAA;AACV,qHAAA,iBAAiB,OAAA;AACjB,kHAAA,cAAc,OAAA;AACd,qHAAA,iBAAiB,OAAA;AACjB,+HAAA,2BAA2B,OAAA;AAE/B,wDAKgC;AAH5B,gHAAA,eAAe,OAAA;AACf,6GAAA,YAAY,OAAA;AACZ,oHAAA,mBAAmB,OAAA;AAGvB;;GAEG;AACH,6DAA2E;AAAlE,oHAAA,gBAAgB,OAAA;AACzB,yDAAqE;AAA5D,gHAAA,cAAc,OAAA;AACvB,yDAMgC;AAL5B,iHAAA,eAAe,OAAA;AACf,4GAAA,UAAU,OAAA;AACV,kHAAA,gBAAgB,OAAA;AAChB,6GAAA,WAAW,OAAA;AAGf,6DAMkC;AAL9B,qHAAA,iBAAiB,OAAA;AACjB,gHAAA,YAAY,OAAA;AACZ,sHAAA,kBAAkB,OAAA;AAClB,iHAAA,aAAa,OAAA;AAGjB,wDAAgG;AAA3D,+GAAA,oBAAoB,OAAA;AACzD,kDAyBmC;AArB/B,wGAAA,gBAAgB,OAAA;AAChB,qGAAA,aAAa,OAAA;AACb,6GAAA,qBAAqB,OAAA;AAoBzB,wDAA2G;AAA7E,iHAAA,sBAAsB,OAAA;AAAE,yGAAA,cAAc,OAAA;AAkBpE,oDAMoC;AALhC,uGAAA,cAAc,OAAA;AACd,wGAAA,eAAe,OAAA;AACf,+GAAA,sBAAsB,OAAA;AACtB,wHAAA,+BAA+B,OAAA;AAC/B,yHAAA,gCAAgC,OAAA;AAEpC,6DAA6G;AAApG,oHAAA,gBAAgB,OAAA;AACzB,qEAUsC;AARlC,4HAAA,oBAAoB,OAAA;AASxB,qDAAoD;AAA3C,4GAAA,YAAY,OAAA;AACrB,2DAA0D;AAAjD,kHAAA,eAAe,OAAA;AACxB,+DAA2G;AAAlG,gHAAA,WAAW,OAAA;AAAsB,mHAAA,cAAc,OAAA;AAAE,kHAAA,aAAa,OAAA;AACvE,wEAA8F;AAArF,wHAAA,kBAAkB,OAAA;AAC3B,8EAAiF;AAAxE,kIAAA,yBAAyB,OAAA;AAElC,+EAG2C;AAFvC,8IAAA,iCAAiC,OAAA;AACjC,+IAAA,kCAAkC,OAAA;AAEtC,gGAW+D;AAN3D,iIAAA,uBAAuB,OAAA;AACvB,yIAAA,+BAA+B,OAAA;AAC/B,uIAAA,6BAA6B,OAAA;AAC7B,kIAAA,wBAAwB,OAAA;AACxB,iIAAA,uBAAuB,OAAA;AACvB,uIAAA,6BAA6B,OAAA;AAMjC,gHAA+G;AAAtG,gJAAA,8BAA8B,OAAA;AACvC,mDAAkD;AAAzC,0GAAA,WAAW,OAAA;AACpB;;GAEG;AAEH,gDAAkF;AAAhE,uGAAA,aAAa,OAAA;AAAE,kGAAA,QAAQ,OAAA;AAAE,iGAAA,OAAO,OAAA;AAClD,sDAAmE;AAA1D,2GAAA,cAAc,OAAA;AAAE,oGAAA,OAAO,OAAA;AAChC,0DAA4E;AAAnE,0GAAA,WAAW,OAAA;AACpB,0DAAwE;AAA/D,0GAAA,WAAW,OAAA;AACpB,4EAM6C;AALzC,4HAAA,oBAAoB,OAAA;AACpB,gIAAA,wBAAwB,OAAA;AAK5B,wBAAwB;AACxB,sDAAmF;AAA1E,2GAAA,cAAc,OAAA;AAAE,qGAAA,QAAQ,OAAA;AAAE,0GAAA,aAAa,OAAA;AAChD,sGAW0D;AATtD,6JAAA,wCAAwC,OAAA;AACxC,kJAAA,6BAA6B,OAAA;AAE7B,sJAAA,iCAAiC,OAAA;AACjC,8IAAA,yBAAyB,OAAA;AACzB,6IAAA,wBAAwB,OAAA;AACxB,uIAAA,kBAAkB,OAAA;AAClB,yJAAA,oCAAoC,OAAA;AACpC,kKAAA,6CAA6C,OAAA;AAGjD;;GAEG;AAEH,gEAOwC;AALpC,gIAAA,+BAA+B,OAAA;AAC/B,gIAAA,+BAA+B,OAAA;AAC/B,oHAAA,mBAAmB,OAAA;AACnB,qHAAA,oBAAoB,OAAA;AACpB,2HAAA,0BAA0B,OAAA;AAE9B,oEAI0C;AADtC,oHAAA,iBAAiB,OAAA;AAGrB,kFAUiD;AAT7C,0HAAA,gBAAgB,OAAA;AAChB,gIAAA,sBAAsB,OAAA;AACtB,gIAAA,sBAAsB,OAAA;AACtB,yHAAA,eAAe,OAAA;AACf,yHAAA,eAAe,OAAA;AACf,8HAAA,oBAAoB,OAAA;AACpB,kHAAA,QAAQ,OAAA;AACR,qHAAA,WAAW,OAAA;AACX,kHAAA,QAAQ,OAAA;AAGZ;;GAEG;AAEH,+FAA8F;AAArF,8IAAA,6BAA6B,OAAA;AACtC,qGAAoG;AAA3F,oJAAA,gCAAgC,OAAA;AACzC,uEAAsE;AAA7D,sHAAA,iBAAiB,OAAA;AAC1B,+FAA8F;AAArF,8IAAA,6BAA6B,OAAA;AAGtC;;GAEG;AAEH,0EAAyE;AAAhE,wHAAA,kBAAkB,OAAA;AAC3B,wEAAuE;AAA9D,sHAAA,iBAAiB,OAAA;AAyB1B,iDA0B2B;AARvB,wHAAA,yBAAyB,OAAA;AACzB,iHAAA,kBAAkB,OAAA;AAClB,8GAAA,eAAe,OAAA;AACf,8GAAA,eAAe,OAAA;AAEf,+HAAA,gCAAgC,OAAA;AAIpC,2CAMwB;AALpB,6HAAA,iCAAiC,OAAA;AACjC,wHAAA,4BAA4B,OAAA;AAC5B,gHAAA,oBAAoB,OAAA;AACpB,oHAAA,wBAAwB,OAAA;AACxB,0GAAA,cAAc,OAAA;AAElB,uCAA+E;AAAtE,8GAAA,oBAAoB,OAAA;AAAE,mHAAA,yBAAyB,OAAA;AACxD,+DAakC;AAZ9B,wHAAA,kBAAkB,OAAA;AAKlB,0HAAA,oBAAoB,OAAA;AASxB,sEAAkG;AAAjE,6HAAA,uBAAuB,OAAA;AACxD,yDAQiC;AAP7B,8GAAA,aAAa,OAAA;AASjB;;GAEG;AAEH,2CAAkD;AAAzC,wGAAA,cAAc,OAAA;AAqBvB,+DAMoC;AAFhC,2HAAA,uBAAuB,OAAA;AACvB,2HAAA,uBAAuB,OAAA"}
|
|
@@ -4,6 +4,18 @@
|
|
|
4
4
|
* @public
|
|
5
5
|
*/
|
|
6
6
|
export declare type ILocale = "en-US" | "de-DE" | "es-ES" | "fr-FR" | "ja-JP" | "nl-NL" | "pt-BR" | "pt-PT" | "zh-Hans" | "ru-RU";
|
|
7
|
+
/**
|
|
8
|
+
* Array of locales for type-guard. It must be the same as {@link ILocale}
|
|
9
|
+
*
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
export declare const LOCALES: string[];
|
|
13
|
+
/**
|
|
14
|
+
* Type-guard for language codes that can be used with GoodData.
|
|
15
|
+
*
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export declare const isLocale: (locale: unknown) => locale is ILocale;
|
|
7
19
|
/**
|
|
8
20
|
* Default value for {@link ILocale}.
|
|
9
21
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Locale.d.ts","sourceRoot":"","sources":["../../../src/base/localization/Locale.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,oBAAY,OAAO,GACb,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,SAAS,GACT,OAAO,CAAC;AAEd;;;;GAIG;AACH,eAAO,MAAM,aAAa,EAAE,OAAiB,CAAC"}
|
|
1
|
+
{"version":3,"file":"Locale.d.ts","sourceRoot":"","sources":["../../../src/base/localization/Locale.ts"],"names":[],"mappings":"AAEA;;;;GAIG;AACH,oBAAY,OAAO,GACb,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,OAAO,GACP,SAAS,GACT,OAAO,CAAC;AAEd;;;;GAIG;AACH,eAAO,MAAM,OAAO,UAWnB,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,QAAQ,WAAY,OAAO,sBAEvC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,aAAa,EAAE,OAAiB,CAAC"}
|
|
@@ -1,7 +1,32 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// (C) 2007-2022 GoodData Corporation
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.DefaultLocale = void 0;
|
|
4
|
+
exports.DefaultLocale = exports.isLocale = exports.LOCALES = void 0;
|
|
5
|
+
/**
|
|
6
|
+
* Array of locales for type-guard. It must be the same as {@link ILocale}
|
|
7
|
+
*
|
|
8
|
+
* @internal
|
|
9
|
+
*/
|
|
10
|
+
exports.LOCALES = [
|
|
11
|
+
"en-US",
|
|
12
|
+
"de-DE",
|
|
13
|
+
"es-ES",
|
|
14
|
+
"fr-FR",
|
|
15
|
+
"ja-JP",
|
|
16
|
+
"nl-NL",
|
|
17
|
+
"pt-BR",
|
|
18
|
+
"pt-PT",
|
|
19
|
+
"zh-Hans",
|
|
20
|
+
"ru-RU",
|
|
21
|
+
];
|
|
22
|
+
/**
|
|
23
|
+
* Type-guard for language codes that can be used with GoodData.
|
|
24
|
+
*
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
exports.isLocale = function (locale) {
|
|
28
|
+
return typeof locale === "string" && exports.LOCALES.includes(locale);
|
|
29
|
+
};
|
|
5
30
|
/**
|
|
6
31
|
* Default value for {@link ILocale}.
|
|
7
32
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Locale.js","sourceRoot":"","sources":["../../../src/base/localization/Locale.ts"],"names":[],"mappings":";AAAA,qCAAqC;;;AAmBrC;;;;GAIG;AACU,QAAA,aAAa,GAAY,OAAO,CAAC"}
|
|
1
|
+
{"version":3,"file":"Locale.js","sourceRoot":"","sources":["../../../src/base/localization/Locale.ts"],"names":[],"mappings":";AAAA,qCAAqC;;;AAmBrC;;;;GAIG;AACU,QAAA,OAAO,GAAG;IACnB,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,OAAO;IACP,SAAS;IACT,OAAO;CACV,CAAC;AAEF;;;;GAIG;AACU,QAAA,QAAQ,GAAG,UAAC,MAAe;IACpC,OAAO,OAAO,MAAM,KAAK,QAAQ,IAAI,eAAO,CAAC,QAAQ,CAAC,MAAiB,CAAC,CAAC;AAC7E,CAAC,CAAC;AAEF;;;;GAIG;AACU,QAAA,aAAa,GAAY,OAAO,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/base/localization/TranslationsCustomizationProvider/utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AA2B/D;;GAEG;AACH,eAAO,MAAM,yBAAyB,iBACpB,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CAIvB,CAAC;AAyBF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,iBACnB,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CAIvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,iBACb,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CACiE,CAAC;AAE1F;;GAEG;AACH,eAAO,MAAM,oCAAoC,iBAC/B,OAAO,MAAM,EAAE,MAAM,CAAC,KACrC,OAAO,MAAM,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/base/localization/TranslationsCustomizationProvider/utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AA2B/D;;GAEG;AACH,eAAO,MAAM,yBAAyB,iBACpB,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CAIvB,CAAC;AAyBF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,iBACnB,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CAIvB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,iBACb,OAAO,MAAM,EAAE,MAAM,CAAC,gDAErC,OAAO,MAAM,EAAE,MAAM,CACiE,CAAC;AAE1F;;GAEG;AACH,eAAO,MAAM,oCAAoC,iBAC/B,OAAO,MAAM,EAAE,MAAM,CAAC,KACrC,OAAO,MAAM,EAAE,MAAM,CAGnB,CAAC;AAEN;;;GAGG;AACH,eAAO,MAAM,6CAA6C,iBACxC,OAAO,MAAM,EAAE,MAAM,CAAC,KACrC,OAAO,MAAM,EAAE,MAAM,CASnB,CAAC"}
|
|
@@ -60,26 +60,22 @@ exports.pickCorrectWording = function (translations, settings) {
|
|
|
60
60
|
* @beta
|
|
61
61
|
*/
|
|
62
62
|
exports.removeAllInsightToReportTranslations = function (translations) {
|
|
63
|
-
Object.
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
});
|
|
68
|
-
return tslib_1.__assign({}, translations);
|
|
63
|
+
return Object.fromEntries(Object.entries(translations).filter(function (_a) {
|
|
64
|
+
var _b = tslib_1.__read(_a, 1), key = _b[0];
|
|
65
|
+
return !key.includes("|report") && !key.includes("|insight");
|
|
66
|
+
}));
|
|
69
67
|
};
|
|
70
68
|
/**
|
|
71
69
|
* The function to remove all translation keys that contain special suffixes "|report", "|insight", "._measure" or "._metric"
|
|
72
70
|
* @beta
|
|
73
71
|
*/
|
|
74
72
|
exports.removeAllWordingTranslationsWithSpecialSuffix = function (translations) {
|
|
75
|
-
Object.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
key.includes("
|
|
79
|
-
key.includes(".
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
});
|
|
83
|
-
return tslib_1.__assign({}, translations);
|
|
73
|
+
return Object.fromEntries(Object.entries(translations).filter(function (_a) {
|
|
74
|
+
var _b = tslib_1.__read(_a, 1), key = _b[0];
|
|
75
|
+
return !key.includes("|report") &&
|
|
76
|
+
!key.includes("|insight") &&
|
|
77
|
+
!key.includes("._measure") &&
|
|
78
|
+
!key.includes("._metric");
|
|
79
|
+
}));
|
|
84
80
|
};
|
|
85
81
|
//# sourceMappingURL=utils.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../src/base/localization/TranslationsCustomizationProvider/utils.ts"],"names":[],"mappings":";;;;AAAA,qCAAqC;AACrC,oEAAqC;AAGrC,IAAM,SAAS,GAAG,UAAC,GAAW,EAAE,cAAsB,IAAK,OAAA,GAAG,CAAC,OAAO,CAAC,cAAc,EAAE,EAAE,CAAC,EAA/B,CAA+B,CAAC;AAE3F,IAAM,8BAA8B,GAAG,UACnC,YAAoC,EACpC,wBAAiC;IAEjC,IAAM,oBAAoB,GAAG,EAAE,CAAC;IAChC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;QAClC,IAAI,GAAG,CAAC,QAAQ,CAAC,SAAS,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;YACrD,IAAM,MAAM,GAAG,SAAS,CAAC,GAAG,EAAE,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC;YACjF,oBAAoB,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;SACpD;IACL,CAAC,CAAC,CAAC;IACH,6CACO,YAAY,GACZ,oBAAoB,EACzB;AACN,CAAC,CAAC;AAEF;;;GAGG;AACH,IAAM,sCAAsC,GAAG,qBAAU,CAAC,8BAA8B,CAAC,CAAC;AAE1F;;GAEG;AACU,QAAA,yBAAyB,GAAG,UACrC,YAAoC,EACpC,QAA6B;IAE7B,IAAM,wBAAwB,GAAG,CAAC,EAAC,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,qBAAqB,CAAA,CAAC;IAEnE,OAAO,sCAAsC,CAAC,YAAY,EAAE,wBAAwB,CAAC,CAAC;AAC1F,CAAC,CAAC;AAEF,IAAM,6BAA6B,GAAG,UAClC,YAAoC,EACpC,gCAAyC;IAEzC,IAAM,oBAAoB,GAAG,EAAE,CAAC;IAChC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,OAAO,CAAC,UAAC,GAAG;QAClC,IAAI,GAAG,CAAC,QAAQ,CAAC,UAAU,CAAC,IAAI,GAAG,CAAC,QAAQ,CAAC,WAAW,CAAC,EAAE;YACvD,IAAM,MAAM,GAAG,SAAS,CAAC,GAAG,EAAE,gCAAgC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;YAC3F,oBAAoB,CAAC,MAAM,CAAC,GAAG,YAAY,CAAC,GAAG,CAAC,CAAC;SACpD;IACL,CAAC,CAAC,CAAC;IACH,6CACO,YAAY,GACZ,oBAAoB,EACzB;AACN,CAAC,CAAC;AAEF;;;GAGG;AACH,IAAM,qCAAqC,GAAG,qBAAU,CAAC,6BAA6B,CAAC,CAAC;AAExF;;;GAGG;AACU,QAAA,wBAAwB,GAAG,UACpC,YAAoC,EACpC,QAA6B;IAE7B,IAAM,gCAAgC,GAAG,CAAC,EAAC,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,6BAA6B,CAAA,CAAC;IAEnF,OAAO,qCAAqC,CAAC,YAAY,EAAE,gCAAgC,CAAC,CAAC;AACjG,CAAC,CAAC;AAEF;;GAEG;AACU,QAAA,kBAAkB,GAAG,UAC9B,YAAoC,EACpC,QAA6B;IAE7B,OAAA,gCAAwB,CAAC,iCAAyB,CAAC,YAAY,EAAE,QAAQ,CAAC,EAAE,QAAQ,CAAC;AAArF,CAAqF,CAAC;AAE1F;;GAEG;AACU,QAAA,oCAAoC,GAAG,UAChD,YAAoC;IAEpC,MAAM,CAAC,
|
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../../src/base/localization/TranslationsCustomizationProvider/utils.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"gs.list.all": "Alle ",
|
|
7
7
|
"gs.list.except": "außer",
|
|
8
8
|
"gs.list.is": "ist",
|
|
9
|
+
"gs.list.search.placeholder": "Suchen…",
|
|
9
10
|
"gs.list.notAvailableAbbreviation": "nicht angegeben",
|
|
10
11
|
"gs.list.searchResults": "Ergebnisse suchen",
|
|
11
12
|
"gs.visualizationsList.loading": "Lädt…",
|
|
@@ -53,7 +54,6 @@
|
|
|
53
54
|
"visualization.tooltip.interaction": "Klicken Sie das Diagramm um zu drillen",
|
|
54
55
|
"gs.filterLabel.all": "Alle ",
|
|
55
56
|
"gs.filterLabel.none": "Keine",
|
|
56
|
-
"gs.filter.loading": "Filter wird geladen…",
|
|
57
57
|
"gs.filter.error": "Fehler beim Laden des Filters",
|
|
58
58
|
"gs.list.clear": "Löschen",
|
|
59
59
|
"gs.list.cancel": "Abbrechen",
|
|
@@ -61,9 +61,13 @@
|
|
|
61
61
|
"gs.list.only": "Nur",
|
|
62
62
|
"gs.list.selectAll": "Alle auswählen",
|
|
63
63
|
"gs.list.limitExceeded": "Leider haben Sie den Grenzwert ({limit}) überschritten.",
|
|
64
|
+
"gs.list.limitReached": "Sie haben das Limit von {limit} ausgewählten Werten erreicht.",
|
|
65
|
+
"gs.list.cannotSelectMoreValues": "Sie können nicht mehr als {limit} Werte auswählen.",
|
|
64
66
|
"gs.list.noItemsFound": "Keine Elemente gefunden.",
|
|
67
|
+
"gs.list.noResultsMatch": "Keine passenden Ergebnisse",
|
|
65
68
|
"gs.list.error": "Fehler beim Laden der Listenobjekte",
|
|
66
69
|
"gs.header.upsellButtonText": "Upgrade",
|
|
70
|
+
"gs.header.invite": "Einladen",
|
|
67
71
|
"gs.header.countdown.numberOfDaysLeft": "{number} Tage übrig",
|
|
68
72
|
"gs.header.countdown.numberOfMonthsLeft": "{number} Monate übrig",
|
|
69
73
|
"gs.header.countdown.oneMonthLeft": "1 Monat übrig",
|
|
@@ -242,8 +246,6 @@
|
|
|
242
246
|
"measureNumberCustomFormatDialog.definition": "Definition",
|
|
243
247
|
"measureNumberCustomFormatDialog.preview": "Vorschau",
|
|
244
248
|
"properties.legend.title": "Legende",
|
|
245
|
-
"attrf.all": "Alle ",
|
|
246
|
-
"attrf.all_except": "Alle außer",
|
|
247
249
|
"rankingFilter.topBottom": "Top/Bottom-Werte",
|
|
248
250
|
"rankingFilter.top": "Höchste",
|
|
249
251
|
"rankingFilter.bottom": "Untere",
|
|
@@ -260,10 +262,14 @@
|
|
|
260
262
|
"rankingFilter.preview.top_with_attribute": "Top {value} von <strong>{attribute}</strong> basierend auf <strong>{measure}</strong>",
|
|
261
263
|
"rankingFilter.preview.bottom_with_attribute": "Bottom {value} von <strong>{attribute}</strong> basierend auf <strong>{measure}</strong>",
|
|
262
264
|
"rankingFilter.valueTooltip": "Wenn mehrere Elemente den gleichen Wert haben, zeigt der Filter alle Elemente mit diesem Wert an. In diesem Fall kann die Einsicht mehr Elemente anzeigen als die eingestellte Zahl.",
|
|
263
|
-
"attributesDropdown.
|
|
264
|
-
"attributesDropdown.itemsFiltered.tooltip": "Elemente wurden nach: <strong>{filters}</strong> gefiltert",
|
|
265
|
+
"attributesDropdown.itemsFiltered.tooltip": "Werte werden gefiltert nach: <strong>{filters}</strong>",
|
|
265
266
|
"attributesDropdown.itemsFiltered": "Elemente wurden gefiltert",
|
|
266
267
|
"attributesDropdown.noData": "Dieses Attribut hat keinen Wert.",
|
|
268
|
+
"attributesDropdown.noResultsMatch": "Keine passenden Ergebnisse.",
|
|
269
|
+
"attributesDropdown.allItemsFiltered": "Alle Werte wurden herausgefiltert.",
|
|
270
|
+
"attributesDropdown.configuration": "Konfiguration",
|
|
271
|
+
"attributesDropdown.removeTooltip": "Vom Dashboard entfernen",
|
|
272
|
+
"attributesDropdown.display_as": "Anzeigen als: {title}",
|
|
267
273
|
"shareDialog.share.grantee.title": "Mit Benutzern und Gruppen teilen",
|
|
268
274
|
"shareDialog.share.grantee.share": "Teilen",
|
|
269
275
|
"shareDialog.share.grantee.list.title": "Geteilt mit",
|
|
@@ -293,7 +299,6 @@
|
|
|
293
299
|
"sorting.by": "nach",
|
|
294
300
|
"sorting.sum.of.all.measure": "Gesamt",
|
|
295
301
|
"sorting.default.tooltip": "Verwenden Sie die Sortierung, die im Attribut definiert ist.",
|
|
296
|
-
"attributeFilterDropdown.emptyValue": "leerer Wert",
|
|
297
302
|
"embedInsightDialog.actions.close": "Schließen",
|
|
298
303
|
"embedInsightDialog.actions.copyCode": "Code kopieren",
|
|
299
304
|
"embedInsightDialog.code.language.codeAs": "Code als",
|
|
@@ -313,5 +318,18 @@
|
|
|
313
318
|
"embedInsightDialog.complete.list.props.message": "Vollständige Liste der Einbettungseigenschaften",
|
|
314
319
|
"error.overlay.login": "Anmeldung",
|
|
315
320
|
"error.overlay.title": "Sie wurden abgemeldet",
|
|
316
|
-
"error.overlay.text": "Bitte melden Sie sich erneut an, um Ihre Arbeit fortzusetzen."
|
|
321
|
+
"error.overlay.text": "Bitte melden Sie sich erneut an, um Ihre Arbeit fortzusetzen.",
|
|
322
|
+
"stylingPicker.title.basic": "Standard",
|
|
323
|
+
"stylingPicker.title.custom": "Benutzerdefiniert",
|
|
324
|
+
"stylingPicker.title.create": "Erstellen",
|
|
325
|
+
"stylingEditor.dialog.name": "Name",
|
|
326
|
+
"stylingEditor.dialog.name.required": "Speichern nicht möglich. Geben Sie einen Namen an.",
|
|
327
|
+
"stylingEditor.dialog.definition": "Definition",
|
|
328
|
+
"stylingEditor.dialog.definition.required": "Speichern nicht möglich. Geben Sie eine Definition an.",
|
|
329
|
+
"stylingEditor.dialog.definition.invalid": "Speichern nicht möglich. Die Definition ist kein gültiges JSON-Objekt.",
|
|
330
|
+
"stylingEditor.dialog.examples": "Vorlagen",
|
|
331
|
+
"stylingEditor.dialog.example.paste": "Einfügen",
|
|
332
|
+
"stylingPicker.item.edit": "Bearbeiten",
|
|
333
|
+
"stylingPicker.item.delete": "Löschen",
|
|
334
|
+
"stylingPicker.item.delete.tooltip": "Das ausgewählte Element kann nicht gelöscht werden."
|
|
317
335
|
}
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"limit": 0
|
|
36
36
|
},
|
|
37
37
|
"gs.list.search.placeholder": {
|
|
38
|
-
"value": "Search
|
|
39
|
-
"comment": "
|
|
38
|
+
"value": "Search…",
|
|
39
|
+
"comment": "Use '…' as one character, not 3 dots ('...').",
|
|
40
40
|
"limit": 0
|
|
41
41
|
},
|
|
42
42
|
"gs.list.notAvailableAbbreviation": {
|
|
@@ -316,11 +316,6 @@
|
|
|
316
316
|
"comment": "",
|
|
317
317
|
"limit": 0
|
|
318
318
|
},
|
|
319
|
-
"gs.filter.loading": {
|
|
320
|
-
"value": "Loading filter…",
|
|
321
|
-
"comment": "Use '…' as one character, not 3 dots ('...').",
|
|
322
|
-
"limit": 0
|
|
323
|
-
},
|
|
324
319
|
"gs.filter.error": {
|
|
325
320
|
"value": "Error loading filter",
|
|
326
321
|
"comment": "",
|
|
@@ -356,11 +351,26 @@
|
|
|
356
351
|
"comment": "Don't translate placeholder '{limit}'.",
|
|
357
352
|
"limit": 0
|
|
358
353
|
},
|
|
354
|
+
"gs.list.limitReached": {
|
|
355
|
+
"value": "You have reached the limit of {limit} selected values.",
|
|
356
|
+
"comment": "Don't translate placeholder '{limit}'.",
|
|
357
|
+
"limit": 0
|
|
358
|
+
},
|
|
359
|
+
"gs.list.cannotSelectMoreValues": {
|
|
360
|
+
"value": "You cannot select more than {limit} values.",
|
|
361
|
+
"comment": "Don't translate placeholder '{limit}'.",
|
|
362
|
+
"limit": 0
|
|
363
|
+
},
|
|
359
364
|
"gs.list.noItemsFound": {
|
|
360
365
|
"value": "No items found.",
|
|
361
366
|
"comment": "",
|
|
362
367
|
"limit": 0
|
|
363
368
|
},
|
|
369
|
+
"gs.list.noResultsMatch": {
|
|
370
|
+
"value": "No results match",
|
|
371
|
+
"comment": "",
|
|
372
|
+
"limit": 0
|
|
373
|
+
},
|
|
364
374
|
"gs.list.error": {
|
|
365
375
|
"value": "Error loading list items",
|
|
366
376
|
"comment": "",
|
|
@@ -371,6 +381,11 @@
|
|
|
371
381
|
"comment": "",
|
|
372
382
|
"limit": 0
|
|
373
383
|
},
|
|
384
|
+
"gs.header.invite": {
|
|
385
|
+
"value": "Invite",
|
|
386
|
+
"comment": "",
|
|
387
|
+
"limit": 0
|
|
388
|
+
},
|
|
374
389
|
"gs.header.countdown.numberOfDaysLeft": {
|
|
375
390
|
"value": "{number} days left",
|
|
376
391
|
"comment": "",
|
|
@@ -1261,16 +1276,6 @@
|
|
|
1261
1276
|
"comment": "",
|
|
1262
1277
|
"limit": 0
|
|
1263
1278
|
},
|
|
1264
|
-
"attrf.all": {
|
|
1265
|
-
"value": "All",
|
|
1266
|
-
"comment": "",
|
|
1267
|
-
"limit": 0
|
|
1268
|
-
},
|
|
1269
|
-
"attrf.all_except": {
|
|
1270
|
-
"value": "All except",
|
|
1271
|
-
"comment": "",
|
|
1272
|
-
"limit": 0
|
|
1273
|
-
},
|
|
1274
1279
|
"rankingFilter.topBottom": {
|
|
1275
1280
|
"value": "Top/bottom values",
|
|
1276
1281
|
"comment": "Filter title",
|
|
@@ -1369,13 +1374,8 @@
|
|
|
1369
1374
|
"limit": 0,
|
|
1370
1375
|
"translate": false
|
|
1371
1376
|
},
|
|
1372
|
-
"attributesDropdown.allItemsFiltered": {
|
|
1373
|
-
"value": "All items are filtered out",
|
|
1374
|
-
"comment": "This message is displayed when there are no items available because they were filtered out by parent filters",
|
|
1375
|
-
"limit": 0
|
|
1376
|
-
},
|
|
1377
1377
|
"attributesDropdown.itemsFiltered.tooltip": {
|
|
1378
|
-
"value": "
|
|
1378
|
+
"value": "Values are filtered by: <strong>{filters}</strong>",
|
|
1379
1379
|
"comment": "Do not translate HTML markup enclosed in <> and {filters} placeholder as it will be replaced by list of filter names.",
|
|
1380
1380
|
"limit": 0
|
|
1381
1381
|
},
|
|
@@ -1385,8 +1385,33 @@
|
|
|
1385
1385
|
"limit": 0
|
|
1386
1386
|
},
|
|
1387
1387
|
"attributesDropdown.noData": {
|
|
1388
|
-
"value": "This attribute
|
|
1389
|
-
"comment": "",
|
|
1388
|
+
"value": "This attribute has no values.",
|
|
1389
|
+
"comment": "This message is displayed when when there are no items available because the attribute has no elements.",
|
|
1390
|
+
"limit": 0
|
|
1391
|
+
},
|
|
1392
|
+
"attributesDropdown.noResultsMatch": {
|
|
1393
|
+
"value": "No results match.",
|
|
1394
|
+
"comment": "This message is displayed when when there are no items available because they were filtered out by search.",
|
|
1395
|
+
"limit": 0
|
|
1396
|
+
},
|
|
1397
|
+
"attributesDropdown.allItemsFiltered": {
|
|
1398
|
+
"value": "All values are filtered out.",
|
|
1399
|
+
"comment": "This message is displayed when there are no items available because they were filtered out by parent filters.",
|
|
1400
|
+
"limit": 0
|
|
1401
|
+
},
|
|
1402
|
+
"attributesDropdown.configuration": {
|
|
1403
|
+
"value": "Configuration",
|
|
1404
|
+
"comment": "Configuration button label in attribute filter dropdown",
|
|
1405
|
+
"limit": 0
|
|
1406
|
+
},
|
|
1407
|
+
"attributesDropdown.removeTooltip": {
|
|
1408
|
+
"value": "Remove from dashboard",
|
|
1409
|
+
"comment": "Tooltip text of button for deleting filter",
|
|
1410
|
+
"limit": 0
|
|
1411
|
+
},
|
|
1412
|
+
"attributesDropdown.display_as": {
|
|
1413
|
+
"value": "Display as: {title}",
|
|
1414
|
+
"comment": "Label shown on dropdown button that changes form of the attribute used in insight. For example 'Display as: Shortened name'",
|
|
1390
1415
|
"limit": 0
|
|
1391
1416
|
},
|
|
1392
1417
|
"shareDialog.share.grantee.title": {
|
|
@@ -1540,11 +1565,6 @@
|
|
|
1540
1565
|
"comment": "Tooltip that explains user that default sorting of the selected attribute will be applied on the insight.",
|
|
1541
1566
|
"limit": 0
|
|
1542
1567
|
},
|
|
1543
|
-
"attributeFilterDropdown.emptyValue": {
|
|
1544
|
-
"value": "empty value",
|
|
1545
|
-
"comment": "",
|
|
1546
|
-
"limit": 0
|
|
1547
|
-
},
|
|
1548
1568
|
"embedInsightDialog.actions.close": {
|
|
1549
1569
|
"value": "Close",
|
|
1550
1570
|
"comment": "",
|
|
@@ -1674,5 +1694,70 @@
|
|
|
1674
1694
|
"value": "Please log back in to continue your work.",
|
|
1675
1695
|
"comment": "",
|
|
1676
1696
|
"limit": 0
|
|
1697
|
+
},
|
|
1698
|
+
"stylingPicker.title.basic": {
|
|
1699
|
+
"value": "Default",
|
|
1700
|
+
"comment": "",
|
|
1701
|
+
"limit": 0
|
|
1702
|
+
},
|
|
1703
|
+
"stylingPicker.title.custom": {
|
|
1704
|
+
"value": "Custom",
|
|
1705
|
+
"comment": "",
|
|
1706
|
+
"limit": 0
|
|
1707
|
+
},
|
|
1708
|
+
"stylingPicker.title.create": {
|
|
1709
|
+
"value": "Create",
|
|
1710
|
+
"comment": "",
|
|
1711
|
+
"limit": 0
|
|
1712
|
+
},
|
|
1713
|
+
"stylingEditor.dialog.name": {
|
|
1714
|
+
"value": "Name",
|
|
1715
|
+
"comment": "",
|
|
1716
|
+
"limit": 0
|
|
1717
|
+
},
|
|
1718
|
+
"stylingEditor.dialog.name.required": {
|
|
1719
|
+
"value": "Cannot save. Specify a name.",
|
|
1720
|
+
"comment": "",
|
|
1721
|
+
"limit": 0
|
|
1722
|
+
},
|
|
1723
|
+
"stylingEditor.dialog.definition": {
|
|
1724
|
+
"value": "Definition",
|
|
1725
|
+
"comment": "Name of the text field to describe an object.",
|
|
1726
|
+
"limit": 0
|
|
1727
|
+
},
|
|
1728
|
+
"stylingEditor.dialog.definition.required": {
|
|
1729
|
+
"value": "Cannot save. Specify a definition.",
|
|
1730
|
+
"comment": "",
|
|
1731
|
+
"limit": 0
|
|
1732
|
+
},
|
|
1733
|
+
"stylingEditor.dialog.definition.invalid": {
|
|
1734
|
+
"value": "Cannot save. The definition is not a valid JSON object.",
|
|
1735
|
+
"comment": "",
|
|
1736
|
+
"limit": 0
|
|
1737
|
+
},
|
|
1738
|
+
"stylingEditor.dialog.examples": {
|
|
1739
|
+
"value": "Templates",
|
|
1740
|
+
"comment": "",
|
|
1741
|
+
"limit": 0
|
|
1742
|
+
},
|
|
1743
|
+
"stylingEditor.dialog.example.paste": {
|
|
1744
|
+
"value": "Paste",
|
|
1745
|
+
"comment": "Button text to paste content into text field.",
|
|
1746
|
+
"limit": 0
|
|
1747
|
+
},
|
|
1748
|
+
"stylingPicker.item.edit": {
|
|
1749
|
+
"value": "Edit",
|
|
1750
|
+
"comment": "",
|
|
1751
|
+
"limit": 0
|
|
1752
|
+
},
|
|
1753
|
+
"stylingPicker.item.delete": {
|
|
1754
|
+
"value": "Delete",
|
|
1755
|
+
"comment": "",
|
|
1756
|
+
"limit": 0
|
|
1757
|
+
},
|
|
1758
|
+
"stylingPicker.item.delete.tooltip": {
|
|
1759
|
+
"value": "Applied item cannot be deleted.",
|
|
1760
|
+
"comment": "",
|
|
1761
|
+
"limit": 0
|
|
1677
1762
|
}
|
|
1678
1763
|
}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
"gs.list.all": "Todo",
|
|
7
7
|
"gs.list.except": "excepto",
|
|
8
8
|
"gs.list.is": "es",
|
|
9
|
+
"gs.list.search.placeholder": "Buscar…",
|
|
9
10
|
"gs.list.notAvailableAbbreviation": "N/D",
|
|
10
11
|
"gs.list.searchResults": "resultados de la búsqueda",
|
|
11
12
|
"gs.visualizationsList.loading": "Cargando…",
|
|
@@ -53,7 +54,6 @@
|
|
|
53
54
|
"visualization.tooltip.interaction": "Haga clic en el gráfico para explorar",
|
|
54
55
|
"gs.filterLabel.all": "Todo",
|
|
55
56
|
"gs.filterLabel.none": "Ninguno",
|
|
56
|
-
"gs.filter.loading": "Cargando filtro…",
|
|
57
57
|
"gs.filter.error": "Error al cargar filtro",
|
|
58
58
|
"gs.list.clear": "Borrar",
|
|
59
59
|
"gs.list.cancel": "Cancelar",
|
|
@@ -61,9 +61,13 @@
|
|
|
61
61
|
"gs.list.only": "Solo",
|
|
62
62
|
"gs.list.selectAll": "Seleccionar todo",
|
|
63
63
|
"gs.list.limitExceeded": "Lo sentimos, ha superado el límite ({limit}).",
|
|
64
|
+
"gs.list.limitReached": "Ha alcanzado el límite de {limit} valores seleccionados.",
|
|
65
|
+
"gs.list.cannotSelectMoreValues": "No puede seleccionar más de {limit} valores.",
|
|
64
66
|
"gs.list.noItemsFound": "No se ha encontrado ningún elemento.",
|
|
67
|
+
"gs.list.noResultsMatch": "Ningún resultado coincide",
|
|
65
68
|
"gs.list.error": "Error al cargar los elementos de la lista",
|
|
66
69
|
"gs.header.upsellButtonText": "Actualizar",
|
|
70
|
+
"gs.header.invite": "Invitar",
|
|
67
71
|
"gs.header.countdown.numberOfDaysLeft": "Quedan {number} días",
|
|
68
72
|
"gs.header.countdown.numberOfMonthsLeft": "Quedan {number} meses",
|
|
69
73
|
"gs.header.countdown.oneMonthLeft": "Queda 1 mes",
|
|
@@ -242,8 +246,6 @@
|
|
|
242
246
|
"measureNumberCustomFormatDialog.definition": "Definición",
|
|
243
247
|
"measureNumberCustomFormatDialog.preview": "Vista previa",
|
|
244
248
|
"properties.legend.title": "Leyenda",
|
|
245
|
-
"attrf.all": "Todo",
|
|
246
|
-
"attrf.all_except": "Todo excepto",
|
|
247
249
|
"rankingFilter.topBottom": "Valores superiores/inferiores",
|
|
248
250
|
"rankingFilter.top": "Arriba",
|
|
249
251
|
"rankingFilter.bottom": "Abajo",
|
|
@@ -260,10 +262,14 @@
|
|
|
260
262
|
"rankingFilter.preview.top_with_attribute": "{value} superiores de <strong>{attribute}</strong> según <strong>{measure}</strong>",
|
|
261
263
|
"rankingFilter.preview.bottom_with_attribute": "{value} inferiores de <strong>{attribute}</strong> según <strong>{measure}</strong>",
|
|
262
264
|
"rankingFilter.valueTooltip": "Si varios elementos tienen el mismo valor, el filtro muestra todos los elementos con ese valor. Después, la perspectiva puede mostrar más elementos que el número establecido.",
|
|
263
|
-
"attributesDropdown.
|
|
264
|
-
"attributesDropdown.itemsFiltered.tooltip": "Los elementos se han filtrado por: <strong>{filters}</strong>",
|
|
265
|
+
"attributesDropdown.itemsFiltered.tooltip": "Los valores se filtran por: <strong>{filters}</strong>",
|
|
265
266
|
"attributesDropdown.itemsFiltered": "Los elementos se han filtrado",
|
|
266
|
-
"attributesDropdown.noData": "Este atributo no tiene
|
|
267
|
+
"attributesDropdown.noData": "Este atributo no tiene valores.",
|
|
268
|
+
"attributesDropdown.noResultsMatch": "Ningún resultado coincide.",
|
|
269
|
+
"attributesDropdown.allItemsFiltered": "Todos los valores se han filtrado.",
|
|
270
|
+
"attributesDropdown.configuration": "Configuración",
|
|
271
|
+
"attributesDropdown.removeTooltip": "Quitar del panel",
|
|
272
|
+
"attributesDropdown.display_as": "Mostrar como: {title}",
|
|
267
273
|
"shareDialog.share.grantee.title": "Compartir con usuarios y grupos",
|
|
268
274
|
"shareDialog.share.grantee.share": "Compartir",
|
|
269
275
|
"shareDialog.share.grantee.list.title": "Compartido con",
|
|
@@ -293,7 +299,6 @@
|
|
|
293
299
|
"sorting.by": "por",
|
|
294
300
|
"sorting.sum.of.all.measure": "Total",
|
|
295
301
|
"sorting.default.tooltip": "Use el orden definido en el atributo.",
|
|
296
|
-
"attributeFilterDropdown.emptyValue": "valor vacío",
|
|
297
302
|
"embedInsightDialog.actions.close": "Cerrar",
|
|
298
303
|
"embedInsightDialog.actions.copyCode": "Copiar código",
|
|
299
304
|
"embedInsightDialog.code.language.codeAs": "Codificar como",
|
|
@@ -313,5 +318,18 @@
|
|
|
313
318
|
"embedInsightDialog.complete.list.props.message": "Lista completa de las propiedades de incrustación",
|
|
314
319
|
"error.overlay.login": "Iniciar sesión",
|
|
315
320
|
"error.overlay.title": "Se ha cerrado la sesión",
|
|
316
|
-
"error.overlay.text": "Iníciela de nuevo para continuar su trabajo."
|
|
321
|
+
"error.overlay.text": "Iníciela de nuevo para continuar su trabajo.",
|
|
322
|
+
"stylingPicker.title.basic": "Predeterminado",
|
|
323
|
+
"stylingPicker.title.custom": "Personalizado",
|
|
324
|
+
"stylingPicker.title.create": "Crear",
|
|
325
|
+
"stylingEditor.dialog.name": "Nombre",
|
|
326
|
+
"stylingEditor.dialog.name.required": "No se puede guardar. Especifique un nombre.",
|
|
327
|
+
"stylingEditor.dialog.definition": "Definición",
|
|
328
|
+
"stylingEditor.dialog.definition.required": "No se puede guardar. Especifique una definición.",
|
|
329
|
+
"stylingEditor.dialog.definition.invalid": "No se puede guardar. La definición no es un objeto JSON válido.",
|
|
330
|
+
"stylingEditor.dialog.examples": "Plantillas",
|
|
331
|
+
"stylingEditor.dialog.example.paste": "Pegar",
|
|
332
|
+
"stylingPicker.item.edit": "Editar",
|
|
333
|
+
"stylingPicker.item.delete": "Eliminar",
|
|
334
|
+
"stylingPicker.item.delete.tooltip": "El elemento aplicado no se puede eliminar."
|
|
317
335
|
}
|