@k-int/stripes-kint-components 2.8.1 → 3.0.0

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 (328) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/es/index.js +54 -12
  3. package/es/lib/ActionList/ActionList.js +11 -5
  4. package/es/lib/ActionList/ActionListFieldArray.js +147 -77
  5. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.js +43 -31
  6. package/es/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +17 -14
  7. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +67 -47
  8. package/es/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +17 -24
  9. package/es/lib/CustomProperties/Config/CustomPropertyForm.js +91 -70
  10. package/es/lib/CustomProperties/Config/CustomPropertyForm.test.js +53 -36
  11. package/es/lib/CustomProperties/Config/CustomPropertyView.js +50 -31
  12. package/es/lib/CustomProperties/Config/CustomPropertyView.test.js +13 -14
  13. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +6 -0
  14. package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +8 -12
  15. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +22 -24
  16. package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +9 -12
  17. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +62 -13
  18. package/es/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +12 -13
  19. package/es/lib/CustomProperties/Edit/CustomPropertyField.js +91 -44
  20. package/es/lib/CustomProperties/Edit/CustomPropertyField.test.js +80 -73
  21. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +31 -32
  22. package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +26 -24
  23. package/es/lib/CustomProperties/Edit/testResources.js +73 -908
  24. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +21 -29
  25. package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +12 -10
  26. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +38 -39
  27. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +28 -13
  28. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +29 -44
  29. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +6 -6
  30. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +16 -10
  31. package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +12 -12
  32. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +20 -11
  33. package/es/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +4 -3
  34. package/es/lib/CustomProperties/Filter/testResources.js +37 -233
  35. package/es/lib/CustomProperties/Filter/useOperators.js +69 -27
  36. package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +3 -2
  37. package/es/lib/CustomProperties/Filter/useValueProps.js +7 -2
  38. package/es/lib/CustomProperties/View/CustomPropertiesView.js +6 -0
  39. package/es/lib/CustomProperties/View/CustomPropertiesView.test.js +4 -3
  40. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +13 -19
  41. package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +4 -10
  42. package/es/lib/CustomProperties/View/CustomPropertyCard.js +34 -51
  43. package/es/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +38 -28
  44. package/es/lib/EditableRefdataList/EditableRefdataList.js +44 -32
  45. package/es/lib/EditableSettingsList/EditableSettingsList.js +11 -1
  46. package/es/lib/EditableSettingsList/EditableSettingsListFieldArray.js +10 -0
  47. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.js +19 -11
  48. package/es/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +9 -8
  49. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.js +21 -9
  50. package/es/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +1 -0
  51. package/es/lib/EditableSettingsList/SettingField/SettingField.js +83 -16
  52. package/es/lib/EditableSettingsList/SettingField/SettingField.test.js +138 -65
  53. package/es/lib/FormModal/FormModal.js +14 -9
  54. package/es/lib/FormattedKintMessage/FormattedKintMessage.js +91 -0
  55. package/es/lib/FormattedKintMessage/index.js +15 -0
  56. package/es/lib/IconSelect/IconSelect.js +18 -12
  57. package/es/lib/NoResultsMessage/NoResultsMessage.js +13 -2
  58. package/es/lib/RichSelect/RichSelect.js +13 -34
  59. package/es/lib/SASQLookupComponent/SASQLookupComponent.js +16 -5
  60. package/es/lib/SASQLookupComponent/TableBody/TableBody.js +11 -1
  61. package/es/lib/SettingPage/SettingPage.js +12 -13
  62. package/es/lib/SettingPage/SettingPagePane.js +12 -20
  63. package/es/lib/hooks/__mocks__/index.js +46 -0
  64. package/es/lib/hooks/index.js +24 -8
  65. package/es/lib/hooks/settingsHooks/useSettings.js +22 -17
  66. package/es/lib/hooks/useIntlKey.js +34 -0
  67. package/es/lib/hooks/useIntlKeyStore.js +84 -0
  68. package/es/lib/hooks/useKintIntl.js +93 -0
  69. package/es/lib/utils/index.js +48 -4
  70. package/es/lib/utils/parseErrorResponse.js +91 -0
  71. package/es/lib/utils/validators.js +76 -59
  72. package/jest.config.js +4 -1
  73. package/junit.xml +157 -656
  74. package/package.json +54 -33
  75. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionList.js.html +56 -8
  76. package/src/artifacts/coverage-jest/lcov-report/ActionList/ActionListFieldArray.js.html +394 -64
  77. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.html +10 -10
  78. package/src/artifacts/coverage-jest/lcov-report/ActionList/index.js.html +1 -1
  79. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesLookup.js.html +187 -52
  80. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertiesSettings.js.html +372 -87
  81. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyForm.js.html +293 -74
  82. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/CustomPropertyView.js.html +126 -54
  83. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.html +45 -60
  84. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Config/index.js.html +1 -1
  85. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEdit.js.html +23 -5
  86. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesEditCtx.js.html +59 -47
  87. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertiesListField.js.html +259 -97
  88. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyField.js.html +399 -105
  89. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/CustomPropertyFormCard.js.html +41 -68
  90. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.html +57 -57
  91. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/index.js.html +1 -1
  92. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Edit/testResources.js.html +67 -688
  93. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilter.js.html +92 -53
  94. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterField.js.html +103 -64
  95. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js.html +54 -63
  96. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesFilterForm.js.html +49 -16
  97. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/CustomPropertiesRule.js.html +69 -18
  98. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.html +89 -89
  99. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/index.js.html +1 -1
  100. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/testResources.js.html +33 -786
  101. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useOperators.js.html +46 -46
  102. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useParseActiveFilterStrings.js.html +45 -36
  103. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/Filter/useValueProps.js.html +43 -28
  104. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesView.js.html +20 -2
  105. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertiesViewCtx.js.html +50 -41
  106. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/CustomPropertyCard.js.html +54 -75
  107. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.html +24 -24
  108. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/index.js.html +1 -1
  109. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/View/testResources.js.html +1 -1
  110. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.html +1 -1
  111. package/src/artifacts/coverage-jest/lcov-report/CustomProperties/index.js.html +1 -1
  112. package/src/artifacts/coverage-jest/lcov-report/{hooks/useAvailableCustomProperties.js.html → CycleButton/CycleButton.js.html} +62 -50
  113. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.html +131 -0
  114. package/src/artifacts/coverage-jest/lcov-report/CycleButton/index.js.html +88 -0
  115. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/EditableRefdataCategoryList.js.html +664 -0
  116. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.html +131 -0
  117. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataCategoryList/index.js.html +88 -0
  118. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/EditableRefdataList.js.html +264 -39
  119. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.html +9 -9
  120. package/src/artifacts/coverage-jest/lcov-report/EditableRefdataList/index.js.html +1 -1
  121. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsList.js.html +41 -14
  122. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/EditableSettingsListFieldArray.js.html +45 -6
  123. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/EditSettingValue.js.html +47 -11
  124. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/RenderSettingValue.js.html +65 -14
  125. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/SettingField.js.html +154 -31
  126. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.html +26 -26
  127. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/SettingField/index.js.html +1 -1
  128. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.html +18 -18
  129. package/src/artifacts/coverage-jest/lcov-report/EditableSettingsList/index.js.html +1 -1
  130. package/src/artifacts/coverage-jest/lcov-report/FormModal/FormModal.js.html +35 -17
  131. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.html +15 -15
  132. package/src/artifacts/coverage-jest/lcov-report/FormModal/index.js.html +1 -1
  133. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/FormattedKintMessage.js.html +247 -0
  134. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.html +131 -0
  135. package/src/artifacts/coverage-jest/lcov-report/FormattedKintMessage/index.js.html +88 -0
  136. package/src/artifacts/coverage-jest/lcov-report/{CustomProperties/Config/CustomPropertiesView.js.html → IconSelect/IconSelect.js.html} +158 -257
  137. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.html +131 -0
  138. package/src/artifacts/coverage-jest/lcov-report/IconSelect/index.js.html +88 -0
  139. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/NoResultsMessage.js.html +48 -6
  140. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.html +7 -7
  141. package/src/artifacts/coverage-jest/lcov-report/NoResultsMessage/index.js.html +1 -1
  142. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/QueryTypedown.js.html +1 -1
  143. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.html +1 -1
  144. package/src/artifacts/coverage-jest/lcov-report/QueryTypedown/index.js.html +1 -1
  145. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/RefdataButtons.js.html +3 -3
  146. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.html +1 -1
  147. package/src/artifacts/coverage-jest/lcov-report/RefdataButtons/index.js.html +1 -1
  148. package/src/artifacts/coverage-jest/lcov-report/{CustomProperties/Config/testResources.js.html → RichSelect/RichSelect.js.html} +256 -334
  149. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.html +146 -0
  150. package/src/artifacts/coverage-jest/lcov-report/RichSelect/index.js.html +91 -0
  151. package/src/artifacts/coverage-jest/lcov-report/RichSelect/useSelectedOption.js.html +127 -0
  152. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/SASQLookupComponent.js.html +52 -7
  153. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/TableBody.js.html +31 -4
  154. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.html +3 -3
  155. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/TableBody/index.js.html +1 -1
  156. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.html +7 -7
  157. package/src/artifacts/coverage-jest/lcov-report/SASQLookupComponent/index.js.html +1 -1
  158. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/SASQRoute.js.html +1 -1
  159. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.html +1 -1
  160. package/src/artifacts/coverage-jest/lcov-report/SASQRoute/index.js.html +1 -1
  161. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/SASQViewComponent.js.html +1 -1
  162. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.html +1 -1
  163. package/src/artifacts/coverage-jest/lcov-report/SASQViewComponent/index.js.html +1 -1
  164. package/src/artifacts/coverage-jest/lcov-report/SearchField/SearchField.js.html +1 -1
  165. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.html +1 -1
  166. package/src/artifacts/coverage-jest/lcov-report/SearchField/index.js.html +1 -1
  167. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPage.js.html +24 -27
  168. package/src/artifacts/coverage-jest/lcov-report/SettingPage/SettingPagePane.js.html +47 -17
  169. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.html +22 -22
  170. package/src/artifacts/coverage-jest/lcov-report/SettingPage/index.js.html +1 -1
  171. package/src/artifacts/coverage-jest/lcov-report/Typedown/Typedown.js.html +1 -1
  172. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.html +1 -1
  173. package/src/artifacts/coverage-jest/lcov-report/Typedown/index.js.html +1 -1
  174. package/src/artifacts/coverage-jest/lcov-report/constants/customProperties.js.html +1 -1
  175. package/src/artifacts/coverage-jest/lcov-report/constants/eventCodes.js.html +1 -1
  176. package/src/artifacts/coverage-jest/lcov-report/constants/index.html +1 -1
  177. package/src/artifacts/coverage-jest/lcov-report/contexts/SettingsContext.js.html +2 -2
  178. package/src/artifacts/coverage-jest/lcov-report/contexts/index.html +1 -1
  179. package/src/artifacts/coverage-jest/lcov-report/contexts/index.js.html +1 -1
  180. package/src/artifacts/coverage-jest/lcov-report/favicon.png +0 -0
  181. package/src/artifacts/coverage-jest/lcov-report/hooks/index.html +142 -97
  182. package/src/artifacts/coverage-jest/lcov-report/hooks/index.js.html +13 -4
  183. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.html +35 -20
  184. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/index.js.html +5 -2
  185. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useAppSettings.js.html +7 -7
  186. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettingSection.js.html +7 -7
  187. package/src/artifacts/coverage-jest/lcov-report/hooks/settingsHooks/useSettings.js.html +61 -22
  188. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.html +1 -1
  189. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/index.js.html +1 -1
  190. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedown.js.html +1 -1
  191. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownData.js.html +1 -1
  192. package/src/artifacts/coverage-jest/lcov-report/hooks/typedownHooks/useTypedownToggle.js.html +1 -1
  193. package/src/artifacts/coverage-jest/lcov-report/hooks/useActiveElement.js.html +7 -7
  194. package/src/artifacts/coverage-jest/lcov-report/hooks/useCustomProperties.js.html +19 -22
  195. package/src/artifacts/coverage-jest/lcov-report/hooks/useHelperApp.js.html +7 -7
  196. package/src/artifacts/coverage-jest/lcov-report/hooks/useIntlKey.js.html +151 -0
  197. package/src/artifacts/coverage-jest/lcov-report/{utils/renderHelpText.js.html → hooks/useIntlKeyStore.js.html} +71 -38
  198. package/src/artifacts/coverage-jest/lcov-report/hooks/useInvalidateRefdata.js.html +7 -7
  199. package/src/artifacts/coverage-jest/lcov-report/hooks/useKintIntl.js.html +238 -0
  200. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtFieldArray.js.html +7 -7
  201. package/src/artifacts/coverage-jest/lcov-report/hooks/useKiwtSASQuery.js.html +9 -9
  202. package/src/artifacts/coverage-jest/lcov-report/hooks/useLocalStorageState.js.html +7 -7
  203. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateCustomProperties.js.html +23 -11
  204. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataCategory.js.html +274 -0
  205. package/src/artifacts/coverage-jest/lcov-report/hooks/useMutateRefdataValue.js.html +19 -10
  206. package/src/artifacts/coverage-jest/lcov-report/hooks/useQIndex.js.html +7 -7
  207. package/src/artifacts/coverage-jest/lcov-report/hooks/useRefdata.js.html +9 -9
  208. package/src/artifacts/coverage-jest/lcov-report/hooks/useTemplates.js.html +7 -7
  209. package/src/artifacts/coverage-jest/lcov-report/index.html +205 -130
  210. package/src/artifacts/coverage-jest/lcov-report/sort-arrow-sprite.png +0 -0
  211. package/src/artifacts/coverage-jest/lcov-report/utils/buildUrl.js.html +1 -1
  212. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQuery.js.html +2 -2
  213. package/src/artifacts/coverage-jest/lcov-report/utils/generateKiwtQueryParams.js.html +2 -2
  214. package/src/artifacts/coverage-jest/lcov-report/utils/groupCustomPropertiesByCtx.js.html +7 -7
  215. package/src/artifacts/coverage-jest/lcov-report/utils/highlightString.js.html +3 -3
  216. package/src/artifacts/coverage-jest/lcov-report/utils/index.html +34 -34
  217. package/src/artifacts/coverage-jest/lcov-report/utils/index.js.html +42 -3
  218. package/src/artifacts/coverage-jest/lcov-report/utils/matchString.js.html +2 -2
  219. package/src/artifacts/coverage-jest/lcov-report/utils/parseErrorResponse.js.html +139 -0
  220. package/src/artifacts/coverage-jest/lcov-report/utils/refdataOptions.js.html +5 -2
  221. package/src/artifacts/coverage-jest/lcov-report/utils/refdataQueryKey.js.html +2 -2
  222. package/src/artifacts/coverage-jest/lcov-report/utils/selectorSafe.js.html +2 -2
  223. package/src/artifacts/coverage-jest/lcov-report/utils/sortByLabel.js.html +2 -2
  224. package/src/artifacts/coverage-jest/lcov-report/utils/toCamelCase.js.html +2 -2
  225. package/src/artifacts/coverage-jest/lcov-report/utils/typedownQueryKey.js.html +2 -2
  226. package/src/artifacts/coverage-jest/lcov-report/utils/validators.js.html +128 -80
  227. package/src/artifacts/coverage-jest/lcov.info +2603 -2086
  228. package/src/index.js +12 -4
  229. package/src/lib/ActionList/ActionList.js +9 -3
  230. package/src/lib/ActionList/ActionListFieldArray.js +115 -37
  231. package/src/lib/ActionList/README.md +2 -1
  232. package/src/lib/CustomProperties/Config/CustomPropertiesLookup.js +60 -16
  233. package/src/lib/CustomProperties/Config/CustomPropertiesLookup.test.js +14 -4
  234. package/src/lib/CustomProperties/Config/CustomPropertiesSettings.js +109 -34
  235. package/src/lib/CustomProperties/Config/CustomPropertiesSettings.test.js +16 -9
  236. package/src/lib/CustomProperties/Config/CustomPropertyForm.js +131 -58
  237. package/src/lib/CustomProperties/Config/CustomPropertyForm.test.js +52 -33
  238. package/src/lib/CustomProperties/Config/CustomPropertyView.js +71 -47
  239. package/src/lib/CustomProperties/Config/CustomPropertyView.test.js +8 -6
  240. package/src/lib/CustomProperties/Config/README.md +33 -28
  241. package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.js +6 -0
  242. package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.test.js +7 -3
  243. package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +23 -19
  244. package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.test.js +5 -3
  245. package/src/lib/CustomProperties/Edit/CustomPropertiesListField.js +65 -11
  246. package/src/lib/CustomProperties/Edit/CustomPropertiesListField.test.js +10 -8
  247. package/src/lib/CustomProperties/Edit/CustomPropertyField.js +115 -21
  248. package/src/lib/CustomProperties/Edit/CustomPropertyField.test.js +59 -60
  249. package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.js +24 -33
  250. package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.test.js +20 -27
  251. package/src/lib/CustomProperties/Edit/testResources.js +46 -1047
  252. package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.js +22 -22
  253. package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.test.js +12 -8
  254. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +44 -31
  255. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.test.js +26 -13
  256. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +33 -36
  257. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.test.js +3 -3
  258. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +19 -8
  259. package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.test.js +9 -12
  260. package/src/lib/CustomProperties/Filter/CustomPropertiesRule.js +22 -5
  261. package/src/lib/CustomProperties/Filter/CustomPropertiesRule.test.js +3 -1
  262. package/src/lib/CustomProperties/Filter/testResources.js +14 -265
  263. package/src/lib/CustomProperties/Filter/useOperators.js +20 -20
  264. package/src/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +2 -2
  265. package/src/lib/CustomProperties/Filter/useValueProps.js +8 -3
  266. package/src/lib/CustomProperties/View/CustomPropertiesView.js +6 -0
  267. package/src/lib/CustomProperties/View/CustomPropertiesView.test.js +2 -1
  268. package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.js +15 -13
  269. package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.test.js +2 -5
  270. package/src/lib/CustomProperties/View/CustomPropertyCard.js +36 -43
  271. package/src/lib/EditableRefdataCategoryList/EditableRefdataCategoryList.js +47 -28
  272. package/src/lib/EditableRefdataList/EditableRefdataList.js +58 -33
  273. package/src/lib/EditableSettingsList/EditableSettingsList.js +10 -1
  274. package/src/lib/EditableSettingsList/EditableSettingsListFieldArray.js +14 -1
  275. package/src/lib/EditableSettingsList/SettingField/EditSettingValue.js +17 -5
  276. package/src/lib/EditableSettingsList/SettingField/EditSettingValue.test.js +9 -8
  277. package/src/lib/EditableSettingsList/SettingField/RenderSettingValue.js +24 -7
  278. package/src/lib/EditableSettingsList/SettingField/RenderSettingValue.test.js +1 -0
  279. package/src/lib/EditableSettingsList/SettingField/SettingField.js +57 -16
  280. package/src/lib/EditableSettingsList/SettingField/SettingField.test.js +14 -19
  281. package/src/lib/FormModal/FormModal.js +15 -9
  282. package/src/lib/FormattedKintMessage/FormattedKintMessage.js +54 -0
  283. package/src/lib/FormattedKintMessage/index.js +1 -0
  284. package/src/lib/IconSelect/IconSelect.js +17 -8
  285. package/src/lib/NoResultsMessage/NoResultsMessage.js +15 -1
  286. package/src/lib/RichSelect/RichSelect.js +16 -36
  287. package/src/lib/SASQLookupComponent/SASQLookupComponent.js +17 -2
  288. package/src/lib/SASQLookupComponent/TableBody/TableBody.js +10 -1
  289. package/src/lib/SettingPage/SettingPage.js +12 -13
  290. package/src/lib/SettingPage/SettingPagePane.js +16 -6
  291. package/src/lib/hooks/__mocks__/index.js +17 -0
  292. package/src/lib/hooks/index.js +3 -1
  293. package/src/lib/hooks/settingsHooks/useSettings.js +25 -12
  294. package/src/lib/hooks/useIntlKey.js +22 -0
  295. package/src/lib/hooks/useIntlKeyStore.js +38 -0
  296. package/src/lib/hooks/useKintIntl.js +51 -0
  297. package/src/lib/utils/index.js +14 -1
  298. package/src/lib/utils/parseErrorResponse.js +18 -0
  299. package/src/lib/utils/validators.js +57 -41
  300. package/styles/RichSelect.css +7 -4
  301. package/test/helpers/test-implementor-translations.json +80 -0
  302. package/test/helpers/translationsProperties.js +6 -1
  303. package/test/jest/customProperties.js +166 -0
  304. package/test/jest/helpers/KintHarness.js +1 -1
  305. package/test/jest/helpers/renderWithKintHarness.js +2 -1
  306. package/test/jest/index.js +8 -0
  307. package/test/jest/refdata.js +471 -0
  308. package/test/jest/resolver.js +29 -0
  309. package/translations/stripes-kint-components/ar.json +1 -122
  310. package/translations/stripes-kint-components/cs_CZ.json +1 -122
  311. package/translations/stripes-kint-components/de.json +1 -122
  312. package/translations/stripes-kint-components/en.json +1 -148
  313. package/translations/stripes-kint-components/es.json +1 -122
  314. package/translations/stripes-kint-components/hi_IN.json +1 -122
  315. package/translations/stripes-kint-components/hu.json +1 -122
  316. package/translations/stripes-kint-components/it_IT.json +1 -122
  317. package/translations/stripes-kint-components/ja.json +1 -122
  318. package/translations/stripes-kint-components/ko.json +1 -122
  319. package/translations/stripes-kint-components/pt_PT.json +1 -122
  320. package/translations/stripes-kint-components/ru.json +1 -122
  321. package/translations/stripes-kint-components/sv.json +1 -122
  322. package/translations/stripes-kint-components/zh_CN.json +1 -122
  323. package/es/lib/CustomProperties/Config/testResources.js +0 -198
  324. package/es/lib/hooks/useAvailableCustomProperties.js +0 -73
  325. package/es/lib/utils/renderHelpText.js +0 -80
  326. package/src/lib/CustomProperties/Config/testResources.js +0 -236
  327. package/src/lib/hooks/useAvailableCustomProperties.js +0 -40
  328. package/src/lib/utils/renderHelpText.js +0 -27
