@gooddata/sdk-ui 8.12.0-alpha.9 → 8.12.0-alpha.92

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.
Files changed (52) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +3 -0
  3. package/dist/base/headerMatching/MappingHeader.d.ts +21 -1
  4. package/dist/base/headerMatching/MappingHeader.d.ts.map +1 -1
  5. package/dist/base/headerMatching/MappingHeader.js +36 -1
  6. package/dist/base/headerMatching/MappingHeader.js.map +1 -1
  7. package/dist/base/helpers/logging.d.ts.map +1 -1
  8. package/dist/base/helpers/logging.js +1 -2
  9. package/dist/base/helpers/logging.js.map +1 -1
  10. package/dist/base/index.d.ts +1 -1
  11. package/dist/base/index.d.ts.map +1 -1
  12. package/dist/base/index.js +4 -1
  13. package/dist/base/index.js.map +1 -1
  14. package/dist/base/localization/bundles/de-DE.json +7 -3
  15. package/dist/base/localization/bundles/en-US.json +35 -0
  16. package/dist/base/localization/bundles/es-ES.json +6 -2
  17. package/dist/base/localization/bundles/fr-FR.json +6 -2
  18. package/dist/base/localization/bundles/ja-JP.json +11 -7
  19. package/dist/base/localization/bundles/nl-NL.json +7 -3
  20. package/dist/base/localization/bundles/pt-BR.json +6 -2
  21. package/dist/base/localization/bundles/pt-PT.json +6 -2
  22. package/dist/base/localization/bundles/ru-RU.json +6 -2
  23. package/dist/base/localization/bundles/zh-Hans.json +6 -2
  24. package/dist/execution/Execute.d.ts.map +1 -1
  25. package/dist/execution/Execute.js +1 -0
  26. package/dist/execution/Execute.js.map +1 -1
  27. package/dist/sdk-ui.d.ts +24 -0
  28. package/esm/base/headerMatching/MappingHeader.d.ts +21 -1
  29. package/esm/base/headerMatching/MappingHeader.d.ts.map +1 -1
  30. package/esm/base/headerMatching/MappingHeader.js +32 -0
  31. package/esm/base/headerMatching/MappingHeader.js.map +1 -1
  32. package/esm/base/helpers/logging.d.ts.map +1 -1
  33. package/esm/base/helpers/logging.js +1 -2
  34. package/esm/base/helpers/logging.js.map +1 -1
  35. package/esm/base/index.d.ts +1 -1
  36. package/esm/base/index.d.ts.map +1 -1
  37. package/esm/base/index.js +1 -1
  38. package/esm/base/index.js.map +1 -1
  39. package/esm/base/localization/bundles/de-DE.json +7 -3
  40. package/esm/base/localization/bundles/en-US.json +35 -0
  41. package/esm/base/localization/bundles/es-ES.json +6 -2
  42. package/esm/base/localization/bundles/fr-FR.json +6 -2
  43. package/esm/base/localization/bundles/ja-JP.json +11 -7
  44. package/esm/base/localization/bundles/nl-NL.json +7 -3
  45. package/esm/base/localization/bundles/pt-BR.json +6 -2
  46. package/esm/base/localization/bundles/pt-PT.json +6 -2
  47. package/esm/base/localization/bundles/ru-RU.json +6 -2
  48. package/esm/base/localization/bundles/zh-Hans.json +6 -2
  49. package/esm/execution/Execute.d.ts.map +1 -1
  50. package/esm/execution/Execute.js +1 -0
  51. package/esm/execution/Execute.js.map +1 -1
  52. package/package.json +13 -12
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2020-2021 GoodData Corporation
1
+ Copyright (c) 2020-2022 GoodData Corporation
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
4
 
