@k-int/stripes-kint-components 2.2.0 → 2.3.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.
- package/CHANGELOG.md +21 -0
- package/es/index.js +124 -4
- package/es/lib/ActionList/ActionList.js +7 -2
- package/es/lib/ActionList/ActionListFieldArray.js +49 -10
- package/es/lib/CustomProperties/Config/CustomPropertiesSettings.js +2 -2
- package/es/lib/CustomProperties/Config/{CustomPropertiesView.js → CustomPropertyView.js} +5 -5
- package/es/lib/CustomProperties/Config/index.js +6 -4
- package/es/lib/CustomProperties/Edit/CustomPropertiesEdit.js +72 -0
- package/es/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +133 -0
- package/es/lib/CustomProperties/Edit/CustomPropertiesListField.js +279 -0
- package/es/lib/CustomProperties/Edit/CustomPropertyField.js +370 -0
- package/es/lib/CustomProperties/Edit/CustomPropertyFormCard.js +156 -0
- package/es/lib/CustomProperties/Edit/index.js +51 -0
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilter.js +216 -0
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +236 -0
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +159 -0
- package/es/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +119 -0
- package/es/lib/CustomProperties/Filter/CustomPropertiesRule.js +173 -0
- package/es/lib/CustomProperties/Filter/index.js +59 -0
- package/es/lib/CustomProperties/Filter/useOperators.js +138 -0
- package/es/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +97 -0
- package/es/lib/CustomProperties/Filter/useValueProps.js +101 -0
- package/es/lib/CustomProperties/View/CustomPropertiesView.js +73 -0
- package/es/lib/CustomProperties/View/CustomPropertiesViewCtx.js +187 -0
- package/es/lib/CustomProperties/View/CustomPropertyCard.js +204 -0
- package/es/lib/CustomProperties/View/index.js +35 -0
- package/es/lib/CustomProperties/index.js +125 -0
- package/es/lib/EditableRefdataList/EditableRefdataList.js +12 -16
- package/es/lib/FormModal/FormModal.js +18 -4
- package/es/lib/QueryTypedown/QueryTypedown.js +9 -4
- package/es/lib/constants/customProperties.js +4 -1
- package/es/lib/hooks/index.js +16 -0
- package/es/lib/hooks/typedownHooks/useTypedownData.js +9 -2
- package/es/lib/hooks/useAvailableCustomProperties.js +106 -0
- package/es/lib/hooks/useInvalidateRefdata.js +53 -0
- package/es/lib/hooks/useMutateRefdataValue.js +11 -6
- package/es/lib/hooks/useRefdata.js +1 -3
- package/es/lib/utils/groupCustomPropertiesByCtx.js +69 -0
- package/es/lib/utils/index.js +24 -0
- package/es/lib/utils/refdataQueryKey.js +48 -0
- package/es/lib/utils/typedownQueryKey.js +48 -0
- package/es/lib/utils/validators.js +60 -1
- package/git_translate.sh +8 -0
- package/package.json +1 -1
- package/src/index.js +27 -3
- package/src/lib/ActionList/ActionList.js +5 -2
- package/src/lib/ActionList/ActionListFieldArray.js +31 -8
- package/src/lib/ActionList/README.md +23 -20
- package/src/lib/CustomProperties/Config/CustomPropertiesSettings.js +2 -2
- package/src/lib/CustomProperties/Config/{CustomPropertiesView.js → CustomPropertyView.js} +3 -3
- package/src/lib/CustomProperties/Config/index.js +1 -1
- package/src/lib/CustomProperties/Edit/CustomPropertiesEdit.js +35 -0
- package/src/lib/CustomProperties/Edit/CustomPropertiesEditCtx.js +85 -0
- package/src/lib/CustomProperties/Edit/CustomPropertiesListField.js +194 -0
- package/src/lib/CustomProperties/Edit/CustomPropertyField.js +299 -0
- package/src/lib/CustomProperties/Edit/CustomPropertyFormCard.js +131 -0
- package/src/lib/CustomProperties/Edit/index.js +5 -0
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilter.js +125 -0
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterField.js +148 -0
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterFieldArray.js +113 -0
- package/src/lib/CustomProperties/Filter/CustomPropertiesFilterForm.js +74 -0
- package/src/lib/CustomProperties/Filter/CustomPropertiesRule.js +122 -0
- package/src/lib/CustomProperties/Filter/index.js +6 -0
- package/src/lib/CustomProperties/Filter/useOperators.js +55 -0
- package/src/lib/CustomProperties/Filter/useParseActiveFilterStrings.js +35 -0
- package/src/lib/CustomProperties/Filter/useValueProps.js +45 -0
- package/src/lib/CustomProperties/View/CustomPropertiesView.js +36 -0
- package/src/lib/CustomProperties/View/CustomPropertiesViewCtx.js +112 -0
- package/src/lib/CustomProperties/View/CustomPropertyCard.js +177 -0
- package/src/lib/CustomProperties/View/index.js +3 -0
- package/src/lib/CustomProperties/index.js +30 -0
- package/src/lib/EditableRefdataList/EditableRefdataList.js +13 -10
- package/src/lib/FormModal/FormModal.js +37 -17
- package/src/lib/QueryTypedown/QueryTypedown.js +3 -1
- package/src/lib/constants/customProperties.js +1 -0
- package/src/lib/hooks/index.js +2 -0
- package/src/lib/hooks/typedownHooks/useTypedownData.js +9 -3
- package/src/lib/hooks/useAvailableCustomProperties.js +40 -0
- package/src/lib/hooks/useInvalidateRefdata.js +11 -0
- package/src/lib/hooks/useMutateRefdataValue.js +7 -3
- package/src/lib/hooks/useRefdata.js +2 -3
- package/src/lib/utils/groupCustomPropertiesByCtx.js +13 -0
- package/src/lib/utils/index.js +5 -0
- package/src/lib/utils/refdataQueryKey.js +9 -0
- package/src/lib/utils/typedownQueryKey.js +9 -0
- package/src/lib/utils/validators.js +40 -0
- package/translate.sh +63 -0
- package/translations/stripes-kint-components/ar.json +105 -0
- package/translations/stripes-kint-components/ca.json +1 -0
- package/translations/stripes-kint-components/cs_CZ.json +105 -0
- package/translations/stripes-kint-components/da.json +1 -0
- package/translations/stripes-kint-components/de.json +105 -0
- package/translations/stripes-kint-components/en.json +54 -2
- package/translations/stripes-kint-components/es.json +105 -0
- package/translations/stripes-kint-components/fr.json +105 -0
- package/translations/stripes-kint-components/he.json +1 -0
- package/translations/stripes-kint-components/hi_IN.json +105 -0
- package/translations/stripes-kint-components/hu.json +105 -0
- package/translations/stripes-kint-components/it_IT.json +105 -0
- package/translations/stripes-kint-components/ja.json +105 -0
- package/translations/stripes-kint-components/ko.json +105 -0
- package/translations/stripes-kint-components/nb.json +1 -0
- package/translations/stripes-kint-components/nn.json +1 -0
- package/translations/stripes-kint-components/pl.json +105 -0
- package/translations/stripes-kint-components/pt_PT.json +105 -0
- package/translations/stripes-kint-components/ru.json +105 -0
- package/translations/stripes-kint-components/sv.json +105 -0
- package/translations/stripes-kint-components/ur.json +1 -0
- package/translations/stripes-kint-components/zh_CN.json +105 -0
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
1
|
import PropTypes from 'prop-types';
|
|
3
2
|
|
|
4
3
|
import { useQuery } from 'react-query';
|
|
5
4
|
import { useOkapiKy } from '@folio/stripes/core';
|
|
6
5
|
|
|
7
|
-
import { generateKiwtQuery, refdataOptions } from '../utils';
|
|
6
|
+
import { generateKiwtQuery, refdataOptions, refdataQueryKey } from '../utils';
|
|
8
7
|
|
|
9
8
|
const useRefdata = ({
|
|
10
9
|
endpoint,
|
|
@@ -35,7 +34,7 @@ const useRefdata = ({
|
|
|
35
34
|
const path = `${endpoint}${query}`;
|
|
36
35
|
|
|
37
36
|
const queryObject = useQuery(
|
|
38
|
-
|
|
37
|
+
refdataQueryKey(desc),
|
|
39
38
|
() => ky(path).json(),
|
|
40
39
|
queryParams
|
|
41
40
|
);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const groupCustomPropertiesByCtx = (customProperties) => (
|
|
2
|
+
customProperties.reduce((acc, curr) => {
|
|
3
|
+
const ctx = curr.ctx ?? 'isNull';
|
|
4
|
+
const returnObj = {
|
|
5
|
+
...acc
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
returnObj[ctx] = [...(acc?.[ctx] ?? []), curr];
|
|
9
|
+
return returnObj;
|
|
10
|
+
}, {})
|
|
11
|
+
);
|
|
12
|
+
|
|
13
|
+
export default groupCustomPropertiesByCtx;
|
package/src/lib/utils/index.js
CHANGED
|
@@ -5,6 +5,11 @@ export { default as selectorSafe } from './selectorSafe';
|
|
|
5
5
|
export { default as buildUrl } from './buildUrl';
|
|
6
6
|
|
|
7
7
|
export { default as refdataOptions } from './refdataOptions';
|
|
8
|
+
export { default as refdataQueryKey } from './refdataQueryKey';
|
|
9
|
+
|
|
10
|
+
export { default as typedownQueryKey } from './typedownQueryKey';
|
|
11
|
+
|
|
12
|
+
export { default as groupCustomPropertiesByCtx } from './groupCustomPropertiesByCtx';
|
|
8
13
|
|
|
9
14
|
// Settings utils
|
|
10
15
|
export { default as renderHelpText } from './renderHelpText';
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
// This is a copy of stripes-erm-components, to avoid necessitating that as a dependency
|
|
2
2
|
import { FormattedMessage } from 'react-intl';
|
|
3
3
|
|
|
4
|
+
import * as CUSTOM_PROPERTY_TYPES from '../constants/customProperties';
|
|
5
|
+
|
|
4
6
|
const invalidNumber = value => (
|
|
5
7
|
(value || value === 0) ? undefined : <FormattedMessage id="stripes-kint-components.errors.invalidNumber" />
|
|
6
8
|
);
|
|
@@ -23,6 +25,43 @@ const requiredObject = (formValue = {}) => {
|
|
|
23
25
|
return undefined;
|
|
24
26
|
};
|
|
25
27
|
|
|
28
|
+
const customPropertyValidator = (fieldValue, allValues, customProperty) => {
|
|
29
|
+
const { note, publicNote, value: currentValue } = allValues?.customProperties?.[customProperty?.value]?.[0] ?? {};
|
|
30
|
+
|
|
31
|
+
if ((note && !currentValue) || (publicNote && !currentValue)) {
|
|
32
|
+
if (
|
|
33
|
+
customProperty.type === CUSTOM_PROPERTY_TYPES.DECIMAL_CLASS_NAME ||
|
|
34
|
+
customProperty.type === CUSTOM_PROPERTY_TYPES.INTEGER_CLASS_NAME
|
|
35
|
+
) {
|
|
36
|
+
return <FormattedMessage id="stripes-kint-components.errors.customPropertyNoteInvalidNumber" />;
|
|
37
|
+
} else {
|
|
38
|
+
return <FormattedMessage id="stripes-kint-components.errors.customPropertyNoteWithoutValue" />;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (customProperty.type === CUSTOM_PROPERTY_TYPES.DECIMAL_CLASS_NAME) {
|
|
43
|
+
const regexp = /^-?[\d]*(\.[\d]{0,2})?$/;
|
|
44
|
+
return (fieldValue && !regexp.test(fieldValue)) ?
|
|
45
|
+
<FormattedMessage id="stripes-kint-components.errors.customPropertyMaxTwoDecimals" /> : undefined;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (customProperty.type === CUSTOM_PROPERTY_TYPES.INTEGER_CLASS_NAME) {
|
|
49
|
+
const min = Number.MIN_SAFE_INTEGER;
|
|
50
|
+
const max = Number.MAX_SAFE_INTEGER;
|
|
51
|
+
|
|
52
|
+
return (fieldValue && !Number.isInteger(+fieldValue)) ?
|
|
53
|
+
<FormattedMessage id="stripes-kint-components.errors.customPropertyValueNotInRange" values={{ min, max }} /> :
|
|
54
|
+
undefined;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
if (!customProperty.primary && !currentValue) {
|
|
58
|
+
return <FormattedMessage id="stripes-core.label.missingRequiredField" />;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return undefined;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
|
|
26
65
|
const composeValidators = (...validators) => (
|
|
27
66
|
(value, allValues, meta) => (
|
|
28
67
|
validators.reduce((error, validator) => (
|
|
@@ -33,6 +72,7 @@ const composeValidators = (...validators) => (
|
|
|
33
72
|
|
|
34
73
|
export {
|
|
35
74
|
composeValidators,
|
|
75
|
+
customPropertyValidator,
|
|
36
76
|
invalidNumber,
|
|
37
77
|
required,
|
|
38
78
|
requiredObject,
|
package/translate.sh
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
translate() {
|
|
3
|
+
if [ -z "$2" ];
|
|
4
|
+
then
|
|
5
|
+
cat en.json | docker run -i translate $1 > $1.json;
|
|
6
|
+
else
|
|
7
|
+
cat en.json | docker run -i translate $1 > $2.json;
|
|
8
|
+
fi
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
translateLanguages=(
|
|
12
|
+
'ar'
|
|
13
|
+
'ca'
|
|
14
|
+
'cs:cs_CZ'
|
|
15
|
+
'da'
|
|
16
|
+
'de'
|
|
17
|
+
'es'
|
|
18
|
+
'fr'
|
|
19
|
+
'he'
|
|
20
|
+
'hi:hi_IN'
|
|
21
|
+
'hu'
|
|
22
|
+
'it:it_IT'
|
|
23
|
+
'ja'
|
|
24
|
+
'ko'
|
|
25
|
+
'nb'
|
|
26
|
+
'nn'
|
|
27
|
+
'pl'
|
|
28
|
+
'pt:pt_PT'
|
|
29
|
+
'ru'
|
|
30
|
+
'sv'
|
|
31
|
+
'ur'
|
|
32
|
+
'zh:zh_CN'
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
cd "./translations/stripes-kint-components"
|
|
36
|
+
|
|
37
|
+
for i in "${translateLanguages[@]}"
|
|
38
|
+
do
|
|
39
|
+
# delete previous array/list (this is crucial!)
|
|
40
|
+
unset fileName
|
|
41
|
+
# split sub-list if available
|
|
42
|
+
if [[ $i == *":"* ]];
|
|
43
|
+
then
|
|
44
|
+
# split server name from sub-list
|
|
45
|
+
tmpLangArr=(${i//:/ })
|
|
46
|
+
i=${tmpLangArr[0]}
|
|
47
|
+
fileName=${tmpLangArr[1]}
|
|
48
|
+
fi
|
|
49
|
+
if [ -z "$fileName" ];
|
|
50
|
+
then
|
|
51
|
+
translate $i
|
|
52
|
+
if [ $? -ne 0 ];
|
|
53
|
+
then
|
|
54
|
+
echo "{}" > $i.json;
|
|
55
|
+
fi;
|
|
56
|
+
else
|
|
57
|
+
translate $i $fileName
|
|
58
|
+
if [ $? -ne 0 ];
|
|
59
|
+
then
|
|
60
|
+
echo "{}" > $fileName.json;
|
|
61
|
+
fi;
|
|
62
|
+
fi
|
|
63
|
+
done
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AND": "و",
|
|
3
|
+
"OR": "أو",
|
|
4
|
+
"create": "الإبداع",
|
|
5
|
+
"edit": "Edit",
|
|
6
|
+
"save": "أنقذ",
|
|
7
|
+
"cancel": "إلغاء",
|
|
8
|
+
"delete": "تحذف",
|
|
9
|
+
"apply": "التطبيق",
|
|
10
|
+
"notSet": "غير محدد",
|
|
11
|
+
"errors.hasNonAlphaName": "ولا يمكن أن يحتوي الاسم إلا على شخصيات أبجدية لاتينية (أ-ض) وشخصيات رقمية غير محررة.",
|
|
12
|
+
"settings.noCurrentValue": "لا قيمة جارية",
|
|
13
|
+
"settings.default": "العجز",
|
|
14
|
+
"settings.edit": "Edit",
|
|
15
|
+
"settings.settingLoading": "Loading",
|
|
16
|
+
"settings.finishEditing": "التحرير النهائي",
|
|
17
|
+
"settings.valueFor": "Value for setting {name}",
|
|
18
|
+
"actionList.save": "أنقذ",
|
|
19
|
+
"actionList.cancel": "إلغاء",
|
|
20
|
+
"actionList.create": "الإبداع",
|
|
21
|
+
"actionList.actions": "الإجراءات",
|
|
22
|
+
"editableRefdataList.edit": "Edit",
|
|
23
|
+
"editableRefdataList.delete": "تحذف",
|
|
24
|
+
"editableRefdataList.label": "Label",
|
|
25
|
+
"editableRefdataList.value": "القيمة",
|
|
26
|
+
"sasqLookupComponent.mainPane.found": "السجلات وجدت",
|
|
27
|
+
"noResultsMessage.showFilters": "مرشحات العرض",
|
|
28
|
+
"customProperties": "الممتلكات العرفية",
|
|
29
|
+
"customProperties.all": "كل شيء",
|
|
30
|
+
"customProperties.none": "لا",
|
|
31
|
+
"customProperties.label": "Label",
|
|
32
|
+
"customProperties.primary": "الابتدائي",
|
|
33
|
+
"customProperties.retired": "المتقاعدين",
|
|
34
|
+
"customProperties.ctx": "السياق",
|
|
35
|
+
"customProperties.ctx.addContext": "Add context {value}",
|
|
36
|
+
"customProperties.weight": "وزن النظام",
|
|
37
|
+
"customProperties.type": "النوع",
|
|
38
|
+
"customProperties.internalFalse": "الجمهور",
|
|
39
|
+
"customProperties.internalNote": "المذكرة الداخلية",
|
|
40
|
+
"customProperties.internalTrue": "داخلي",
|
|
41
|
+
"customProperties.publicNote": "ملاحظة عامة",
|
|
42
|
+
"customProperties.name": "الاسم",
|
|
43
|
+
"customProperties.description": "الوصف",
|
|
44
|
+
"customProperties.category": "المخلفات",
|
|
45
|
+
"customProperties.defaultVisibility": "الرؤية غير المباشرة",
|
|
46
|
+
"customProperties.noCtxFound": "لا يوجد سياق مطابق",
|
|
47
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
|
|
48
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Polean",
|
|
49
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "الحاويات",
|
|
50
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Decimal",
|
|
51
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
|
|
52
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Refdata",
|
|
53
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "تعريف البيانات",
|
|
54
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "النص",
|
|
55
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "التاريخ",
|
|
56
|
+
"customProperties.delete.confirmLabel": "تحذف",
|
|
57
|
+
"customProperties.delete.confirmHeading": "الممتلكات العرفية",
|
|
58
|
+
"customProperties.delete.confirmMessage": "Custom property TRIstrong.{name} /strong. will be strong.deleted/strong..",
|
|
59
|
+
"customProperties.primaryProperties": "الممتلكات الأولية",
|
|
60
|
+
"customProperties.optionalProperties": "الممتلكات الاختيارية",
|
|
61
|
+
"customProperties.addProperty": "الممتلكات",
|
|
62
|
+
"customProperties.ctx.title": "الممتلكات العرفية ({ctx})",
|
|
63
|
+
"customProperty.optionalPropertyHeader": "الممتلكات {العدد}",
|
|
64
|
+
"customProperty.remove": "Remove property {number}",
|
|
65
|
+
"search": "البحث",
|
|
66
|
+
"yes": "نعم",
|
|
67
|
+
"no": "لا",
|
|
68
|
+
"errors.invalidNumber": "يرجى الدخول إلى رقم صالح للاستمرار",
|
|
69
|
+
"errors.primaryRetired": "لا يمكن أن تكون الممتلكات العرفية ملكية أولية ومتقاعدة",
|
|
70
|
+
"errors.customPropertyNoteInvalidNumber": "يجب إدخال رقم صحيح من أجل توفير مذكرة",
|
|
71
|
+
"errors.customPropertyInvalidNumber": "يرجى الدخول إلى رقم صالح للاستمرار",
|
|
72
|
+
"errors.customPropertyNoteWithoutValue": "يجب تحديد قيمة من أجل توفير ملاحظة",
|
|
73
|
+
"errors.customPropertyValueNotInRange": "يرجى إدخال رقم كامل في النطاق {م}إلى {ماكس} لمواصلة",
|
|
74
|
+
"errors.customPropertyDecimalValueNotInRange": "يرجى إدخال رقم في النطاق {م}إلى {ماكس} لمواصلة",
|
|
75
|
+
"errors.customPropertyMaxTwoDecimals": "من فضلك أدخل رقماً بحد أقصى لـ 2 عشريات",
|
|
76
|
+
"customProperty": "الممتلكات العرفية",
|
|
77
|
+
"customProperty.name": "الاسم",
|
|
78
|
+
"customProperty.value": "القيمة",
|
|
79
|
+
"customProperty.internalNote": "المذكرة الداخلية",
|
|
80
|
+
"customProperty.visibility": "الرؤية",
|
|
81
|
+
"customProperty.publicNote": "ملاحظة عامة",
|
|
82
|
+
"customProperty.internalTrue": "داخلي",
|
|
83
|
+
"customProperty.internalFalse": "الجمهور",
|
|
84
|
+
"customProperty.filtersApplied": "{حساب }مرشحات الممتلكات العرفية مطبقة",
|
|
85
|
+
"customProperty.editCustomPropertyFilters": "تصفية ممتلكات شركة إديت",
|
|
86
|
+
"customProperty.filterBuilder": "تصفية الممتلكات العرفية",
|
|
87
|
+
"customProperty.filterIndex": "تصفية الممتلكات العرفية",
|
|
88
|
+
"customProperty.removeFilter": "Remove custom property filter {number}",
|
|
89
|
+
"customProperty.removeRule": "Remove rule {number}",
|
|
90
|
+
"customProperty.addFilter": "يضاف تصفية الممتلكات العرفية",
|
|
91
|
+
"customProperty.retiredName": "RETIRED: {name}",
|
|
92
|
+
"customProperty.notSet": "غير محدد",
|
|
93
|
+
"operator.isSet": "جاهز",
|
|
94
|
+
"operator.isNotSet": "ليست جاهزة",
|
|
95
|
+
"operator.equals": "المساواة",
|
|
96
|
+
"operator.doesNotEqual": "لا تساوي",
|
|
97
|
+
"operator.isGreaterThanOrEqual": "أكبر من أو يساوي",
|
|
98
|
+
"operator.isLessThanOrEqual": "أقل من أو يساوي",
|
|
99
|
+
"operator.isOnOrAfter": "أو بعد",
|
|
100
|
+
"operator.isOnOrBefore": "أو قبل",
|
|
101
|
+
"operator.is": "هو",
|
|
102
|
+
"operator.isNot": "ليس",
|
|
103
|
+
"operator.contains": "الحاويات",
|
|
104
|
+
"operator.doesNotContain": "لا تحتوي"
|
|
105
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AND": "A",
|
|
3
|
+
"OR": "Nebo",
|
|
4
|
+
"create": "Čeština",
|
|
5
|
+
"edit": "Editace",
|
|
6
|
+
"save": "Čeština",
|
|
7
|
+
"cancel": "Hledat",
|
|
8
|
+
"delete": "Čeština",
|
|
9
|
+
"apply": "Hledat",
|
|
10
|
+
"notSet": "Není nastaveno",
|
|
11
|
+
"errors.hasNonAlphaName": "Jméno může obsahovat pouze latinské abecední znaky (a-z) a nevýrazné numerické znaky.",
|
|
12
|
+
"settings.noCurrentValue": "Žádné aktuální hodnoty",
|
|
13
|
+
"settings.default": "výchozí",
|
|
14
|
+
"settings.edit": "Editace",
|
|
15
|
+
"settings.settingLoading": "Čeština",
|
|
16
|
+
"settings.finishEditing": "Úprava povrchové úpravy",
|
|
17
|
+
"settings.valueFor": "Hodnota pro nastavení {name}",
|
|
18
|
+
"actionList.save": "Čeština",
|
|
19
|
+
"actionList.cancel": "Hledat",
|
|
20
|
+
"actionList.create": "Čeština",
|
|
21
|
+
"actionList.actions": "Akce",
|
|
22
|
+
"editableRefdataList.edit": "Editace",
|
|
23
|
+
"editableRefdataList.delete": "Čeština",
|
|
24
|
+
"editableRefdataList.label": "Čeština",
|
|
25
|
+
"editableRefdataList.value": "Hodnota",
|
|
26
|
+
"sasqLookupComponent.mainPane.found": "{total} záznamy nalezeno",
|
|
27
|
+
"noResultsMessage.showFilters": "Zobrazit filtry",
|
|
28
|
+
"customProperties": "Vlastní vlastnosti",
|
|
29
|
+
"customProperties.all": "Vše",
|
|
30
|
+
"customProperties.none": "Čeština",
|
|
31
|
+
"customProperties.label": "Čeština",
|
|
32
|
+
"customProperties.primary": "Základní",
|
|
33
|
+
"customProperties.retired": "Čeština",
|
|
34
|
+
"customProperties.ctx": "Čeština",
|
|
35
|
+
"customProperties.ctx.addContext": "Přidat kontextovou hodnotu {}",
|
|
36
|
+
"customProperties.weight": "Hmotnost objednávky",
|
|
37
|
+
"customProperties.type": "Typ",
|
|
38
|
+
"customProperties.internalFalse": "Na Veřejnosti",
|
|
39
|
+
"customProperties.internalNote": "Vnitřní poznámka",
|
|
40
|
+
"customProperties.internalTrue": "Čeština",
|
|
41
|
+
"customProperties.publicNote": "Veřejná poznámka",
|
|
42
|
+
"customProperties.name": "Jméno",
|
|
43
|
+
"customProperties.description": "Čeština",
|
|
44
|
+
"customProperties.category": "Čeština",
|
|
45
|
+
"customProperties.defaultVisibility": "Výchozí viditelnost",
|
|
46
|
+
"customProperties.noCtxFound": "Nebyly nalezeny žádné odpovídající kontext",
|
|
47
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Čeština",
|
|
48
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Čeština",
|
|
49
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Čeština",
|
|
50
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Čeština",
|
|
51
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Čeština",
|
|
52
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Čeština",
|
|
53
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Definice dat",
|
|
54
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Čeština",
|
|
55
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Datum",
|
|
56
|
+
"customProperties.delete.confirmLabel": "Čeština",
|
|
57
|
+
"customProperties.delete.confirmHeading": "Odstranit vlastní nemovitosti",
|
|
58
|
+
"customProperties.delete.confirmMessage": "Vlastní vlastnost <strong>{name}</strong> bude <strong>deleted</strong>.",
|
|
59
|
+
"customProperties.primaryProperties": "Základní vlastnosti",
|
|
60
|
+
"customProperties.optionalProperties": "Volitelné vlastnosti",
|
|
61
|
+
"customProperties.addProperty": "Přidat nemovitost",
|
|
62
|
+
"customProperties.ctx.title": "Vlastní vlastnosti ({ctx})",
|
|
63
|
+
"customProperty.optionalPropertyHeader": "Nemovitosti {číslo}",
|
|
64
|
+
"customProperty.remove": "Odebrat nemovitost {číslo}",
|
|
65
|
+
"search": "Hledat",
|
|
66
|
+
"yes": "Čeština",
|
|
67
|
+
"no": "Ne",
|
|
68
|
+
"errors.invalidNumber": "Zadejte platný číslo",
|
|
69
|
+
"errors.primaryRetired": "Vlastní vlastnictví nelze být jak primární, tak i v zahraničí",
|
|
70
|
+
"errors.customPropertyNoteInvalidNumber": "platný počet musí být zadán za účelem uložení poznámky",
|
|
71
|
+
"errors.customPropertyInvalidNumber": "Zadejte platný číslo",
|
|
72
|
+
"errors.customPropertyNoteWithoutValue": "Hodnota musí být nastavena pro uložení poznámky",
|
|
73
|
+
"errors.customPropertyValueNotInRange": "Zadejte číslo v rozsahu {min} na {max} a pokračujte",
|
|
74
|
+
"errors.customPropertyDecimalValueNotInRange": "Zadejte číslo v rozsahu {min} na {max} a pokračujte",
|
|
75
|
+
"errors.customPropertyMaxTwoDecimals": "Zadejte číslo maximálně 2 decimals místy",
|
|
76
|
+
"customProperty": "Vlastní nemovitosti",
|
|
77
|
+
"customProperty.name": "Jméno",
|
|
78
|
+
"customProperty.value": "Hodnota",
|
|
79
|
+
"customProperty.internalNote": "Vnitřní poznámka",
|
|
80
|
+
"customProperty.visibility": "Viditelnost",
|
|
81
|
+
"customProperty.publicNote": "Veřejná poznámka",
|
|
82
|
+
"customProperty.internalTrue": "Čeština",
|
|
83
|
+
"customProperty.internalFalse": "Na Veřejnosti",
|
|
84
|
+
"customProperty.filtersApplied": "{count} Použité filtry na zakázku",
|
|
85
|
+
"customProperty.editCustomPropertyFilters": "Upravit vlastní filtry nemovitostí",
|
|
86
|
+
"customProperty.filterBuilder": "Vlastní objektový filtr stavitel",
|
|
87
|
+
"customProperty.filterIndex": "Vlastní filtr vlastností {index}",
|
|
88
|
+
"customProperty.removeFilter": "Odebrat vlastní filtr vlastností {čísl}",
|
|
89
|
+
"customProperty.removeRule": "Odebrat pravidlo {čísl}",
|
|
90
|
+
"customProperty.addFilter": "Přidat vlastní filtr vlastností",
|
|
91
|
+
"customProperty.retiredName": "RETIRED: {name}",
|
|
92
|
+
"customProperty.notSet": "Není nastaveno",
|
|
93
|
+
"operator.isSet": "Je sada",
|
|
94
|
+
"operator.isNotSet": "Není nastaveno",
|
|
95
|
+
"operator.equals": "Čeština",
|
|
96
|
+
"operator.doesNotEqual": "Nerovnatelné",
|
|
97
|
+
"operator.isGreaterThanOrEqual": "Je větší než nebo rovno",
|
|
98
|
+
"operator.isLessThanOrEqual": "Je méně než nebo rovno",
|
|
99
|
+
"operator.isOnOrAfter": "Je na nebo po",
|
|
100
|
+
"operator.isOnOrBefore": "Je na nebo před",
|
|
101
|
+
"operator.is": "Čeština",
|
|
102
|
+
"operator.isNot": "Ne",
|
|
103
|
+
"operator.contains": "Obsahuje",
|
|
104
|
+
"operator.doesNotContain": "Neobsahuje"
|
|
105
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"AND": "UND",
|
|
3
|
+
"OR": "ANHANG",
|
|
4
|
+
"create": "Erstellung",
|
|
5
|
+
"edit": "Bearbeiten",
|
|
6
|
+
"save": "Speichern",
|
|
7
|
+
"cancel": "Abbrechen",
|
|
8
|
+
"delete": "Löschen",
|
|
9
|
+
"apply": "Anwendung",
|
|
10
|
+
"notSet": "Nicht gesetzt",
|
|
11
|
+
"errors.hasNonAlphaName": "Der Name kann nur lateinische alphabetische Zeichen (a-z) und nicht-führende numerische Zeichen enthalten.",
|
|
12
|
+
"settings.noCurrentValue": "Kein aktueller Wert",
|
|
13
|
+
"settings.default": "Standard",
|
|
14
|
+
"settings.edit": "Bearbeiten",
|
|
15
|
+
"settings.settingLoading": "Belastung",
|
|
16
|
+
"settings.finishEditing": "Fertigbearbeitung",
|
|
17
|
+
"settings.valueFor": "Wert für die Einstellung {name}",
|
|
18
|
+
"actionList.save": "Speichern",
|
|
19
|
+
"actionList.cancel": "Abbrechen",
|
|
20
|
+
"actionList.create": "Erstellung",
|
|
21
|
+
"actionList.actions": "Maßnahmen",
|
|
22
|
+
"editableRefdataList.edit": "Bearbeiten",
|
|
23
|
+
"editableRefdataList.delete": "Löschen",
|
|
24
|
+
"editableRefdataList.label": "Bezeichnung",
|
|
25
|
+
"editableRefdataList.value": "Wert",
|
|
26
|
+
"sasqLookupComponent.mainPane.found": "{total} Einträge gefunden",
|
|
27
|
+
"noResultsMessage.showFilters": "Filter anzeigen",
|
|
28
|
+
"customProperties": "Eigene Eigenschaften",
|
|
29
|
+
"customProperties.all": "Alle",
|
|
30
|
+
"customProperties.none": "Keine",
|
|
31
|
+
"customProperties.label": "Bezeichnung",
|
|
32
|
+
"customProperties.primary": "Primäre",
|
|
33
|
+
"customProperties.retired": "Ruhestand",
|
|
34
|
+
"customProperties.ctx": "Kontext",
|
|
35
|
+
"customProperties.ctx.addContext": "Kontext hinzufügen {value}",
|
|
36
|
+
"customProperties.weight": "Bestellgewicht",
|
|
37
|
+
"customProperties.type": "Art",
|
|
38
|
+
"customProperties.internalFalse": "Öffentliche",
|
|
39
|
+
"customProperties.internalNote": "Interne Anmerkung",
|
|
40
|
+
"customProperties.internalTrue": "Intern",
|
|
41
|
+
"customProperties.publicNote": "Anmerkung",
|
|
42
|
+
"customProperties.name": "Name",
|
|
43
|
+
"customProperties.description": "Warenbezeichnung",
|
|
44
|
+
"customProperties.category": "Wählen",
|
|
45
|
+
"customProperties.defaultVisibility": "Standardsichtbarkeit",
|
|
46
|
+
"customProperties.noCtxFound": "Kein übereinstimmender Kontext gefunden",
|
|
47
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBlob": "Blob",
|
|
48
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyBoolean": "Boolen",
|
|
49
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyContainer": "Container",
|
|
50
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyDecimal": "Deko",
|
|
51
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyInteger": "Integer",
|
|
52
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdata": "Referenzen",
|
|
53
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyRefdataDefinition": "Definition der Referenzwerte",
|
|
54
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyText": "Text",
|
|
55
|
+
"customProperties.type.com.k_int.web.toolkit.custprops.types.CustomPropertyLocalDate": "Datum",
|
|
56
|
+
"customProperties.delete.confirmLabel": "Löschen",
|
|
57
|
+
"customProperties.delete.confirmHeading": "Benutzerdefinierte Eigenschaft löschen",
|
|
58
|
+
"customProperties.delete.confirmMessage": "Zollgebiet <strong>{name}</strong> wird <strong>deleted</strong> sein.",
|
|
59
|
+
"customProperties.primaryProperties": "Primäre Eigenschaften",
|
|
60
|
+
"customProperties.optionalProperties": "Optionale Eigenschaften",
|
|
61
|
+
"customProperties.addProperty": "Objekt hinzufügen",
|
|
62
|
+
"customProperties.ctx.title": "Benutzerdefinierte Eigenschaften ({ctx})",
|
|
63
|
+
"customProperty.optionalPropertyHeader": "Immobilien {number}",
|
|
64
|
+
"customProperty.remove": "Objekt entfernen {number}",
|
|
65
|
+
"search": "Suche",
|
|
66
|
+
"yes": "Ja.",
|
|
67
|
+
"no": "Nein",
|
|
68
|
+
"errors.invalidNumber": "Bitte geben Sie eine gültige Nummer ein, um fortzufahren",
|
|
69
|
+
"errors.primaryRetired": "Eine benutzerdefinierte Eigenschaft kann nicht primär und pensioniert werden",
|
|
70
|
+
"errors.customPropertyNoteInvalidNumber": "Eine gültige Nummer muss eingegeben werden, um eine Notiz zu speichern",
|
|
71
|
+
"errors.customPropertyInvalidNumber": "Bitte geben Sie eine gültige Nummer ein, um fortzufahren",
|
|
72
|
+
"errors.customPropertyNoteWithoutValue": "Ein Wert muss gesetzt werden, um eine Notiz zu speichern",
|
|
73
|
+
"errors.customPropertyValueNotInRange": "Bitte geben Sie eine ganze Zahl im Bereich {min} bis {max} ein, um weiter zu gehen",
|
|
74
|
+
"errors.customPropertyDecimalValueNotInRange": "Bitte geben Sie eine Nummer im Bereich {min} bis {max} ein, um weiterzumachen",
|
|
75
|
+
"errors.customPropertyMaxTwoDecimals": "Bitte geben Sie eine Nummer mit maximal 2 Dezimalsstellen ein",
|
|
76
|
+
"customProperty": "Eigenes Eigentum",
|
|
77
|
+
"customProperty.name": "Name",
|
|
78
|
+
"customProperty.value": "Wert",
|
|
79
|
+
"customProperty.internalNote": "Interne Anmerkung",
|
|
80
|
+
"customProperty.visibility": "Sichtbarkeit",
|
|
81
|
+
"customProperty.publicNote": "Anmerkung",
|
|
82
|
+
"customProperty.internalTrue": "Intern",
|
|
83
|
+
"customProperty.internalFalse": "Öffentliche",
|
|
84
|
+
"customProperty.filtersApplied": "{count} benutzerdefinierte Eigenschaften Filter angewandt",
|
|
85
|
+
"customProperty.editCustomPropertyFilters": "Benutzerdefinierte Immobilienfilter bearbeiten",
|
|
86
|
+
"customProperty.filterBuilder": "Benutzerdefinierte Eigenschaft Filter Builder",
|
|
87
|
+
"customProperty.filterIndex": "Benutzerdefinierte Immobilienfilter {index}",
|
|
88
|
+
"customProperty.removeFilter": "Entfernen Sie benutzerdefinierte Eigenschaft filter {number}",
|
|
89
|
+
"customProperty.removeRule": "Regel entfernen {number}",
|
|
90
|
+
"customProperty.addFilter": "Benutzerdefinierte Eigenschaft filter hinzufügen",
|
|
91
|
+
"customProperty.retiredName": "RETIRED: {name}",
|
|
92
|
+
"customProperty.notSet": "Nicht gesetzt",
|
|
93
|
+
"operator.isSet": "Ist eingestellt",
|
|
94
|
+
"operator.isNotSet": "Wird nicht gesetzt",
|
|
95
|
+
"operator.equals": "Gleiche",
|
|
96
|
+
"operator.doesNotEqual": "Nicht gleich",
|
|
97
|
+
"operator.isGreaterThanOrEqual": "Ist größer oder gleich",
|
|
98
|
+
"operator.isLessThanOrEqual": "Ist kleiner oder gleich",
|
|
99
|
+
"operator.isOnOrAfter": "Ist an oder nach",
|
|
100
|
+
"operator.isOnOrBefore": "Ist auf oder vor",
|
|
101
|
+
"operator.is": "I",
|
|
102
|
+
"operator.isNot": "nicht",
|
|
103
|
+
"operator.contains": "Enthält",
|
|
104
|
+
"operator.doesNotContain": "nicht enthalten"
|
|
105
|
+
}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
2
|
+
"AND": "AND",
|
|
3
|
+
"OR": "OR",
|
|
3
4
|
"create": "Create",
|
|
4
5
|
"edit": "Edit",
|
|
5
6
|
"save": "Save",
|
|
6
7
|
"cancel": "Cancel",
|
|
7
8
|
"delete": "Delete",
|
|
9
|
+
"apply": "Apply",
|
|
10
|
+
|
|
11
|
+
"notSet": "Not set",
|
|
8
12
|
|
|
9
13
|
"errors.hasNonAlphaName": "The name can only contain Latin alphabetical characters (a-z) and non-leading numeric characters.",
|
|
10
14
|
|
|
@@ -66,10 +70,58 @@
|
|
|
66
70
|
"customProperties.delete.confirmHeading": "Delete custom property",
|
|
67
71
|
"customProperties.delete.confirmMessage": "Custom property <strong>{name}</strong> will be <strong>deleted</strong>.",
|
|
68
72
|
|
|
73
|
+
"customProperties.primaryProperties": "Primary properties",
|
|
74
|
+
"customProperties.optionalProperties": "Optional properties",
|
|
75
|
+
"customProperties.addProperty": "Add property",
|
|
76
|
+
|
|
77
|
+
"customProperties.ctx.title": "Custom properties ({ctx})",
|
|
78
|
+
|
|
79
|
+
"customProperty.optionalPropertyHeader": "Property {number}",
|
|
80
|
+
"customProperty.remove": "Remove property {number}",
|
|
81
|
+
|
|
69
82
|
"search": "Search",
|
|
70
83
|
"yes": "Yes",
|
|
71
84
|
"no": "No",
|
|
72
85
|
|
|
73
86
|
"errors.invalidNumber": "Please enter a valid number to continue",
|
|
74
|
-
"errors.primaryRetired": "A custom property cannot be both primary and retired"
|
|
87
|
+
"errors.primaryRetired": "A custom property cannot be both primary and retired",
|
|
88
|
+
"errors.customPropertyNoteInvalidNumber": "A valid number must be entered in order to save a note",
|
|
89
|
+
"errors.customPropertyInvalidNumber": "Please enter a valid number to continue",
|
|
90
|
+
"errors.customPropertyNoteWithoutValue": "A value must be set in order to save a note",
|
|
91
|
+
"errors.customPropertyValueNotInRange": "Please enter a whole number in the range {min} to {max} to continue",
|
|
92
|
+
"errors.customPropertyDecimalValueNotInRange": "Please enter a number in the range {min} to {max} to continue",
|
|
93
|
+
"errors.customPropertyMaxTwoDecimals": "Please enter a number with a maximum of 2 decimals places",
|
|
94
|
+
|
|
95
|
+
"customProperty": "Custom property",
|
|
96
|
+
"customProperty.name": "Name",
|
|
97
|
+
"customProperty.value": "Value",
|
|
98
|
+
"customProperty.internalNote": "Internal note",
|
|
99
|
+
"customProperty.visibility": "Visibility",
|
|
100
|
+
"customProperty.publicNote": "Public note",
|
|
101
|
+
"customProperty.internalTrue": "Internal",
|
|
102
|
+
"customProperty.internalFalse": "Public",
|
|
103
|
+
|
|
104
|
+
"customProperty.filtersApplied": "{count} custom properties filters applied",
|
|
105
|
+
"customProperty.editCustomPropertyFilters": "Edit custom property filters",
|
|
106
|
+
"customProperty.filterBuilder": "Custom property filter builder",
|
|
107
|
+
|
|
108
|
+
"customProperty.filterIndex": "Custom property filter {index}",
|
|
109
|
+
"customProperty.removeFilter": "Remove custom property filter {number}",
|
|
110
|
+
"customProperty.removeRule": "Remove rule {number}",
|
|
111
|
+
"customProperty.addFilter": "Add custom property filter",
|
|
112
|
+
|
|
113
|
+
"customProperty.retiredName": "RETIRED: {name}",
|
|
114
|
+
"customProperty.notSet": "Not set",
|
|
115
|
+
"operator.isSet": "Is set",
|
|
116
|
+
"operator.isNotSet": "Is not set",
|
|
117
|
+
"operator.equals": "Equals",
|
|
118
|
+
"operator.doesNotEqual": "Does not equal",
|
|
119
|
+
"operator.isGreaterThanOrEqual": "Is greater than or equal to",
|
|
120
|
+
"operator.isLessThanOrEqual": "Is less than or equal to",
|
|
121
|
+
"operator.isOnOrAfter": "Is on or after",
|
|
122
|
+
"operator.isOnOrBefore": "Is on or before",
|
|
123
|
+
"operator.is": "Is",
|
|
124
|
+
"operator.isNot": "Is not",
|
|
125
|
+
"operator.contains": "Contains",
|
|
126
|
+
"operator.doesNotContain": "Does not contain"
|
|
75
127
|
}
|