@@ -1,122 +1 @@
1
- {
2
- "AND": "Y",
3
- "OR": "O",
4
- "create": "Crear",
5
- "edit": "Editar",
6
- "save": "Guardar",
7
- "saveAndClose": "Guardar y cerrar",
8
- "cancel": "Cancelar",
9
- "delete": "Suprimir",
10
- "apply": "Aplicar",
11
- "new": "Nuevo",
12
- "notSet": "No está listo.",
13
- "errors.hasNonAlphaName": "El nombre sólo puede contener caracteres alfabéticos latinos (a-z) y caracteres numéricos no lideres.",
14
- "settings.noCurrentValue": "No valor actual",
15
- "settings.default": "por defecto",
16
- "settings.edit": "Editar",
17
- "settings.settingLoading": "Cargando",
18
- "settings.finishEditing": "Edición final",
19
- "settings.valueFor": "Valor para establecer {nombre}",
20
- "actionList.save": "Guardar",
21
- "actionList.cancel": "Cancelar",
22
- "actionList.create": "Crear",
23
- "actionList.actions": "Acciones",
24
- "editableRefdataList.deleteRefdataValue": "Suprimir el valor de referencia",
25
- "editableRefdataList.deleteRefdataValue.confirmMessage": "Se eliminará el título.",
26
- "editableRefdataList.deleteRefdataValue.errorMessage": "No se suprimió el texto. {error}",
27
- "editableRefdataList.label": "Label",
28
- "editableRefdataList.value": "Valor",
29
- "editableRefdataList.editAriaLabel": "Editar valor {label}",
30
- "editableRefdataList.deleteAriaLabel": "Suprimir el valor {label}",
31
- "editableRefdataCategoryList.refdataCategory": "Categoría",
32
- "editableRefdataCategoryList.noOfValues": "# of values",
33
- "editableRefdataCategoryList.refdataCategories": "Categorías",
34
- "editableRefdataCategoryList.deleteAriaLabel": "Suprimir el valor {label}",
35
- "editableRefdataCategoryList.deleteRefdataCategory": "Suprímase la categoría de refdatos",
36
- "editableRefdataCategoryList.deleteRefdataCategory.confirmMessage": "Se eliminará el título.",
37
- "editableRefdataCategoryList.deleteRefdataCategory.errorMessage": "No se suprimió el texto. {error}",
38
- "sasqLookupComponent.mainPane.found": "registros encontrados",
39
- "noResultsMessage.showFilters": "Mostrar filtros",
40
- "customProperties": "Propiedades personalizadas",
41
- "customProperties.all": "Todos",
42
- "customProperties.none": "Ninguno",
43
- "customProperties.label": "Label",
44
- "customProperties.primary": "Primaria",
45
- "customProperties.retired": "Retirada",
46
- "customProperties.ctx": "Contexto",
47
- "customProperties.ctx.addContext": "Agregar contexto {valor}",
48
- "customProperties.weight": "Peso del pedido",
49
- "customProperties.type": "Tipo",
50
- "customProperties.internalFalse": "Público",
51
- "customProperties.internalNote": "Nota interna",
52
- "customProperties.internalTrue": "Internos",
53
- "customProperties.publicNote": "Nota pública",
54
- "customProperties.name": "Nombre",
55
- "customProperties.description": "Descripción",
56
- "customProperties.category": "Categoría",
57
- "customProperties.defaultVisibility": "Visión predeterminada",
58
- "customProperties.noCtxFound": "No hay contexto encontrado",
59
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
60
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolean",
61
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Container",
62
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Decimal",
63
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
64
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Refdata",
65
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Definición de referencia",
66
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Texto",
67
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Fecha",
68
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyMultiRefdata": "Refdata (multi-select)",
69
- "customProperties.delete.confirmHeading": "Eliminar la propiedad personalizada",
70
- "customProperties.delete.confirmMessage": "Propiedad personalizada неритититинанихинанинанитинаниринанитиниентинанинининанитинанинаниенннияниянининиянаниниянининиянананияниянинининининиянининияниянанананиянининияннининиянияннннанинтиннинния {no {no {no {no {no {no {no {nombre} {no {noctarнинннннннннннинининнннининнининаннининнннинананининннннн",
71
- "customPropertiesSettings.deleteCustomProperty.errorMessage": "No se suprimió el texto. {error}",
72
- "customProperties.primaryProperties": "Propiedades primarias",
73
- "customProperties.optionalProperties": "Propiedades opcionales",
74
- "customProperties.addProperty": "Agregar propiedad",
75
- "customProperties.ctx.title": "Propiedades personalizadas ({ctx})",
76
- "customProperty.optionalPropertyHeader": "Propiedad {número}",
77
- "customProperty.remove": "Quitar la propiedad {número}",
78
- "customProperty.newModal": "Nueva propiedad personalizada",
79
- "customProperty.editModal": "Editar propiedad personalizada",
80
- "search": "Buscar",
81
- "yes": "Sí.",
82
- "no": "No",
83
- "errors.invalidNumber": "Ingrese un número válido para continuar",
84
- "errors.primaryRetired": "Una propiedad personalizada no puede ser tanto primaria como retirada",
85
- "errors.customPropertyNoteInvalidNumber": "Se debe introducir un número válido para guardar una nota",
86
- "errors.customPropertyInvalidNumber": "Ingrese un número válido para continuar",
87
- "errors.customPropertyNoteWithoutValue": "Se debe establecer un valor para guardar una nota",
88
- "errors.customPropertyValueNotInRange": "Ingrese un número entero en el rango {min} a {max} para continuar",
89
- "errors.customPropertyDecimalValueNotInRange": "Ingrese un número en el rango {min} a {max} para continuar",
90
- "errors.customPropertyMaxTwoDecimals": "Introduzca un número con un máximo de 2 decimales",
91
- "customProperty": "Bienes inmuebles",
92
- "customProperty.name": "Nombre",
93
- "customProperty.value": "Valor(s)",
94
- "customProperty.internalNote": "Nota interna",
95
- "customProperty.visibility": "Visibilidad",
96
- "customProperty.publicNote": "Nota pública",
97
- "customProperty.internalTrue": "Internos",
98
- "customProperty.internalFalse": "Público",
99
- "customProperty.filtersApplied": "{cuenta} filtros de propiedades personalizados aplicados",
100
- "customProperty.editCustomPropertyFilters": "Editar filtros de propiedad personalizados",
101
- "customProperty.filterBuilder": "Construcción de filtro de propiedad personalizada",
102
- "customProperty.filterIndex": "Filtro de propiedad personalizada {index}",
103
- "customProperty.removeFilter": "Eliminar filtro de propiedad personalizada {n}",
104
- "customProperty.removeRule": "Quitar la regla {número}",
105
- "customProperty.addFilter": "Agregar filtro de propiedad personalizado",
106
- "customProperty.retiredName": "RETIRED: {name}",
107
- "customProperty.notSet": "No está listo.",
108
- "operator.isSet": "Is set",
109
- "operator.isNotSet": "No está listo",
110
- "operator.equals": "Igualdad",
111
- "operator.doesNotEqual": "No es igual",
112
- "operator.isGreaterThanOrEqual": "Es mayor o igual a",
113
- "operator.isLessThanOrEqual": "Es menor o igual a",
114
- "operator.isOnOrAfter": "Está encendido o después",
115
- "operator.isOnOrBefore": "Está en o antes",
116
- "operator.is": "I",
117
- "operator.isNot": "No",
118
- "operator.contains": "Contains",
119
- "operator.doesNotContain": "No contiene",
120
- "iconSelect.notSet": "No está listo.",
121
- "richSelect.placeholder": "Seleccione una opción"
122
- }
1
+ {}
@@ -1,122 +1 @@
1
- {
2
- "AND": "और",
3
- "OR": "या",
4
- "create": "बनाना",
5
- "edit": "संपादित करें",
6
- "save": "सहेजें",
7
- "saveAndClose": "सहेजें और बंद करें",
8
- "cancel": "रद्द करना",
9
- "delete": "डिलीट",
10
- "apply": "आवेदन",
11
- "new": "नया",
12
- "notSet": "सेट नहीं",
13
- "errors.hasNonAlphaName": "नाम में केवल लैटिन वर्णमाला अक्षर (a-z) और गैर-अग्रणी संख्यात्मक वर्ण हो सकते हैं।",
14
- "settings.noCurrentValue": "वर्तमान मूल्य नहीं",
15
- "settings.default": "डिफ़ॉल्ट",
16
- "settings.edit": "संपादित करें",
17
- "settings.settingLoading": "लोड हो रहा है",
18
- "settings.finishEditing": "संपादन",
19
- "settings.valueFor": "मूल्य निर्धारण {name}",
20
- "actionList.save": "सहेजें",
21
- "actionList.cancel": "रद्द करना",
22
- "actionList.create": "बनाना",
23
- "actionList.actions": "कार्य",
24
- "editableRefdataList.deleteRefdataValue": "डिफ़ॉल्ट मान",
25
- "editableRefdataList.deleteRefdataValue.confirmMessage": "<strong>{name}</strong> को हटा दिया जाएगा।",
26
- "editableRefdataList.deleteRefdataValue.errorMessage": "<strong>Error: {label}</strong> को हटाया नहीं गया था। {error}",
27
- "editableRefdataList.label": "लेबल",
28
- "editableRefdataList.value": "मूल्य",
29
- "editableRefdataList.editAriaLabel": "Edit value {label}",
30
- "editableRefdataList.deleteAriaLabel": "Delete value {label}",
31
- "editableRefdataCategoryList.refdataCategory": "श्रेणी",
32
- "editableRefdataCategoryList.noOfValues": "मूल्य",
33
- "editableRefdataCategoryList.refdataCategories": "श्रेणियाँ",
34
- "editableRefdataCategoryList.deleteAriaLabel": "Delete value {label}",
35
- "editableRefdataCategoryList.deleteRefdataCategory": "हटाएँ refdata श्रेणी",
36
- "editableRefdataCategoryList.deleteRefdataCategory.confirmMessage": "<strong>{name}</strong> को हटा दिया जाएगा।",
37
- "editableRefdataCategoryList.deleteRefdataCategory.errorMessage": "<strong>Error: {label}</strong> को हटाया नहीं गया था। {error}",
38
- "sasqLookupComponent.mainPane.found": "{total} रिकॉर्ड मिला",
39
- "noResultsMessage.showFilters": "फिल्टर दिखाएँ",
40
- "customProperties": "कस्टम गुण",
41
- "customProperties.all": "सब",
42
- "customProperties.none": "कोई नहीं",
43
- "customProperties.label": "लेबल",
44
- "customProperties.primary": "प्राथमिक",
45
- "customProperties.retired": "सेवानिवृत्त",
46
- "customProperties.ctx": "संदर्भ",
47
- "customProperties.ctx.addContext": "A word that is a word of a word.",
48
- "customProperties.weight": "आदेश वजन",
49
- "customProperties.type": "प्रकार",
50
- "customProperties.internalFalse": "सार्वजनिक",
51
- "customProperties.internalNote": "आंतरिक नोट",
52
- "customProperties.internalTrue": "आंतरिक",
53
- "customProperties.publicNote": "सार्वजनिक नोट",
54
- "customProperties.name": "नाम",
55
- "customProperties.description": "विवरण",
56
- "customProperties.category": "श्रेणी",
57
- "customProperties.defaultVisibility": "डिफ़ॉल्ट दृश्यता",
58
- "customProperties.noCtxFound": "कोई मिलान संदर्भ नहीं मिला",
59
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "ब्लॉब",
60
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "बोओलेन",
61
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "कंटेनर",
62
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "दशमलव",
63
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
64
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Refdata",
65
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "रेफर्ड परिभाषा",
66
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "पाठ",
67
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "तारीख",
68
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyMultiRefdata": "रिफ़्टेट (multi-select)",
69
- "customProperties.delete.confirmHeading": "कस्टम संपत्ति को हटा दें",
70
- "customProperties.delete.confirmMessage": "कस्टम प्रॉपर्टी <strong>{name}</strong> <strong> को हटा दिया जाएगा</strong>.",
71
- "customPropertiesSettings.deleteCustomProperty.errorMessage": "<strong>Error: {label}</strong> को हटाया नहीं गया था। {error}",
72
- "customProperties.primaryProperties": "प्राथमिक गुण",
73
- "customProperties.optionalProperties": "वैकल्पिक गुण",
74
- "customProperties.addProperty": "संपत्ति जोड़ें",
75
- "customProperties.ctx.title": "कस्टम गुण ({ctx})",
76
- "customProperty.optionalPropertyHeader": "संपत्ति {number}",
77
- "customProperty.remove": "संपत्ति {number} निकालें",
78
- "customProperty.newModal": "नई कस्टम संपत्ति",
79
- "customProperty.editModal": "कस्टम संपत्ति संपादित करें",
80
- "search": "खोज",
81
- "yes": "हाँ",
82
- "no": "नहीं",
83
- "errors.invalidNumber": "जारी रखने के लिए कृपया मान्य नंबर दर्ज करें",
84
- "errors.primaryRetired": "एक कस्टम संपत्ति प्राथमिक और सेवानिवृत्त दोनों नहीं हो सकती है",
85
- "errors.customPropertyNoteInvalidNumber": "नोट को बचाने के लिए वैध संख्या दर्ज की जानी चाहिए",
86
- "errors.customPropertyInvalidNumber": "जारी रखने के लिए कृपया मान्य नंबर दर्ज करें",
87
- "errors.customPropertyNoteWithoutValue": "नोट को बचाने के लिए मूल्य निर्धारित किया जाना चाहिए",
88
- "errors.customPropertyValueNotInRange": "कृपया सीमा {min} में {max} में पूरी संख्या दर्ज करें",
89
- "errors.customPropertyDecimalValueNotInRange": "कृपया सीमा {min} में {max} में एक नंबर दर्ज करें",
90
- "errors.customPropertyMaxTwoDecimals": "कृपया अधिकतम 2 दशमलव स्थानों के साथ एक नंबर दर्ज करें",
91
- "customProperty": "कस्टम संपत्ति",
92
- "customProperty.name": "नाम",
93
- "customProperty.value": "मूल्य(s)",
94
- "customProperty.internalNote": "आंतरिक नोट",
95
- "customProperty.visibility": "दृश्यता",
96
- "customProperty.publicNote": "सार्वजनिक नोट",
97
- "customProperty.internalTrue": "आंतरिक",
98
- "customProperty.internalFalse": "सार्वजनिक",
99
- "customProperty.filtersApplied": "{count} कस्टम गुण फिल्टर लागू",
100
- "customProperty.editCustomPropertyFilters": "कस्टम प्रॉपर्टी फिल्टर",
101
- "customProperty.filterBuilder": "कस्टम संपत्ति फिल्टर निर्माता",
102
- "customProperty.filterIndex": "कस्टम प्रॉपर्टी फिल्टर {index}",
103
- "customProperty.removeFilter": "कस्टम संपत्ति फ़िल्टर {number} निकालें",
104
- "customProperty.removeRule": "नियम {number} निकालें",
105
- "customProperty.addFilter": "कस्टम संपत्ति फ़िल्टर जोड़ें",
106
- "customProperty.retiredName": "RETIRED: {name}",
107
- "customProperty.notSet": "सेट नहीं",
108
- "operator.isSet": "सेट",
109
- "operator.isNotSet": "निर्धारित नहीं है",
110
- "operator.equals": "समान",
111
- "operator.doesNotEqual": "बराबर नहीं",
112
- "operator.isGreaterThanOrEqual": "अधिक या बराबर है",
113
- "operator.isLessThanOrEqual": "कम से कम या बराबर है",
114
- "operator.isOnOrAfter": "या उसके बाद",
115
- "operator.isOnOrBefore": "पर या पहले",
116
- "operator.is": "क्या है",
117
- "operator.isNot": "नहीं",
118
- "operator.contains": "शामिल",
119
- "operator.doesNotContain": "शामिल नहीं है",
120
- "iconSelect.notSet": "सेट नहीं",
121
- "richSelect.placeholder": "विकल्प चुनिए"
122
- }
1
+ {}
@@ -1,122 +1 @@
1
- {
2
- "AND": "és",
3
- "OR": "Vagy",
4
- "create": "Teremtés",
5
- "edit": "Edit",
6
- "save": "Mentés",
7
- "saveAndClose": "Save & közel",
8
- "cancel": "Törlés",
9
- "delete": "Törlés",
10
- "apply": "Alkalmazás",
11
- "new": "Új",
12
- "notSet": "Nem",
13
- "errors.hasNonAlphaName": "A név csak latin alfabetikus karaktereket (a-z) és nem vezető numerikus karaktereket tartalmazhat.",
14
- "settings.noCurrentValue": "Nincs jelenlegi érték",
15
- "settings.default": "default",
16
- "settings.edit": "Edit",
17
- "settings.settingLoading": "Loading",
18
- "settings.finishEditing": "Finish szerkesztés",
19
- "settings.valueFor": "Érték a beállításhoz {name}",
20
- "actionList.save": "Mentés",
21
- "actionList.cancel": "Törlés",
22
- "actionList.create": "Teremtés",
23
- "actionList.actions": "Akciók",
24
- "editableRefdataList.deleteRefdataValue": "Törölje a refdata értéket",
25
- "editableRefdataList.deleteRefdataValue.confirmMessage": "<strong> {name/strong> törlésre kerül.",
26
- "editableRefdataList.deleteRefdataValue.errorMessage": "<strong>Error: {label/strong> nem törölték. {LS}",
27
- "editableRefdataList.label": "Címke",
28
- "editableRefdataList.value": "Érték",
29
- "editableRefdataList.editAriaLabel": "Edit érték {label}",
30
- "editableRefdataList.deleteAriaLabel": "Törlési érték {label}",
31
- "editableRefdataCategoryList.refdataCategory": "Kategória",
32
- "editableRefdataCategoryList.noOfValues": "# értékek",
33
- "editableRefdataCategoryList.refdataCategories": "Kategóriák",
34
- "editableRefdataCategoryList.deleteAriaLabel": "Törlési érték {label}",
35
- "editableRefdataCategoryList.deleteRefdataCategory": "Törölje a refdata kategóriát",
36
- "editableRefdataCategoryList.deleteRefdataCategory.confirmMessage": "<strong> {name/strong> törlésre kerül.",
37
- "editableRefdataCategoryList.deleteRefdataCategory.errorMessage": "<strong>Error: {label/strong> nem törölték. {LS}",
38
- "sasqLookupComponent.mainPane.found": "{teljes} rekordok",
39
- "noResultsMessage.showFilters": "Mutasd meg a szűrőket",
40
- "customProperties": "Vám tulajdonságok",
41
- "customProperties.all": "Minden",
42
- "customProperties.none": "Nem",
43
- "customProperties.label": "Címke",
44
- "customProperties.primary": "Elsődleges",
45
- "customProperties.retired": "Nyugodt",
46
- "customProperties.ctx": "Kontextus",
47
- "customProperties.ctx.addContext": "Add hozzá a kontextust {érték}",
48
- "customProperties.weight": "Order súly",
49
- "customProperties.type": "Típus",
50
- "customProperties.internalFalse": "nyilvános",
51
- "customProperties.internalNote": "Belső megjegyzés",
52
- "customProperties.internalTrue": "Belső",
53
- "customProperties.publicNote": "nyilvános megjegyzés",
54
- "customProperties.name": "név",
55
- "customProperties.description": "Leírás",
56
- "customProperties.category": "Kategória",
57
- "customProperties.defaultVisibility": "Alapértelmezett láthatóság",
58
- "customProperties.noCtxFound": "Nincs megfelelő kontextus talált",
59
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
60
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolean",
61
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Konténer",
62
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Decimal",
63
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integráció",
64
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Refdata",
65
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Refdata definíció",
66
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Szöveg",
67
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Dátum",
68
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyMultiRefdata": "Refdata (multi-select)",
69
- "customProperties.delete.confirmHeading": "Törölje az egyéni tulajdont",
70
- "customProperties.delete.confirmMessage": "Az egyedi tulajdon <strong>{name/strong> lesz <strong>deleted</strong>.",
71
- "customPropertiesSettings.deleteCustomProperty.errorMessage": "<strong>Error: {label/strong> nem törölték. {LS}",
72
- "customProperties.primaryProperties": "Elsődleges tulajdonságok",
73
- "customProperties.optionalProperties": "Opcionális tulajdonságok",
74
- "customProperties.addProperty": "Adjon hozzá ingatlant",
75
- "customProperties.ctx.title": "egyedi tulajdonságok ({ctx})",
76
- "customProperty.optionalPropertyHeader": "Tulajdonság {szám}",
77
- "customProperty.remove": "Távolítsa el az ingatlant {szám}",
78
- "customProperty.newModal": "Új egyéni tulajdon",
79
- "customProperty.editModal": "Edit egyedi tulajdon",
80
- "search": "Keresés",
81
- "yes": "Igen,",
82
- "no": "Nem",
83
- "errors.invalidNumber": "Kérjük, adja meg az érvényes számot, hogy továbbra is",
84
- "errors.primaryRetired": "Egy egyedi tulajdon nem lehet elsődleges és nyugdíjas",
85
- "errors.customPropertyNoteInvalidNumber": "Egy érvényes számot kell beírni annak érdekében, hogy megmentsen egy jegyzetet",
86
- "errors.customPropertyInvalidNumber": "Kérjük, adja meg az érvényes számot, hogy továbbra is",
87
- "errors.customPropertyNoteWithoutValue": "Egy értéket kell meghatározni annak érdekében, hogy megmentsen egy jegyzetet",
88
- "errors.customPropertyValueNotInRange": "Kérjük, lépjen be egy teljes számot a tartományban {min}-ig, hogy folytassa",
89
- "errors.customPropertyDecimalValueNotInRange": "Kérjük, adja meg a számot a tartományban {min}-t, hogy folytassa",
90
- "errors.customPropertyMaxTwoDecimals": "Kérjük, adja meg a maximum 2 decimál helyet",
91
- "customProperty": "Termékek",
92
- "customProperty.name": "név",
93
- "customProperty.value": "Érték(ek)",
94
- "customProperty.internalNote": "Belső megjegyzés",
95
- "customProperty.visibility": "Láthatóság",
96
- "customProperty.publicNote": "nyilvános megjegyzés",
97
- "customProperty.internalTrue": "Belső",
98
- "customProperty.internalFalse": "nyilvános",
99
- "customProperty.filtersApplied": "{count} egyedi tulajdonságszűrők alkalmazása",
100
- "customProperty.editCustomPropertyFilters": "Szerkeszteni egyedi ingatlanszűrők",
101
- "customProperty.filterBuilder": "Custom ingatlanszűrő építő",
102
- "customProperty.filterIndex": "egyedi tulajdonszűrő {index}",
103
- "customProperty.removeFilter": "Távolítsa el az egyéni tulajdonszűrőt {szám}",
104
- "customProperty.removeRule": "Távolítsa el a szabályt {szám}",
105
- "customProperty.addFilter": "Adjon hozzá egyedi ingatlanszűrőt",
106
- "customProperty.retiredName": "Olvasson bele a(z)",
107
- "customProperty.notSet": "Nem",
108
- "operator.isSet": "A beállítás",
109
- "operator.isNotSet": "Nincs beállítva",
110
- "operator.equals": "Egyenletek",
111
- "operator.doesNotEqual": "Nem egyenlő",
112
- "operator.isGreaterThanOrEqual": "Nagyobb, mint vagy egyenlő",
113
- "operator.isLessThanOrEqual": "Kevesebb, mint vagy egyenlő",
114
- "operator.isOnOrAfter": "Vagy utána",
115
- "operator.isOnOrBefore": "Van vagy korábban",
116
- "operator.is": "Az",
117
- "operator.isNot": "Nem.",
118
- "operator.contains": "Kontakt",
119
- "operator.doesNotContain": "Nem tartalmaz",
120
- "iconSelect.notSet": "Nem",
121
- "richSelect.placeholder": "Kérjük válasszon egy lehetőséget"
122
- }
1
+ {}
@@ -1,122 +1 @@
1
- {
2
- "AND": "E",
3
- "OR": "O",
4
- "create": "Creare",
5
- "edit": "Modifica",
6
- "save": "Salva",
7
- "saveAndClose": "Salva e chiudi",
8
- "cancel": "Annulla",
9
- "delete": "Cancella",
10
- "apply": "Applicare",
11
- "new": "Nuovo",
12
- "notSet": "Non impostato",
13
- "errors.hasNonAlphaName": "Il nome può contenere solo caratteri alfabetici latini (a-z) e caratteri numerici non leader.",
14
- "settings.noCurrentValue": "Nessun valore attuale",
15
- "settings.default": "predefinito",
16
- "settings.edit": "Modifica",
17
- "settings.settingLoading": "Caricamento",
18
- "settings.finishEditing": "Modifica della finitura",
19
- "settings.valueFor": "Valore per l'impostazione {name}",
20
- "actionList.save": "Salva",
21
- "actionList.cancel": "Annulla",
22
- "actionList.create": "Creare",
23
- "actionList.actions": "Azioni",
24
- "editableRefdataList.deleteRefdataValue": "Eliminare il valore dei dati",
25
- "editableRefdataList.deleteRefdataValue.confirmMessage": "<strong>{name} </strong> verrà cancellato.",
26
- "editableRefdataList.deleteRefdataValue.errorMessage": "<strong>Error: {label} </strong> non è stato cancellato. Si'.",
27
- "editableRefdataList.label": "Etichetta",
28
- "editableRefdataList.value": "Valore",
29
- "editableRefdataList.editAriaLabel": "Modifica valore {label}",
30
- "editableRefdataList.deleteAriaLabel": "Eliminare il valore {label}",
31
- "editableRefdataCategoryList.refdataCategory": "Categoria",
32
- "editableRefdataCategoryList.noOfValues": "# dei valori",
33
- "editableRefdataCategoryList.refdataCategories": "Categorie",
34
- "editableRefdataCategoryList.deleteAriaLabel": "Eliminare il valore {label}",
35
- "editableRefdataCategoryList.deleteRefdataCategory": "Eliminare la categoria di dati",
36
- "editableRefdataCategoryList.deleteRefdataCategory.confirmMessage": "<strong>{name} </strong> verrà cancellato.",
37
- "editableRefdataCategoryList.deleteRefdataCategory.errorMessage": "<strong>Error: {label} </strong> non è stato cancellato. Si'.",
38
- "sasqLookupComponent.mainPane.found": "Risultati trovati",
39
- "noResultsMessage.showFilters": "Mostra filtri",
40
- "customProperties": "Proprietà personalizzate",
41
- "customProperties.all": "Tutti",
42
- "customProperties.none": "Nessuno",
43
- "customProperties.label": "Etichetta",
44
- "customProperties.primary": "Primario",
45
- "customProperties.retired": "Ritiro",
46
- "customProperties.ctx": "Contesto",
47
- "customProperties.ctx.addContext": "Aggiungi contesto {valore}",
48
- "customProperties.weight": "Peso dell'ordine",
49
- "customProperties.type": "Tipo",
50
- "customProperties.internalFalse": "Pubblico",
51
- "customProperties.internalNote": "Nota interna",
52
- "customProperties.internalTrue": "Interno",
53
- "customProperties.publicNote": "Nota pubblica",
54
- "customProperties.name": "Nome",
55
- "customProperties.description": "Designazione delle merci",
56
- "customProperties.category": "Categoria",
57
- "customProperties.defaultVisibility": "visibilità predefinita",
58
- "customProperties.noCtxFound": "Nessun contesto corrispondente trovato",
59
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
60
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolean",
61
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Contenitore",
62
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Decimale",
63
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
64
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Dati di riflessione",
65
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Definizione dei dati",
66
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Testo",
67
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Data",
68
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyMultiRefdata": "Refdata (multi-select)",
69
- "customProperties.delete.confirmHeading": "Eliminare la proprietà personalizzata",
70
- "customProperties.delete.confirmMessage": "La proprietà doganale <strong>{name} </strong> sarà <strong>deleted",
71
- "customPropertiesSettings.deleteCustomProperty.errorMessage": "<strong>Error: {label} </strong> non è stato cancellato. Si'.",
72
- "customProperties.primaryProperties": "Proprietà primarie",
73
- "customProperties.optionalProperties": "Proprietà opzionali",
74
- "customProperties.addProperty": "Aggiungi proprietà",
75
- "customProperties.ctx.title": "Proprietà personalizzate ({ctx})",
76
- "customProperty.optionalPropertyHeader": "Proprietà {numero}",
77
- "customProperty.remove": "Rimuovere la proprietà {numero}",
78
- "customProperty.newModal": "Nuova proprietà personalizzata",
79
- "customProperty.editModal": "Modifica della proprietà personalizzata",
80
- "search": "Ricerca",
81
- "yes": "Sì.",
82
- "no": "No.",
83
- "errors.invalidNumber": "Inserisci un numero valido per continuare",
84
- "errors.primaryRetired": "Una proprietà personalizzata non può essere sia primaria che ritirata",
85
- "errors.customPropertyNoteInvalidNumber": "Un numero valido deve essere inserito per salvare una nota",
86
- "errors.customPropertyInvalidNumber": "Inserisci un numero valido per continuare",
87
- "errors.customPropertyNoteWithoutValue": "Un valore deve essere impostato per salvare una nota",
88
- "errors.customPropertyValueNotInRange": "Si prega di inserire un numero intero nella gamma {min} a {max} per continuare",
89
- "errors.customPropertyDecimalValueNotInRange": "Inserisci un numero nell'intervallo {min} a {max} per continuare",
90
- "errors.customPropertyMaxTwoDecimals": "Si prega di inserire un numero con un massimo di 2 punti decimali",
91
- "customProperty": "Proprietà personalizzata",
92
- "customProperty.name": "Nome",
93
- "customProperty.value": "Valore(i)",
94
- "customProperty.internalNote": "Nota interna",
95
- "customProperty.visibility": "Visibilità",
96
- "customProperty.publicNote": "Nota pubblica",
97
- "customProperty.internalTrue": "Interno",
98
- "customProperty.internalFalse": "Pubblico",
99
- "customProperty.filtersApplied": "{count} proprietà personalizzate filtri applicati",
100
- "customProperty.editCustomPropertyFilters": "Modifica filtri di proprietà personalizzati",
101
- "customProperty.filterBuilder": "Costruttore di filtro personalizzato",
102
- "customProperty.filterIndex": "Filtro di proprietà personalizzato {indice}",
103
- "customProperty.removeFilter": "Rimuovere il filtro di proprietà personalizzato {numero}",
104
- "customProperty.removeRule": "Rimuovi la regola {numero}",
105
- "customProperty.addFilter": "Aggiungi filtro proprietà personalizzato",
106
- "customProperty.retiredName": "RETIRED: {name}",
107
- "customProperty.notSet": "Non impostato",
108
- "operator.isSet": "È pronto",
109
- "operator.isNotSet": "Non è impostato",
110
- "operator.equals": "Parità",
111
- "operator.doesNotEqual": "Non è uguale",
112
- "operator.isGreaterThanOrEqual": "È maggiore o uguale a",
113
- "operator.isLessThanOrEqual": "È inferiore o uguale a",
114
- "operator.isOnOrAfter": "Su o dopo",
115
- "operator.isOnOrBefore": "Su o prima",
116
- "operator.is": "È",
117
- "operator.isNot": "Non è",
118
- "operator.contains": "Contiene",
119
- "operator.doesNotContain": "Non contiene",
120
- "iconSelect.notSet": "Non impostato",
121
- "richSelect.placeholder": "Seleziona un'opzione"
122
- }
1
+ {}
@@ -1,122 +1 @@
1
- {
2
- "AND": "お問い合わせ",
3
- "OR": "お問い合わせ",
4
- "create": "ダウンロード",
5
- "edit": "編集",
6
- "save": "保存する",
7
- "saveAndClose": "保存&クローズ",
8
- "cancel": "キャンセル",
9
- "delete": "削除",
10
- "apply": "お問い合わせ",
11
- "new": "ニュース",
12
- "notSet": "セットなし",
13
- "errors.hasNonAlphaName": "名前は、ラテン文字(a-z)と非先頭の数値文字のみを含むことができます。",
14
- "settings.noCurrentValue": "現在の値はありません",
15
- "settings.default": "デフォルト",
16
- "settings.edit": "編集",
17
- "settings.settingLoading": "ログイン",
18
- "settings.finishEditing": "終わりの編集",
19
- "settings.valueFor": "{name} を設定するための値",
20
- "actionList.save": "保存する",
21
- "actionList.cancel": "キャンセル",
22
- "actionList.create": "ダウンロード",
23
- "actionList.actions": "アクション",
24
- "editableRefdataList.deleteRefdataValue": "refdata 値の削除",
25
- "editableRefdataList.deleteRefdataValue.confirmMessage": "<strong>{name}</strong> は削除されます。",
26
- "editableRefdataList.deleteRefdataValue.errorMessage": "<strong>Error: {label}</strong> は削除されません。 お問い合わせ",
27
- "editableRefdataList.label": "ラベル",
28
- "editableRefdataList.value": "バリュー",
29
- "editableRefdataList.editAriaLabel": "値を編集する {label}",
30
- "editableRefdataList.deleteAriaLabel": "値の削除 {label}",
31
- "editableRefdataCategoryList.refdataCategory": "カテゴリー",
32
- "editableRefdataCategoryList.noOfValues": "値の #",
33
- "editableRefdataCategoryList.refdataCategories": "カテゴリー",
34
- "editableRefdataCategoryList.deleteAriaLabel": "値の削除 {label}",
35
- "editableRefdataCategoryList.deleteRefdataCategory": "refdataカテゴリの削除",
36
- "editableRefdataCategoryList.deleteRefdataCategory.confirmMessage": "<strong>{name}</strong> は削除されます。",
37
- "editableRefdataCategoryList.deleteRefdataCategory.errorMessage": "<strong>Error: {label}</strong> は削除されません。 お問い合わせ",
38
- "sasqLookupComponent.mainPane.found": "{total} レコードが見つかりました",
39
- "noResultsMessage.showFilters": "フィルターを表示",
40
- "customProperties": "カスタムプロパティ",
41
- "customProperties.all": "すべて",
42
- "customProperties.none": "なし",
43
- "customProperties.label": "ラベル",
44
- "customProperties.primary": "プライマー",
45
- "customProperties.retired": "リティレッド",
46
- "customProperties.ctx": "コンテンツ",
47
- "customProperties.ctx.addContext": "コンテキスト {value} を追加",
48
- "customProperties.weight": "注文の重量",
49
- "customProperties.type": "タイプ:",
50
- "customProperties.internalFalse": "パブリック",
51
- "customProperties.internalNote": "内部注記",
52
- "customProperties.internalTrue": "インテリア",
53
- "customProperties.publicNote": "パブリックノート",
54
- "customProperties.name": "お名前 (必須)",
55
- "customProperties.description": "コンテンツ",
56
- "customProperties.category": "カテゴリー",
57
- "customProperties.defaultVisibility": "デフォルト可視性",
58
- "customProperties.noCtxFound": "一致するコンテキストが見つかりません",
59
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "ブロブ",
60
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "ボオラン",
61
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "コンテナ",
62
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "スケジュール",
63
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "インテガー",
64
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "参考文献",
65
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Refdata 定義",
66
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "テキスト",
67
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "日程表",
68
- "customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyMultiRefdata": "Refdata(複数選択)",
69
- "customProperties.delete.confirmHeading": "カスタムプロパティを削除します。",
70
- "customProperties.delete.confirmMessage": "カスタムプロパティ <strong>{name}</strong> は <strong>deleted</strong> となります。",
71
- "customPropertiesSettings.deleteCustomProperty.errorMessage": "<strong>Error: {label}</strong> は削除されません。 お問い合わせ",
72
- "customProperties.primaryProperties": "主な特性",
73
- "customProperties.optionalProperties": "オプションのプロパティ",
74
- "customProperties.addProperty": "Add プロパティ",
75
- "customProperties.ctx.title": "カスタムプロパティ({ctx})",
76
- "customProperty.optionalPropertyHeader": "プロパティ {number}",
77
- "customProperty.remove": "プロパティの削除 {number}",
78
- "customProperty.newModal": "新しいカスタムプロパティ",
79
- "customProperty.editModal": "カスタムプロパティの編集",
80
- "search": "アクセス",
81
- "yes": "お問い合わせ",
82
- "no": "なし",
83
- "errors.invalidNumber": "有効な番号を入力してください",
84
- "errors.primaryRetired": "カスタムプロパティは、プライマリとリタイドの両方にすることはできません",
85
- "errors.customPropertyNoteInvalidNumber": "ノートを保存するために有効な番号を入力してください",
86
- "errors.customPropertyInvalidNumber": "有効な番号を入力してください",
87
- "errors.customPropertyNoteWithoutValue": "メモを保存するために値を設定する必要があります",
88
- "errors.customPropertyValueNotInRange": "続行するには、範囲{min}から{max}に全番号を入力してください",
89
- "errors.customPropertyDecimalValueNotInRange": "続行するには、範囲{min}に{max}の数字を入力してください",
90
- "errors.customPropertyMaxTwoDecimals": "定員2名までご入力ください。",
91
- "customProperty": "カスタムプロパティ",
92
- "customProperty.name": "お名前 (必須)",
93
- "customProperty.value": "バリュー",
94
- "customProperty.internalNote": "内部注記",
95
- "customProperty.visibility": "可視性",
96
- "customProperty.publicNote": "パブリックノート",
97
- "customProperty.internalTrue": "インテリア",
98
- "customProperty.internalFalse": "パブリック",
99
- "customProperty.filtersApplied": "{count} カスタム プロパティ フィルタ 応用",
100
- "customProperty.editCustomPropertyFilters": "カスタムプロパティフィルタの編集",
101
- "customProperty.filterBuilder": "カスタム プロパティ フィルター ビルダー",
102
- "customProperty.filterIndex": "カスタムプロパティフィルタ {index}",
103
- "customProperty.removeFilter": "カスタム プロパティ フィルター {number} を削除します。",
104
- "customProperty.removeRule": "ルールを削除 {number}",
105
- "customProperty.addFilter": "カスタム プロパティ フィルターを追加",
106
- "customProperty.retiredName": "よくある質問",
107
- "customProperty.notSet": "セットなし",
108
- "operator.isSet": "セット",
109
- "operator.isNotSet": "設定されていない",
110
- "operator.equals": "エコール",
111
- "operator.doesNotEqual": "等しくない",
112
- "operator.isGreaterThanOrEqual": "より大きいか等しいです",
113
- "operator.isLessThanOrEqual": "または等しくない",
114
- "operator.isOnOrAfter": "以降",
115
- "operator.isOnOrBefore": "または前に",
116
- "operator.is": "です。",
117
- "operator.isNot": "ない",
118
- "operator.contains": "コンテンツ",
119
- "operator.doesNotContain": "含まない",
120
- "iconSelect.notSet": "セットなし",
121
- "richSelect.placeholder": "オプションを選択してください"
122
- }
1
+ {}