package/README.md CHANGED
@@ -4,6 +4,9 @@
4
4
  [![npm monthly downloads](https://img.shields.io/npm/dm/@gooddata/sdk-ui)](https://npmcharts.com/compare/@gooddata/sdk-ui?minimal=true) 
5
5
  ![typescript](https://img.shields.io/badge/typescript-first-blue?logo=typescript)
6
6
 
7
+ This package is a part of the [GoodData.UI SDK](https://sdk.gooddata.com/gooddata-ui/docs/about_gooddataui.html).
8
+ To learn more, check [the source monorepo](https://github.com/gooddata/gooddata-ui-sdk).
9
+
7
10
  This package provides base functionality useful for building [React visualizations](https://sdk.gooddata.com/gooddata-ui/docs/create_new_visualization.html) on top of GoodData.
8
11
 
9
12
  The functionality includes functions for getting data from the [Analytical Backend](https://www.npmjs.com/package/@gooddata/sdk-backend-spi), components and React hooks that serve as building blocks for custom visualizations, visualization definition placeholders, support for drilling, and so on.
@@ -1,4 +1,4 @@
1
- import { IMeasureDescriptor, IAttributeDescriptor, IResultAttributeHeader, ITotalDescriptor } from "@gooddata/sdk-model";
1
+ import { IMeasureDescriptor, IAttributeDescriptor, IResultAttributeHeader, ITotalDescriptor, IResultAttributeHeaderItem } from "@gooddata/sdk-model";
2
2
  /**
3
3
  * @privateRemarks
4
4
  * TODO: SDK8: remove this, replace with something more meaningful
@@ -10,6 +10,10 @@ export declare type IMappingHeader = IAttributeDescriptor | IResultAttributeHead
10
10
  * @internal
11
11
  */
12
12
  export declare function hasMappingHeaderLocalIdentifier(header: IMappingHeader): boolean;
13
+ /**
14
+ * @internal
15
+ */
16
+ export declare function hasMappingHeaderFormattedName(header: IMappingHeader): boolean;
13
17
  /**
14
18
  * @internal
15
19
  */
@@ -18,6 +22,22 @@ export declare function getMappingHeaderLocalIdentifier(header: IMappingHeader):
18
22
  * @internal
19
23
  */
20
24
  export declare function getMappingHeaderName(header: IMappingHeader): string | undefined;
25
+ /**
26
+ * Get formatted name of provided mapping header.
27
+ *
28
+ * Formatted name has higher priority than name when displaying in visualisations.
29
+ *
30
+ * @internal
31
+ */
32
+ export declare function getMappingHeaderFormattedName(header: IMappingHeader): string | undefined;
33
+ /**
34
+ * Get formatted name of provided attribute header item.
35
+ *
36
+ * Formatted name has higher priority than name when displaying in visualisations.
37
+ *
38
+ * @internal
39
+ */
40
+ export declare function getAttributeHeaderItemName(attributeHeaderItem: IResultAttributeHeaderItem | undefined): string | undefined;
21
41
  /**
22
42
  * @internal
23
43
  */
@@ -1 +1 @@
1
- {"version":3,"file":"MappingHeader.d.ts","sourceRoot":"","sources":["../../../src/base/headerMatching/MappingHeader.ts"],"names":[],"mappings":"AACA,OAAO,EACH,kBAAkB,EAClB,oBAAoB,EACpB,sBAAsB,EACtB,gBAAgB,EAInB,MAAM,qBAAqB,CAAC;AAE7B;;;;;GAKG;AACH,oBAAY,cAAc,GACpB,oBAAoB,GACpB,sBAAsB,GACtB,kBAAkB,GAClB,gBAAgB,CAAC;AAMvB;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAE/E;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CAQ9E;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAQ/E;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAOrF;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAQ9E"}
1
+ {"version":3,"file":"MappingHeader.d.ts","sourceRoot":"","sources":["../../../src/base/headerMatching/MappingHeader.ts"],"names":[],"mappings":"AACA,OAAO,EACH,kBAAkB,EAClB,oBAAoB,EACpB,sBAAsB,EACtB,gBAAgB,EAIhB,0BAA0B,EAC7B,MAAM,qBAAqB,CAAC;AAE7B;;;;;GAKG;AACH,oBAAY,cAAc,GACpB,oBAAoB,GACpB,sBAAsB,GACtB,kBAAkB,GAClB,gBAAgB,CAAC;AAMvB;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAE/E;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAE7E;AAED;;GAEG;AACH,wBAAgB,+BAA+B,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CAQ9E;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAQ/E;AAED;;;;;;GAMG;AACH,wBAAgB,6BAA6B,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAMxF;AAED;;;;;;GAMG;AACH,wBAAgB,0BAA0B,CAAC,mBAAmB,EAAE,0BAA0B,GAAG,SAAS,sBAErG;AAED;;GAEG;AACH,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAOrF;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,GAAG,SAAS,CAQ9E"}
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getMappingHeaderUri = exports.getMappingHeaderIdentifier = exports.getMappingHeaderName = exports.getMappingHeaderLocalIdentifier = exports.hasMappingHeaderLocalIdentifier = void 0;
3
+ exports.getMappingHeaderUri = exports.getMappingHeaderIdentifier = exports.getAttributeHeaderItemName = exports.getMappingHeaderFormattedName = exports.getMappingHeaderName = exports.getMappingHeaderLocalIdentifier = exports.hasMappingHeaderFormattedName = exports.hasMappingHeaderLocalIdentifier = void 0;
4
4
  // (C) 2007-2022 GoodData Corporation
5
5
  var sdk_model_1 = require("@gooddata/sdk-model");
6
6
  //
@@ -13,6 +13,13 @@ function hasMappingHeaderLocalIdentifier(header) {
13
13
  return sdk_model_1.isAttributeDescriptor(header) || sdk_model_1.isMeasureDescriptor(header);
14
14
  }
15
15
  exports.hasMappingHeaderLocalIdentifier = hasMappingHeaderLocalIdentifier;
16
+ /**
17
+ * @internal
18
+ */
19
+ function hasMappingHeaderFormattedName(header) {
20
+ return sdk_model_1.isResultAttributeHeader(header) && !!header.attributeHeaderItem.formattedName;
21
+ }
22
+ exports.hasMappingHeaderFormattedName = hasMappingHeaderFormattedName;
16
23
  /**
17
24
  * @internal
18
25
  */
@@ -41,6 +48,34 @@ function getMappingHeaderName(header) {
41
48
  }
42
49
  }
43
50
  exports.getMappingHeaderName = getMappingHeaderName;
51
+ /**
52
+ * Get formatted name of provided mapping header.
53
+ *
54
+ * Formatted name has higher priority than name when displaying in visualisations.
55
+ *
56
+ * @internal
57
+ */
58
+ function getMappingHeaderFormattedName(header) {
59
+ if (sdk_model_1.isResultAttributeHeader(header)) {
60
+ return getAttributeHeaderItemName(header.attributeHeaderItem);
61
+ }
62
+ else {
63
+ return getMappingHeaderName(header);
64
+ }
65
+ }
66
+ exports.getMappingHeaderFormattedName = getMappingHeaderFormattedName;
67
+ /**
68
+ * Get formatted name of provided attribute header item.
69
+ *
70
+ * Formatted name has higher priority than name when displaying in visualisations.
71
+ *
72
+ * @internal
73
+ */
74
+ function getAttributeHeaderItemName(attributeHeaderItem) {
75
+ var _a;
76
+ return (_a = attributeHeaderItem === null || attributeHeaderItem === void 0 ? void 0 : attributeHeaderItem.formattedName) !== null && _a !== void 0 ? _a : attributeHeaderItem === null || attributeHeaderItem === void 0 ? void 0 : attributeHeaderItem.name;
77
+ }
78
+ exports.getAttributeHeaderItemName = getAttributeHeaderItemName;
44
79
  /**
45
80
  * @internal
46
81
  */
@@ -1 +1 @@
1
- {"version":3,"file":"MappingHeader.js","sourceRoot":"","sources":["../../../src/base/headerMatching/MappingHeader.ts"],"names":[],"mappings":";;;AAAA,qCAAqC;AACrC,iDAQ6B;AAc7B,EAAE;AACF,EAAE;AACF,EAAE;AAEF;;GAEG;AACH,SAAgB,+BAA+B,CAAC,MAAsB;IAClE,OAAO,iCAAqB,CAAC,MAAM,CAAC,IAAI,+BAAmB,CAAC,MAAM,CAAC,CAAC;AACxE,CAAC;AAFD,0EAEC;AAED;;GAEG;AACH,SAAgB,+BAA+B,CAAC,MAAsB;IAClE,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,eAAe,CAAC;KACjD;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,eAAe,CAAC;KACnD;IAED,MAAM,IAAI,KAAK,CAAC,8BAA2B,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,8BAA0B,CAAC,CAAC;AAC9F,CAAC;AARD,0EAQC;AAED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,MAAsB;IACvD,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC;KAC7C;SAAM,IAAI,mCAAuB,CAAC,MAAM,CAAC,EAAE;QACxC,OAAO,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC;KAC1C;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,IAAI,CAAC;KACxC;AACL,CAAC;AARD,oDAQC;AAED;;GAEG;AACH,SAAgB,0BAA0B,CAAC,MAAsB;IAC7D,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,UAAU,CAAC;KAC5C;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,UAAU,CAAC;KAC9C;IACD,MAAM,IAAI,KAAK,CAAC,8BAA2B,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,yBAAqB,CAAC,CAAC;AACzF,CAAC;AAPD,gEAOC;AAED;;GAEG;AACH,SAAgB,mBAAmB,CAAC,MAAsB;IACtD,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC;KACrC;SAAM,IAAI,mCAAuB,CAAC,MAAM,CAAC,EAAE;QACxC,OAAO,MAAM,CAAC,mBAAmB,CAAC,GAAG,CAAC;KACzC;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,GAAG,CAAC;KACvC;AACL,CAAC;AARD,kDAQC"}
1
+ {"version":3,"file":"MappingHeader.js","sourceRoot":"","sources":["../../../src/base/headerMatching/MappingHeader.ts"],"names":[],"mappings":";;;AAAA,qCAAqC;AACrC,iDAS6B;AAc7B,EAAE;AACF,EAAE;AACF,EAAE;AAEF;;GAEG;AACH,SAAgB,+BAA+B,CAAC,MAAsB;IAClE,OAAO,iCAAqB,CAAC,MAAM,CAAC,IAAI,+BAAmB,CAAC,MAAM,CAAC,CAAC;AACxE,CAAC;AAFD,0EAEC;AAED;;GAEG;AACH,SAAgB,6BAA6B,CAAC,MAAsB;IAChE,OAAO,mCAAuB,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,mBAAmB,CAAC,aAAa,CAAC;AACzF,CAAC;AAFD,sEAEC;AAED;;GAEG;AACH,SAAgB,+BAA+B,CAAC,MAAsB;IAClE,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,eAAe,CAAC;KACjD;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,eAAe,CAAC;KACnD;IAED,MAAM,IAAI,KAAK,CAAC,8BAA2B,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,8BAA0B,CAAC,CAAC;AAC9F,CAAC;AARD,0EAQC;AAED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,MAAsB;IACvD,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,IAAI,CAAC;KAC7C;SAAM,IAAI,mCAAuB,CAAC,MAAM,CAAC,EAAE;QACxC,OAAO,MAAM,CAAC,mBAAmB,CAAC,IAAI,CAAC;KAC1C;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,IAAI,CAAC;KACxC;AACL,CAAC;AARD,oDAQC;AAED;;;;;;GAMG;AACH,SAAgB,6BAA6B,CAAC,MAAsB;IAChE,IAAI,mCAAuB,CAAC,MAAM,CAAC,EAAE;QACjC,OAAO,0BAA0B,CAAC,MAAM,CAAC,mBAAmB,CAAC,CAAC;KACjE;SAAM;QACH,OAAO,oBAAoB,CAAC,MAAM,CAAC,CAAC;KACvC;AACL,CAAC;AAND,sEAMC;AAED;;;;;;GAMG;AACH,SAAgB,0BAA0B,CAAC,mBAA2D;;IAClG,aAAO,mBAAmB,aAAnB,mBAAmB,uBAAnB,mBAAmB,CAAE,aAAa,mCAAI,mBAAmB,aAAnB,mBAAmB,uBAAnB,mBAAmB,CAAE,IAAI,CAAC;AAC3E,CAAC;AAFD,gEAEC;AAED;;GAEG;AACH,SAAgB,0BAA0B,CAAC,MAAsB;IAC7D,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,UAAU,CAAC;KAC5C;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,UAAU,CAAC;KAC9C;IACD,MAAM,IAAI,KAAK,CAAC,8BAA2B,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,yBAAqB,CAAC,CAAC;AACzF,CAAC;AAPD,gEAOC;AAED;;GAEG;AACH,SAAgB,mBAAmB,CAAC,MAAsB;IACtD,IAAI,iCAAqB,CAAC,MAAM,CAAC,EAAE;QAC/B,OAAO,MAAM,CAAC,eAAe,CAAC,GAAG,CAAC;KACrC;SAAM,IAAI,mCAAuB,CAAC,MAAM,CAAC,EAAE;QACxC,OAAO,MAAM,CAAC,mBAAmB,CAAC,GAAG,CAAC;KACzC;SAAM,IAAI,+BAAmB,CAAC,MAAM,CAAC,EAAE;QACpC,OAAO,MAAM,CAAC,iBAAiB,CAAC,GAAG,CAAC;KACvC;AACL,CAAC;AARD,kDAQC"}
@@ -1 +1 @@
1
- {"version":3,"file":"logging.d.ts","sourceRoot":"","sources":["../../../src/base/helpers/logging.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,wBAAgB,0BAA0B,IAAI,IAAI,CAKjD"}
1
+ {"version":3,"file":"logging.d.ts","sourceRoot":"","sources":["../../../src/base/helpers/logging.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,wBAAgB,0BAA0B,IAAI,IAAI,CAIjD"}
@@ -1,12 +1,11 @@
1
1
  "use strict";
2
- // (C) 2007-2020 GoodData Corporation
2
+ // (C) 2007-2022 GoodData Corporation
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.visualizationIsBetaWarning = void 0;
5
5
  /**
6
6
  * @internal
7
7
  */
8
8
  function visualizationIsBetaWarning() {
9
- // eslint-disable-next-line no-console
10
9
  console.warn("This chart is not production-ready and may not provide the full functionality. Use it at your own risk.");
11
10
  }
12
11
  exports.visualizationIsBetaWarning = visualizationIsBetaWarning;
@@ -1 +1 @@
1
- {"version":3,"file":"logging.js","sourceRoot":"","sources":["../../../src/base/helpers/logging.ts"],"names":[],"mappings":";AAAA,qCAAqC;;;AAErC;;GAEG;AACH,SAAgB,0BAA0B;IACtC,sCAAsC;IACtC,OAAO,CAAC,IAAI,CACR,yGAAyG,CAC5G,CAAC;AACN,CAAC;AALD,gEAKC"}
1
+ {"version":3,"file":"logging.js","sourceRoot":"","sources":["../../../src/base/helpers/logging.ts"],"names":[],"mappings":";AAAA,qCAAqC;;;AAErC;;GAEG;AACH,SAAgB,0BAA0B;IACtC,OAAO,CAAC,IAAI,CACR,yGAAyG,CAC5G,CAAC;AACN,CAAC;AAJD,gEAIC"}
@@ -31,7 +31,7 @@ export { messagesMap, ITranslations } from "./localization/messagesMap";
31
31
  export { TranslationsProvider, IntlTranslationsProvider, ITranslationsComponentProps, ITranslationsProviderOwnProps, ITranslationsProviderProps, } from "./localization/TranslationsProvider";
32
32
  export { createIntlMock, withIntl, resolveLocale, emptyHeaderTitleFromIntl } from "./localization/intlUtils";
33
33
  export { ITranslationsCustomizationContextProviderProps, TranslationsCustomizationContextProvider, withTranslationsCustomization, ITranslationsCustomizationProviderProps, TranslationsCustomizationProvider, pickCorrectInsightWording, pickCorrectMetricWording, pickCorrectWording, removeAllInsightToReportTranslations, removeAllWordingTranslationsWithSpecialSuffix, } from "./localization/TranslationsCustomizationProvider";
34
- export { IMappingHeader, getMappingHeaderLocalIdentifier, hasMappingHeaderLocalIdentifier, getMappingHeaderUri, getMappingHeaderName, getMappingHeaderIdentifier, } from "./headerMatching/MappingHeader";
34
+ export { IMappingHeader, getMappingHeaderLocalIdentifier, hasMappingHeaderLocalIdentifier, getMappingHeaderUri, getMappingHeaderName, getMappingHeaderIdentifier, getAttributeHeaderItemName, getMappingHeaderFormattedName, hasMappingHeaderFormattedName, } from "./headerMatching/MappingHeader";
35
35
  export { IHeaderPredicate, IHeaderPredicateContext, isHeaderPredicate, } from "./headerMatching/HeaderPredicate";
36
36
  export { HeaderPredicates, attributeItemNameMatch, composedFromIdentifier, composedFromUri, identifierMatch, localIdentifierMatch, uriMatch, objRefMatch, objMatch, } from "./headerMatching/HeaderPredicateFactory";
37
37
  export { ArithmeticMeasureTitleFactory } from "./measureTitles/ArithmeticMeasureTitleFactory";
@@ -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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"}
@@ -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.emptyHeaderTitleFromIntl = 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;
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.hasMappingHeaderFormattedName = exports.getMappingHeaderFormattedName = exports.getAttributeHeaderItemName = 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.emptyHeaderTitleFromIntl = 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
  */
@@ -150,6 +150,9 @@ Object.defineProperty(exports, "hasMappingHeaderLocalIdentifier", { enumerable:
150
150
  Object.defineProperty(exports, "getMappingHeaderUri", { enumerable: true, get: function () { return MappingHeader_1.getMappingHeaderUri; } });
151
151
  Object.defineProperty(exports, "getMappingHeaderName", { enumerable: true, get: function () { return MappingHeader_1.getMappingHeaderName; } });
152
152
  Object.defineProperty(exports, "getMappingHeaderIdentifier", { enumerable: true, get: function () { return MappingHeader_1.getMappingHeaderIdentifier; } });
153
+ Object.defineProperty(exports, "getAttributeHeaderItemName", { enumerable: true, get: function () { return MappingHeader_1.getAttributeHeaderItemName; } });
154
+ Object.defineProperty(exports, "getMappingHeaderFormattedName", { enumerable: true, get: function () { return MappingHeader_1.getMappingHeaderFormattedName; } });
155
+ Object.defineProperty(exports, "hasMappingHeaderFormattedName", { enumerable: true, get: function () { return MappingHeader_1.hasMappingHeaderFormattedName; } });
153
156
  var HeaderPredicate_1 = require("./headerMatching/HeaderPredicate");
154
157
  Object.defineProperty(exports, "isHeaderPredicate", { enumerable: true, get: function () { return HeaderPredicate_1.isHeaderPredicate; } });
155
158
  var HeaderPredicateFactory_1 = require("./headerMatching/HeaderPredicateFactory");
@@ -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":"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"}
@@ -6,7 +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
+ "gs.list.search.placeholder": "Sucht…",
10
10
  "gs.list.notAvailableAbbreviation": "nicht angegeben",
11
11
  "gs.list.searchResults": "Ergebnisse suchen",
12
12
  "gs.visualizationsList.loading": "Lädt…",
@@ -267,14 +267,17 @@
267
267
  "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.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Werte werden gefiltert nach: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Elemente wurden gefiltert",
270
+ "attributeFilterDropdown.emptyValue": "leerer Wert",
270
271
  "attributesDropdown.noData": "Dieses Attribut hat keinen Wert.",
271
272
  "attributesDropdown.noResultsMatch": "Keine passenden Ergebnisse.",
272
273
  "attributesDropdown.allItemsFiltered": "Alle Werte wurden herausgefiltert.",
273
274
  "attributesDropdown.configuration": "Konfiguration",
274
275
  "attributesDropdown.removeTooltip": "Vom Dashboard entfernen",
275
276
  "attributesDropdown.display_as": "Anzeigen als: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Schließen Sie fehlende (null) und leere (\"\") Werte ein.",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> ist bereits durch <strong>{childTitle}</strong> gefiltert, filtern Sie direkt oder durch andere Filter.",
277
279
  "attributesDropdown.attributeNameWithData": "mit Daten von",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> kann nicht nach <strong>{parentTitle}</strong> gefiltert werden. Es besteht keine Verbindung zwischen den Filterattributen und dem Datenmodell.",
278
281
  "shareDialog.share.grantee.title": "Mit Benutzern und Gruppen teilen",
279
282
  "shareDialog.share.grantee.share": "Teilen",
280
283
  "shareDialog.share.grantee.list.title": "Geteilt mit",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "nach",
305
308
  "sorting.sum.of.all.measure": "Gesamt",
306
309
  "sorting.default.tooltip": "Verwenden Sie die Sortierung, die im Attribut definiert ist.",
307
- "attributeFilterDropdown.emptyValue": "leerer Wert",
308
310
  "embedInsightDialog.actions.close": "Schließen",
309
311
  "embedInsightDialog.actions.copyCode": "Code kopieren",
310
312
  "embedInsightDialog.code.language.codeAs": "Code als",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Einfügen",
338
340
  "stylingPicker.item.edit": "Bearbeiten",
339
341
  "stylingPicker.item.delete": "Löschen",
340
- "stylingPicker.item.delete.tooltip": "Das ausgewählte Element kann nicht gelöscht werden."
342
+ "stylingPicker.item.delete.tooltip": "Das ausgewählte Element kann nicht gelöscht werden.",
343
+ "descriptionPanel.button.more": "Mehr anzeigen",
344
+ "descriptionPanel.button.less": "Weniger anzeigen"
341
345
  }
@@ -1449,6 +1449,11 @@
1449
1449
  "comment": "Will be used in sentence between two nouns. For instance 'Filter by AttributeX with data of MetricY'",
1450
1450
  "limit": 0
1451
1451
  },
1452
+ "attributesDropdown.noConnectionMessage": {
1453
+ "value": "<strong>{childTitle}</strong> cannot be filtered by <strong>{parentTitle}</strong>. There is no connection between the filter attributes in the data model.",
1454
+ "comment": "Do not translate HTML markup enclosed in <> and placeholders enclosed in {}.",
1455
+ "limit": 0
1456
+ },
1452
1457
  "shareDialog.share.grantee.title": {
1453
1458
  "value": "Share with users and groups",
1454
1459
  "comment": "Title of dialog used for sharing of private dashboard with other users or user groups.",
@@ -1539,6 +1544,26 @@
1539
1544
  "comment": "Text of the tooltip shown above button that removes user or group from unsaved selection of newly added grantees that will gain access right to the dashboard after changes in share dialog are saved.",
1540
1545
  "limit": 0
1541
1546
  },
1547
+ "shareDialog.share.granular.grantee.permission.edit": {
1548
+ "value": "Can edit & share",
1549
+ "comment": "",
1550
+ "limit": 0
1551
+ },
1552
+ "shareDialog.share.granular.grantee.permission.share": {
1553
+ "value": "Can view & share",
1554
+ "comment": "",
1555
+ "limit": 0
1556
+ },
1557
+ "shareDialog.share.granular.grantee.permission.view": {
1558
+ "value": "Can view",
1559
+ "comment": "",
1560
+ "limit": 0
1561
+ },
1562
+ "shareDialog.share.granular.grantee.permission.remove": {
1563
+ "value": "Remove",
1564
+ "comment": "",
1565
+ "limit": 0
1566
+ },
1542
1567
  "sorting.dropdown.header|insight": {
1543
1568
  "value": "Sort insight",
1544
1569
  "comment": "The title of sorting dropdown where you can choose which sort options you want to use. For example sort by attribute A1.",
@@ -1794,5 +1819,15 @@
1794
1819
  "value": "Applied item cannot be deleted.",
1795
1820
  "comment": "",
1796
1821
  "limit": 0
1822
+ },
1823
+ "descriptionPanel.button.more": {
1824
+ "value": "Show more",
1825
+ "comment": "The button title which will display more description text",
1826
+ "limit": 0
1827
+ },
1828
+ "descriptionPanel.button.less": {
1829
+ "value": "Show less",
1830
+ "comment": "The button title which will display less description text.",
1831
+ "limit": 0
1797
1832
  }
1798
1833
  }
@@ -267,14 +267,17 @@
267
267
  "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.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Los valores se filtran por: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Los elementos se han filtrado",
270
+ "attributeFilterDropdown.emptyValue": "valor vacío",
270
271
  "attributesDropdown.noData": "Este atributo no tiene valores.",
271
272
  "attributesDropdown.noResultsMatch": "Ningún resultado coincide.",
272
273
  "attributesDropdown.allItemsFiltered": "Todos los valores se han filtrado.",
273
274
  "attributesDropdown.configuration": "Configuración",
274
275
  "attributesDropdown.removeTooltip": "Quitar del panel",
275
276
  "attributesDropdown.display_as": "Mostrar como: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Incluir valores que faltan (null) y vacíos (\"\").",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> ya se ha filtrado por el filtro <strong>{childTitle}</strong> directamente o mediante otros filtros.",
277
279
  "attributesDropdown.attributeNameWithData": "con datos de",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> no se puede filtrar por <strong>{parentTitle}</strong>. No hay ninguna conexión entre los atributos de filtro en el modelo de datos.",
278
281
  "shareDialog.share.grantee.title": "Compartir con usuarios y grupos",
279
282
  "shareDialog.share.grantee.share": "Compartir",
280
283
  "shareDialog.share.grantee.list.title": "Compartido con",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "por",
305
308
  "sorting.sum.of.all.measure": "Total",
306
309
  "sorting.default.tooltip": "Use el orden definido en el atributo.",
307
- "attributeFilterDropdown.emptyValue": "valor vacío",
308
310
  "embedInsightDialog.actions.close": "Cerrar",
309
311
  "embedInsightDialog.actions.copyCode": "Copiar código",
310
312
  "embedInsightDialog.code.language.codeAs": "Codificar como",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Pegar",
338
340
  "stylingPicker.item.edit": "Editar",
339
341
  "stylingPicker.item.delete": "Eliminar",
340
- "stylingPicker.item.delete.tooltip": "El elemento aplicado no se puede eliminar."
342
+ "stylingPicker.item.delete.tooltip": "El elemento aplicado no se puede eliminar.",
343
+ "descriptionPanel.button.more": "Mostrar más",
344
+ "descriptionPanel.button.less": "Mostrar menos"
341
345
  }
@@ -267,14 +267,17 @@
267
267
  "rankingFilter.valueTooltip": "Si plusieurs éléments ont la même valeur, le filtre affiche tous les éléments avec cette valeur. La perception peut alors montrer plus d'éléments que le nombre défini.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Les valeurs sont filtrées par : <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Les éléments sont filtrés.",
270
+ "attributeFilterDropdown.emptyValue": "valeur vide",
270
271
  "attributesDropdown.noData": "Cet attribut n'a aucune valeur.",
271
272
  "attributesDropdown.noResultsMatch": "Aucun résultat.",
272
273
  "attributesDropdown.allItemsFiltered": "Toutes les valeurs sont filtrées.",
273
274
  "attributesDropdown.configuration": "Configuration",
274
275
  "attributesDropdown.removeTooltip": "Retirer du tableau de bord",
275
276
  "attributesDropdown.display_as": "Afficher en tant que : {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Inclure les valeurs manquantes (null) et vides (\"\").",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> est déjà filtré par le filtre <strong>{childTitle}</strong>, directement ou via d'autres filtres.",
277
279
  "attributesDropdown.attributeNameWithData": "avec les données de",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> ne peut pas être filtré par <strong>{parentTitle}</strong>. Il n'existe aucune connexion entre les attributs du filtre dans le modèle de données.",
278
281
  "shareDialog.share.grantee.title": "Partager avec des utilisateurs et groupes",
279
282
  "shareDialog.share.grantee.share": "Partage",
280
283
  "shareDialog.share.grantee.list.title": "Partagé avec",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "par",
305
308
  "sorting.sum.of.all.measure": "Total",
306
309
  "sorting.default.tooltip": "Utilisez l'ordre défini dans l'attribut.",
307
- "attributeFilterDropdown.emptyValue": "valeur vide",
308
310
  "embedInsightDialog.actions.close": "Fermer",
309
311
  "embedInsightDialog.actions.copyCode": "Copier le code",
310
312
  "embedInsightDialog.code.language.codeAs": "Coder avec",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Coller",
338
340
  "stylingPicker.item.edit": "Modifier",
339
341
  "stylingPicker.item.delete": "Supprimer",
340
- "stylingPicker.item.delete.tooltip": "L'élément appliqué ne peut pas être supprimé."
342
+ "stylingPicker.item.delete.tooltip": "L'élément appliqué ne peut pas être supprimé.",
343
+ "descriptionPanel.button.more": "Montrer plus",
344
+ "descriptionPanel.button.less": "Montrer moins"
341
345
  }
@@ -179,8 +179,8 @@
179
179
  "filters.granularity.years": "年次",
180
180
  "filters.from": "開始時点",
181
181
  "filters.to": "終了時点",
182
- "filters.floatingRange": "関連時間",
183
- "filters.floatingRange.tooltip": "日付の範囲は今日を基準に変化し、正確な時間に調整されます",
182
+ "filters.floatingRange": "相対期間",
183
+ "filters.floatingRange.tooltip": "日付の範囲は今日を基準とした相対的な期間に調整されます。",
184
184
  "filters.floatingRange.noMatch": "一致するものがありません",
185
185
  "filters.floatingRange.tooBig": "最大値: {limit}",
186
186
  "filters.floatingRange.option.minute.offset.history": "{n, plural, one {一分前} other {# 分前}}",
@@ -205,7 +205,7 @@
205
205
  "filters.floatingRange.option.year.offset.today": "今年",
206
206
  "filters.floatingRange.option.year.offset.future": "{n, plural, one {来年} other {# 年先}}",
207
207
  "filters.allTime.title": "全期間",
208
- "filters.allTime.excludeCurrentPeriod": "期限なしを除外",
208
+ "filters.allTime.excludeCurrentPeriod": "該当期間を除外",
209
209
  "filters.minute.title": "分間",
210
210
  "filters.minute.excludeCurrentPeriod": "現時点を除外",
211
211
  "filters.hour.title": "時間",
@@ -217,7 +217,7 @@
217
217
  "filters.month.title": "月",
218
218
  "filters.month.excludeCurrentPeriod": "今月を除外",
219
219
  "filters.quarter.title": "四半期",
220
- "filters.quarter.excludeCurrentPeriod": "現四半期を除外",
220
+ "filters.quarter.excludeCurrentPeriod": "今四半期を除外",
221
221
  "filters.year.title": "年",
222
222
  "filters.year.excludeCurrentPeriod": "今年を除外",
223
223
  "filters.excludeCurrentPeriod.unavailable": "選択したデータ範囲ではご利用いただけません",
@@ -267,14 +267,17 @@
267
267
  "rankingFilter.valueTooltip": "複数の項目に同じ値が設定されている場合は、この値を持つすべての項目がフィルターで表示されます。 インサイトには、設定数よりも多くのアイテムが表示される場合があります。",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "次の条件で値をフィルターします: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "アイテムはフィルター済み",
270
+ "attributeFilterDropdown.emptyValue": "空の値",
270
271
  "attributesDropdown.noData": "このアトリビュートには値がありません。",
271
272
  "attributesDropdown.noResultsMatch": "一致する結果がありません。",
272
273
  "attributesDropdown.allItemsFiltered": "すべての値がフィルターされています。",
273
274
  "attributesDropdown.configuration": "設定",
274
275
  "attributesDropdown.removeTooltip": "ダッシュボードから削除",
275
276
  "attributesDropdown.display_as": "次のように表示: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "欠損(NULL)および空の(\"\")値を含めます。",
276
278
  "attributesDropdown.filterConfiguredMessage": "直接フィルターか、他のフィルターで<strong>{parentTitle}</strong> すでにフィルター済み <strong>{childTitle}</strong>。",
277
279
  "attributesDropdown.attributeNameWithData": "データの",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> フィルターが無効 <strong>{parentTitle}</strong>。フィルターアトリビュートとデータモデルが無関係です。",
278
281
  "shareDialog.share.grantee.title": "ユーザやグループと共有",
279
282
  "shareDialog.share.grantee.share": "共有する",
280
283
  "shareDialog.share.grantee.list.title": "シェア相手",
@@ -301,10 +304,9 @@
301
304
  "sorting.type.default": "既定",
302
305
  "sorting.type.numerical.asc": "最小から最大の順",
303
306
  "sorting.type.numerical.desc": "最大から最小の順",
304
- "sorting.by": "",
307
+ "sorting.by": "基準",
305
308
  "sorting.sum.of.all.measure": "合計",
306
309
  "sorting.default.tooltip": "属性で定義された順序を使用します。",
307
- "attributeFilterDropdown.emptyValue": "空の値",
308
310
  "embedInsightDialog.actions.close": "閉じる",
309
311
  "embedInsightDialog.actions.copyCode": "コードをコピー",
310
312
  "embedInsightDialog.code.language.codeAs": "コード",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "ペースト",
338
340
  "stylingPicker.item.edit": "編集",
339
341
  "stylingPicker.item.delete": "削除",
340
- "stylingPicker.item.delete.tooltip": "該当のアイテムは削除できません。"
342
+ "stylingPicker.item.delete.tooltip": "該当のアイテムは削除できません。",
343
+ "descriptionPanel.button.more": "もっと表示",
344
+ "descriptionPanel.button.less": "簡易表示"
341
345
  }
@@ -267,14 +267,17 @@
267
267
  "rankingFilter.valueTooltip": "Als meerdere items dezelfde waarde hebben, toont het filter alle items met deze waarde. Het inzicht geeft dan mogelijk meer items weer dan het ingestelde aantal.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Waarden worden gefilterd op: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Items zijn gefilterd",
270
- "attributesDropdown.noData": "Dit attribuut bevat geen enkele waarde.",
270
+ "attributeFilterDropdown.emptyValue": "lege waarde",
271
+ "attributesDropdown.noData": "",
271
272
  "attributesDropdown.noResultsMatch": "Geen resultaten.",
272
273
  "attributesDropdown.allItemsFiltered": "Alle waarden zijn gefilterd.",
273
274
  "attributesDropdown.configuration": "Configuratie",
274
275
  "attributesDropdown.removeTooltip": "Verwijderen van dashboard",
275
276
  "attributesDropdown.display_as": "Weergeven als: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Ontbrekende (null) en lege (\"\") waarden.",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> is al gefilterd op <strong>{childTitle}</strong>, rechtstreeks of via andere filters.",
277
279
  "attributesDropdown.attributeNameWithData": "met gegevens van",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> kan niet worden gefilterd op <strong>{parentTitle}</strong>. Er is geen verbinding tussen de filterattributen in het gegevensmodel.",
278
281
  "shareDialog.share.grantee.title": "Delen met gebruikers en groepen",
279
282
  "shareDialog.share.grantee.share": "Deel",
280
283
  "shareDialog.share.grantee.list.title": "Gedeeld met",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "met",
305
308
  "sorting.sum.of.all.measure": "Totaal",
306
309
  "sorting.default.tooltip": "Gebruik de volgorde zoals gedefinieerd in het attribuut.",
307
- "attributeFilterDropdown.emptyValue": "lege waarde",
308
310
  "embedInsightDialog.actions.close": "Sluiten",
309
311
  "embedInsightDialog.actions.copyCode": "Code kopiëren",
310
312
  "embedInsightDialog.code.language.codeAs": "Code als",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Plakken",
338
340
  "stylingPicker.item.edit": "Bewerken",
339
341
  "stylingPicker.item.delete": "Verwijderen",
340
- "stylingPicker.item.delete.tooltip": "Toegepast item kan niet worden verwijderd"
342
+ "stylingPicker.item.delete.tooltip": "Toegepast item kan niet worden verwijderd",
343
+ "descriptionPanel.button.more": "Meer weergeven",
344
+ "descriptionPanel.button.less": "Minder weergeven"
341
345
  }
@@ -267,14 +267,17 @@
267
267
  "rankingFilter.valueTooltip": "Se vários itens tiverem o mesmo valor, o filtro mostrará todos os itens com esse valor. O insight poderá então exibir mais itens do que o número definido.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Os valores são filtrados por: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Os itens estão filtrados",
270
+ "attributeFilterDropdown.emptyValue": "valor vazio",
270
271
  "attributesDropdown.noData": "O atributo não tem valores.",
271
272
  "attributesDropdown.noResultsMatch": "Nenhum resultado correspondente.",
272
273
  "attributesDropdown.allItemsFiltered": "Todos os valores foram filtrados.",
273
274
  "attributesDropdown.configuration": "Configuração",
274
275
  "attributesDropdown.removeTooltip": "Remover do dashboard",
275
276
  "attributesDropdown.display_as": "Exibir como: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Incluir valores (\"\") (null) e vazios ausentes.",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> já foi filtrado por <strong>{childTitle}</strong> diretamente ou por meio de outros filtros.",
277
279
  "attributesDropdown.attributeNameWithData": "com dados de",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> não pode ser filtrado por <strong>{parentTitle}</strong>. Não há conexão entre os atributos do filtro e o modelo de dados.",
278
281
  "shareDialog.share.grantee.title": "Compartilhar com usuários e grupos",
279
282
  "shareDialog.share.grantee.share": "Compartilhar",
280
283
  "shareDialog.share.grantee.list.title": "Compartilhado com",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "por",
305
308
  "sorting.sum.of.all.measure": "Total",
306
309
  "sorting.default.tooltip": "Use a ordem definida no atributo.",
307
- "attributeFilterDropdown.emptyValue": "valor vazio",
308
310
  "embedInsightDialog.actions.close": "Fechar",
309
311
  "embedInsightDialog.actions.copyCode": "Copiar código",
310
312
  "embedInsightDialog.code.language.codeAs": "Codificar em",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Colar",
338
340
  "stylingPicker.item.edit": "Editar",
339
341
  "stylingPicker.item.delete": "Excluir",
340
- "stylingPicker.item.delete.tooltip": "Não é possível excluir o item aplicado."
342
+ "stylingPicker.item.delete.tooltip": "Não é possível excluir o item aplicado.",
343
+ "descriptionPanel.button.more": "Exibir mais",
344
+ "descriptionPanel.button.less": "Exibir menos"
341
345
  }
@@ -267,14 +267,17 @@
267
267
  "rankingFilter.valueTooltip": "Se vários itens tiverem o mesmo valor, o filtro apresenta todos os itens com este valor. O insight poderá então apresentar mais itens do que o número definido.",
268
268
  "attributesDropdown.itemsFiltered.tooltip": "Os valores são filtrados por: <strong>{filters}</strong>",
269
269
  "attributesDropdown.itemsFiltered": "Há itens filtrados",
270
+ "attributeFilterDropdown.emptyValue": "valor vazio",
270
271
  "attributesDropdown.noData": "Este atributo não possui valores.",
271
272
  "attributesDropdown.noResultsMatch": "Não há resultados correspondentes.",
272
273
  "attributesDropdown.allItemsFiltered": "Todos os valores foram filtrados.",
273
274
  "attributesDropdown.configuration": "Configuração",
274
275
  "attributesDropdown.removeTooltip": "Remover do dashboard",
275
276
  "attributesDropdown.display_as": "Apresentar como: {title}",
277
+ "attributesDropdown.empty.item.tooltip": "Incluir valores em falta (null) e vazios (\"\").",
276
278
  "attributesDropdown.filterConfiguredMessage": "<strong>{parentTitle}</strong> já se encontra filtrado pelo filtro <strong>{childTitle}</strong>, de forma direta ou através de outros filtros.",
277
279
  "attributesDropdown.attributeNameWithData": "com dados de",
280
+ "attributesDropdown.noConnectionMessage": "<strong>{childTitle}</strong> não pode ser filtrado por <strong>{parentTitle}</strong>. Não há ligação entre os atributos de filtro no modelo de dados.",
278
281
  "shareDialog.share.grantee.title": "Partilhar com utilizadores e grupos",
279
282
  "shareDialog.share.grantee.share": "Partilhar",
280
283
  "shareDialog.share.grantee.list.title": "Partilhado com",
@@ -304,7 +307,6 @@
304
307
  "sorting.by": "por",
305
308
  "sorting.sum.of.all.measure": "Total",
306
309
  "sorting.default.tooltip": "Utilizar a ordem definida no atributo.",
307
- "attributeFilterDropdown.emptyValue": "valor vazio",
308
310
  "embedInsightDialog.actions.close": "Fechar",
309
311
  "embedInsightDialog.actions.copyCode": "Copiar código",
310
312
  "embedInsightDialog.code.language.codeAs": "Codificar como",
@@ -337,5 +339,7 @@
337
339
  "stylingEditor.dialog.example.paste": "Colar",
338
340
  "stylingPicker.item.edit": "Editar",
339
341
  "stylingPicker.item.delete": "Eliminar",
340
- "stylingPicker.item.delete.tooltip": "Não é possível eliminar o item aplicado."
342
+ "stylingPicker.item.delete.tooltip": "Não é possível eliminar o item aplicado.",
343
+ "descriptionPanel.button.more": "Mostrar mais",
344
+ "descriptionPanel.button.less": "Mostrar menos"
341
345
  }