@openui5/sap.ui.integration 1.92.0 → 1.93.3
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/.reuse/dep5 +5 -0
- package/THIRDPARTY.txt +10 -1
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +1 -1
- package/src/sap/ui/integration/ActionDefinition.js +1 -1
- package/src/sap/ui/integration/Designtime.js +1 -1
- package/src/sap/ui/integration/Extension.js +1 -1
- package/src/sap/ui/integration/Host.js +16 -18
- package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +2 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
- package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +21 -10
- package/src/sap/ui/integration/cards/Filter.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +126 -0
- package/src/sap/ui/integration/cards/Header.js +1 -1
- package/src/sap/ui/integration/cards/ListContent.js +19 -8
- package/src/sap/ui/integration/cards/ListContentRenderer.js +19 -9
- package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
- package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
- package/src/sap/ui/integration/cards/TableContent.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
- package/src/sap/ui/integration/controls/ActionsStrip.js +184 -0
- package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +3 -1
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +93 -3
- package/src/sap/ui/integration/controls/Microchart.js +1 -1
- package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +5 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +8 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +5 -3
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +0 -69
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +36 -14
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardResourceBundles.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/BaseField.js +27 -15
- package/src/sap/ui/integration/designtime/editor/fields/BooleanField.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/DateField.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/DateTimeField.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/DestinationField.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/IntegerField.js +3 -2
- package/src/sap/ui/integration/designtime/editor/fields/ListField.js +60 -60
- package/src/sap/ui/integration/designtime/editor/fields/NumberField.js +3 -2
- package/src/sap/ui/integration/designtime/editor/fields/Settings.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/StringField.js +3 -4
- package/src/sap/ui/integration/designtime/editor/fields/viz/ColorSelect.js +2 -1
- package/src/sap/ui/integration/designtime/editor/fields/viz/IconSelect.js +1 -1
- package/src/sap/ui/integration/designtime/editor/fields/viz/ShapeSelect.js +1 -1
- package/src/sap/ui/integration/library.js +4 -4
- package/src/sap/ui/integration/messagebundle_ar.properties +69 -55
- package/src/sap/ui/integration/messagebundle_bg.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ca.properties +69 -55
- package/src/sap/ui/integration/messagebundle_cs.properties +69 -55
- package/src/sap/ui/integration/messagebundle_cy.properties +69 -55
- package/src/sap/ui/integration/messagebundle_da.properties +69 -55
- package/src/sap/ui/integration/messagebundle_de.properties +69 -55
- package/src/sap/ui/integration/messagebundle_el.properties +69 -55
- package/src/sap/ui/integration/messagebundle_en.properties +69 -55
- package/src/sap/ui/integration/messagebundle_en_GB.properties +69 -55
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +69 -55
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +69 -55
- package/src/sap/ui/integration/messagebundle_es.properties +69 -55
- package/src/sap/ui/integration/messagebundle_es_MX.properties +69 -55
- package/src/sap/ui/integration/messagebundle_et.properties +69 -55
- package/src/sap/ui/integration/messagebundle_fi.properties +69 -55
- package/src/sap/ui/integration/messagebundle_fr.properties +69 -55
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +69 -55
- package/src/sap/ui/integration/messagebundle_hi.properties +69 -55
- package/src/sap/ui/integration/messagebundle_hr.properties +69 -55
- package/src/sap/ui/integration/messagebundle_hu.properties +69 -55
- package/src/sap/ui/integration/messagebundle_id.properties +69 -55
- package/src/sap/ui/integration/messagebundle_it.properties +69 -55
- package/src/sap/ui/integration/messagebundle_iw.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ja.properties +69 -55
- package/src/sap/ui/integration/messagebundle_kk.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ko.properties +69 -55
- package/src/sap/ui/integration/messagebundle_lt.properties +69 -55
- package/src/sap/ui/integration/messagebundle_lv.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ms.properties +69 -55
- package/src/sap/ui/integration/messagebundle_nl.properties +69 -55
- package/src/sap/ui/integration/messagebundle_no.properties +69 -55
- package/src/sap/ui/integration/messagebundle_pl.properties +69 -55
- package/src/sap/ui/integration/messagebundle_pt.properties +69 -55
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ro.properties +69 -55
- package/src/sap/ui/integration/messagebundle_ru.properties +69 -55
- package/src/sap/ui/integration/messagebundle_sh.properties +69 -55
- package/src/sap/ui/integration/messagebundle_sk.properties +69 -55
- package/src/sap/ui/integration/messagebundle_sl.properties +69 -55
- package/src/sap/ui/integration/messagebundle_sv.properties +69 -55
- package/src/sap/ui/integration/messagebundle_th.properties +69 -55
- package/src/sap/ui/integration/messagebundle_tr.properties +69 -55
- package/src/sap/ui/integration/messagebundle_uk.properties +69 -55
- package/src/sap/ui/integration/messagebundle_vi.properties +69 -55
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +69 -55
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +69 -55
- package/src/sap/ui/integration/model/ContextModel.js +1 -1
- package/src/sap/ui/integration/model/ObservableModel.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +248 -155
- package/src/sap/ui/integration/themes/base/CalendarContent.less +4 -2
- package/src/sap/ui/integration/themes/base/ListContentItem.less +92 -19
- package/src/sap/ui/integration/themes/base/Microchart.less +1 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +1 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +1 -1
- package/src/sap/ui/integration/util/BaseFactory.js +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +1 -1
- package/src/sap/ui/integration/util/BindingResolver.js +2 -2
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +12 -7
- package/src/sap/ui/integration/util/CardActions.js +5 -2
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +1 -1
- package/src/sap/ui/integration/util/DataProvider.js +1 -1
- package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
- package/src/sap/ui/integration/util/Destinations.js +1 -1
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
- package/src/sap/ui/integration/util/FilterBarFactory.js +1 -1
- package/src/sap/ui/integration/util/HeaderFactory.js +1 -1
- package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
- package/src/sap/ui/integration/util/LoadingProvider.js +6 -4
- package/src/sap/ui/integration/util/Manifest.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceManager.js +1 -1
- package/src/sap/ui/integration/util/Utils.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +20 -15
- package/src/sap/ui/integration/widgets/CardRenderer.js +12 -8
- package/src/sap/ui/integration/util/FooterFactory.js +0 -114
|
@@ -19,112 +19,126 @@ CARDS_CALENDAR_LEGEND=\u0428\u0430\u0440\u0442\u0442\u044B \u0431\u0435\u043B\u0
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=\u0422\u0430\u0493\u0430\u0439\u044B\u043D\u0434\u0430\u0443\u043B\u0430\u0440 \u0442\u0456\u0437\u0456\u043C\u0456
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
EDITOR_DESTINATIONS=Destinations
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
EDITOR_ORIGINALLANG=Original Language
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
EDITOR_CONTEXT_EMPTY_VAL=None
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
EDITOR_CONTEXT_EDITOR_LANG_DESC=The current language abbreviation of the current end user. Language and region are separated by an dash. e.g. en-US. The region might be omitted.
|
|
49
|
+
|
|
50
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Value Translations
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
|
|
51
53
|
|
|
52
|
-
|
|
54
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
|
|
61
63
|
|
|
62
|
-
|
|
64
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
EDITOR_FIELD_MORE_SETTINGS=More Settings
|
|
65
67
|
|
|
66
|
-
|
|
68
|
+
EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
EDITOR_MORE_DYNAMICVALUES=Dynamic Value
|
|
69
71
|
|
|
70
|
-
|
|
72
|
+
EDITOR_ACTUAL_VALUE=Actual Dynamic Value
|
|
71
73
|
|
|
72
|
-
|
|
74
|
+
EDITOR_MORE_DYNAMICVALUES_TECHHINT=This value is used in technical settings of a card and should not be shown to end-users.
|
|
73
75
|
|
|
74
|
-
|
|
76
|
+
EDITOR_MORE_SETTINGS=Settings
|
|
75
77
|
|
|
76
|
-
|
|
78
|
+
EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
|
|
77
79
|
|
|
78
|
-
|
|
80
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
|
|
79
81
|
|
|
80
|
-
|
|
82
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
|
|
81
83
|
|
|
82
|
-
|
|
84
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
|
|
83
85
|
|
|
84
|
-
|
|
86
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
|
|
85
87
|
|
|
86
|
-
|
|
88
|
+
EDITOR_MORE_OK=OK
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
EDITOR_MORE_CANCEL=Cancel
|
|
89
91
|
|
|
90
|
-
|
|
92
|
+
EDITOR_MORE_RESET=Reset
|
|
91
93
|
|
|
92
|
-
|
|
94
|
+
EDITOR_ICON_CHOOSE=Choose an icon from file
|
|
93
95
|
|
|
94
|
-
|
|
96
|
+
EDITOR_ICON_SELECTED=Selected from file
|
|
95
97
|
|
|
96
|
-
|
|
98
|
+
EDITOR_ICON_NONE=(None)
|
|
97
99
|
|
|
98
|
-
|
|
100
|
+
EDITOR_VAL_NOMATCH=Value does not match the validation criteria
|
|
99
101
|
|
|
100
|
-
|
|
102
|
+
EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
|
|
101
103
|
|
|
102
|
-
|
|
104
|
+
EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
|
|
103
105
|
|
|
104
|
-
|
|
106
|
+
EDITOR_VAL_TEXTREQ=Field is required, please enter a text
|
|
105
107
|
|
|
106
|
-
|
|
108
|
+
EDITOR_VAL_LISTREQ=Field is required, please select 1 item
|
|
107
109
|
|
|
108
|
-
|
|
110
|
+
EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
|
|
109
111
|
|
|
110
|
-
|
|
112
|
+
EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
EDITOR_VAL_MAX=Value needs to be {0} or less
|
|
113
115
|
|
|
114
|
-
|
|
116
|
+
EDITOR_VAL_MIN=Value needs to be {0} or greater
|
|
115
117
|
|
|
116
|
-
|
|
118
|
+
EDITOR_VAL_MAX_E=Value needs to be less than {0}
|
|
117
119
|
|
|
118
|
-
|
|
120
|
+
EDITOR_VAL_MIN_E=Value needs to be greater than {0}
|
|
119
121
|
|
|
120
|
-
|
|
122
|
+
EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
|
|
121
123
|
|
|
122
|
-
|
|
124
|
+
EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
|
|
123
125
|
|
|
124
|
-
|
|
126
|
+
EDITOR_ITEM_SELECTED=Selected
|
|
125
127
|
|
|
126
|
-
|
|
128
|
+
EDITOR_ITEM_UNSELECTED=Unselected
|
|
127
129
|
|
|
128
|
-
|
|
130
|
+
EDITOR_BAD_REQUEST=Bad Request
|
|
129
131
|
|
|
130
|
-
|
|
132
|
+
CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=\u0411\u0430\u0441\u049B\u0430 \u043C\u04D9\u043D\u0434\u0435\u0440
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u043A\u04AF\u043D
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u043A\u04AF\u043D\u0434\u0456 \u0441\u04AF\u0437\u0433\u0456\u043B\u0435\u0440 \u043D\u0435\u043C\u0435\u0441\u0435 \u0436\u043E\u043B\u0434\u0430\u0440 \u04AF\u0448\u0456\u043D \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0493\u0430 \u0431\u043E\u043B\u0430\u0434\u044B.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=\u049A\u0430\u0437\u0456\u0440, \u043A\u04AF\u043D \u043C\u0435\u043D \u0443\u0430\u049B\u044B\u0442
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u043A\u04AF\u043D \u043C\u0435\u043D \u0443\u0430\u049B\u044B\u0442\u0442\u044B \u0441\u04AF\u0437\u0433\u0456\u043B\u0435\u0440 \u043D\u0435\u043C\u0435\u0441\u0435 \u0436\u043E\u043B\u0434\u0430\u0440 \u04AF\u0448\u0456\u043D \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0493\u0430 \u0431\u043E\u043B\u0430\u0434\u044B
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0442\u0456\u043B
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0430\u049B\u044B\u0440\u0493\u044B \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0448\u044B \u0430\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0442\u0456\u043B\u0456\u043D\u0456\u04A3 \u049B\u044B\u0441\u049B\u0430\u0440\u0493\u0430\u043D \u043D\u04B1\u0441\u049B\u0430\u0441\u044B. \u0422\u0456\u043B \u043C\u0435\u043D \u0430\u0439\u043C\u0430\u049B \u0441\u044B\u0437\u044B\u049B\u0448\u0430\u043C\u0435\u043D \u0431\u04E9\u043B\u0456\u043D\u0435\u0434\u0456. \u041C\u044B\u0441\u0430\u043B\u044B, en-US. \u0410\u0439\u043C\u0430\u049B \u0436\u0430\u0437\u044B\u043B\u043C\u0430\u0443\u044B \u043C\u04AF\u043C\u043A\u0456\u043D.
|
|
@@ -19,112 +19,126 @@ CARDS_CALENDAR_LEGEND=\uBC94\uB840
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=\uC2A4\uCF00\uC904 \uB9AC\uC2A4\uD2B8
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
EDITOR_DESTINATIONS=Destinations
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
EDITOR_ORIGINALLANG=Original Language
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
EDITOR_CONTEXT_EMPTY_VAL=None
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
EDITOR_CONTEXT_EDITOR_LANG_DESC=The current language abbreviation of the current end user. Language and region are separated by an dash. e.g. en-US. The region might be omitted.
|
|
49
|
+
|
|
50
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Value Translations
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
|
|
51
53
|
|
|
52
|
-
|
|
54
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
|
|
61
63
|
|
|
62
|
-
|
|
64
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
EDITOR_FIELD_MORE_SETTINGS=More Settings
|
|
65
67
|
|
|
66
|
-
|
|
68
|
+
EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
EDITOR_MORE_DYNAMICVALUES=Dynamic Value
|
|
69
71
|
|
|
70
|
-
|
|
72
|
+
EDITOR_ACTUAL_VALUE=Actual Dynamic Value
|
|
71
73
|
|
|
72
|
-
|
|
74
|
+
EDITOR_MORE_DYNAMICVALUES_TECHHINT=This value is used in technical settings of a card and should not be shown to end-users.
|
|
73
75
|
|
|
74
|
-
|
|
76
|
+
EDITOR_MORE_SETTINGS=Settings
|
|
75
77
|
|
|
76
|
-
|
|
78
|
+
EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
|
|
77
79
|
|
|
78
|
-
|
|
80
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
|
|
79
81
|
|
|
80
|
-
|
|
82
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
|
|
81
83
|
|
|
82
|
-
|
|
84
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
|
|
83
85
|
|
|
84
|
-
|
|
86
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
|
|
85
87
|
|
|
86
|
-
|
|
88
|
+
EDITOR_MORE_OK=OK
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
EDITOR_MORE_CANCEL=Cancel
|
|
89
91
|
|
|
90
|
-
|
|
92
|
+
EDITOR_MORE_RESET=Reset
|
|
91
93
|
|
|
92
|
-
|
|
94
|
+
EDITOR_ICON_CHOOSE=Choose an icon from file
|
|
93
95
|
|
|
94
|
-
|
|
96
|
+
EDITOR_ICON_SELECTED=Selected from file
|
|
95
97
|
|
|
96
|
-
|
|
98
|
+
EDITOR_ICON_NONE=(None)
|
|
97
99
|
|
|
98
|
-
|
|
100
|
+
EDITOR_VAL_NOMATCH=Value does not match the validation criteria
|
|
99
101
|
|
|
100
|
-
|
|
102
|
+
EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
|
|
101
103
|
|
|
102
|
-
|
|
104
|
+
EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
|
|
103
105
|
|
|
104
|
-
|
|
106
|
+
EDITOR_VAL_TEXTREQ=Field is required, please enter a text
|
|
105
107
|
|
|
106
|
-
|
|
108
|
+
EDITOR_VAL_LISTREQ=Field is required, please select 1 item
|
|
107
109
|
|
|
108
|
-
|
|
110
|
+
EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
|
|
109
111
|
|
|
110
|
-
|
|
112
|
+
EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
EDITOR_VAL_MAX=Value needs to be {0} or less
|
|
113
115
|
|
|
114
|
-
|
|
116
|
+
EDITOR_VAL_MIN=Value needs to be {0} or greater
|
|
115
117
|
|
|
116
|
-
|
|
118
|
+
EDITOR_VAL_MAX_E=Value needs to be less than {0}
|
|
117
119
|
|
|
118
|
-
|
|
120
|
+
EDITOR_VAL_MIN_E=Value needs to be greater than {0}
|
|
119
121
|
|
|
120
|
-
|
|
122
|
+
EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
|
|
121
123
|
|
|
122
|
-
|
|
124
|
+
EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
|
|
123
125
|
|
|
124
|
-
|
|
126
|
+
EDITOR_ITEM_SELECTED=Selected
|
|
125
127
|
|
|
126
|
-
|
|
128
|
+
EDITOR_ITEM_UNSELECTED=Unselected
|
|
127
129
|
|
|
128
|
-
|
|
130
|
+
EDITOR_BAD_REQUEST=Bad Request
|
|
129
131
|
|
|
130
|
-
|
|
132
|
+
CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=\uAE30\uD0C0 \uAC12
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\uD604\uC7AC \uC77C\uC790
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=\uD604\uC7AC \uC77C\uC790\uB97C \uD544\uD130\uB098 \uBB38\uC790\uC5F4\uC5D0 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=\uC9C0\uAE08, \uC77C\uC790 \uBC0F \uC2DC\uAC04
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=\uD604\uC7AC \uC77C\uC790 \uBC0F \uC2DC\uAC04\uC744 \uD544\uD130\uB098 \uBB38\uC790\uC5F4\uC5D0 \uC0AC\uC6A9\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=\uD604\uC7AC \uC5B8\uC5B4
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=\uD604\uC7AC \uCD5C\uC885 \uC0AC\uC6A9\uC790\uC758 \uD604\uC7AC \uC5B8\uC5B4 \uC57D\uC5B4\uC785\uB2C8\uB2E4. \uC5B8\uC5B4\uC640 \uC9C0\uC5ED\uC740 \uB300\uC2DC\uB85C \uAD6C\uBD84\uB429\uB2C8\uB2E4(\uC608\: en-US). \uC9C0\uC5ED\uC740 \uC0DD\uB7B5\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.
|
|
@@ -19,112 +19,126 @@ CARDS_CALENDAR_LEGEND=Legenda
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=Susitikim\u0173 s\u0105ra\u0161as
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
EDITOR_DESTINATIONS=Destinations
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
EDITOR_ORIGINALLANG=Original Language
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
EDITOR_CONTEXT_EMPTY_VAL=None
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
|
|
35
35
|
|
|
36
|
-
|
|
36
|
+
EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
EDITOR_CONTEXT_EDITOR_LANG_DESC=The current language abbreviation of the current end user. Language and region are separated by an dash. e.g. en-US. The region might be omitted.
|
|
49
|
+
|
|
50
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Value Translations
|
|
49
51
|
|
|
50
|
-
|
|
52
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
|
|
51
53
|
|
|
52
|
-
|
|
54
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
|
|
57
59
|
|
|
58
|
-
|
|
60
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
|
|
59
61
|
|
|
60
|
-
|
|
62
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
|
|
61
63
|
|
|
62
|
-
|
|
64
|
+
EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
|
|
63
65
|
|
|
64
|
-
|
|
66
|
+
EDITOR_FIELD_MORE_SETTINGS=More Settings
|
|
65
67
|
|
|
66
|
-
|
|
68
|
+
EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
|
|
67
69
|
|
|
68
|
-
|
|
70
|
+
EDITOR_MORE_DYNAMICVALUES=Dynamic Value
|
|
69
71
|
|
|
70
|
-
|
|
72
|
+
EDITOR_ACTUAL_VALUE=Actual Dynamic Value
|
|
71
73
|
|
|
72
|
-
|
|
74
|
+
EDITOR_MORE_DYNAMICVALUES_TECHHINT=This value is used in technical settings of a card and should not be shown to end-users.
|
|
73
75
|
|
|
74
|
-
|
|
76
|
+
EDITOR_MORE_SETTINGS=Settings
|
|
75
77
|
|
|
76
|
-
|
|
78
|
+
EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
|
|
77
79
|
|
|
78
|
-
|
|
80
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
|
|
79
81
|
|
|
80
|
-
|
|
82
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
|
|
81
83
|
|
|
82
|
-
|
|
84
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
|
|
83
85
|
|
|
84
|
-
|
|
86
|
+
EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
|
|
85
87
|
|
|
86
|
-
|
|
88
|
+
EDITOR_MORE_OK=OK
|
|
87
89
|
|
|
88
|
-
|
|
90
|
+
EDITOR_MORE_CANCEL=Cancel
|
|
89
91
|
|
|
90
|
-
|
|
92
|
+
EDITOR_MORE_RESET=Reset
|
|
91
93
|
|
|
92
|
-
|
|
94
|
+
EDITOR_ICON_CHOOSE=Choose an icon from file
|
|
93
95
|
|
|
94
|
-
|
|
96
|
+
EDITOR_ICON_SELECTED=Selected from file
|
|
95
97
|
|
|
96
|
-
|
|
98
|
+
EDITOR_ICON_NONE=(None)
|
|
97
99
|
|
|
98
|
-
|
|
100
|
+
EDITOR_VAL_NOMATCH=Value does not match the validation criteria
|
|
99
101
|
|
|
100
|
-
|
|
102
|
+
EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
|
|
101
103
|
|
|
102
|
-
|
|
104
|
+
EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
|
|
103
105
|
|
|
104
|
-
|
|
106
|
+
EDITOR_VAL_TEXTREQ=Field is required, please enter a text
|
|
105
107
|
|
|
106
|
-
|
|
108
|
+
EDITOR_VAL_LISTREQ=Field is required, please select 1 item
|
|
107
109
|
|
|
108
|
-
|
|
110
|
+
EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
|
|
109
111
|
|
|
110
|
-
|
|
112
|
+
EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
|
|
111
113
|
|
|
112
|
-
|
|
114
|
+
EDITOR_VAL_MAX=Value needs to be {0} or less
|
|
113
115
|
|
|
114
|
-
|
|
116
|
+
EDITOR_VAL_MIN=Value needs to be {0} or greater
|
|
115
117
|
|
|
116
|
-
|
|
118
|
+
EDITOR_VAL_MAX_E=Value needs to be less than {0}
|
|
117
119
|
|
|
118
|
-
|
|
120
|
+
EDITOR_VAL_MIN_E=Value needs to be greater than {0}
|
|
119
121
|
|
|
120
|
-
|
|
122
|
+
EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
|
|
121
123
|
|
|
122
|
-
|
|
124
|
+
EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
|
|
123
125
|
|
|
124
|
-
|
|
126
|
+
EDITOR_ITEM_SELECTED=Selected
|
|
125
127
|
|
|
126
|
-
|
|
128
|
+
EDITOR_ITEM_UNSELECTED=Unselected
|
|
127
129
|
|
|
128
|
-
|
|
130
|
+
EDITOR_BAD_REQUEST=Bad Request
|
|
129
131
|
|
|
130
|
-
|
|
132
|
+
CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Kitos reik\u0161m\u0117s
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\u0160ios dienos data
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=\u0160ios dienos dat\u0105 galima naudoti filtrams arba eilut\u0117ms.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=Dabar, data ir laikas
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=\u0160ios dienos dat\u0105 ir laik\u0105 galima naudoti filtrams arba eilut\u0117ms
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=Esama kalba
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=Dabartinio galutinio vartotojo pasirinktos kalbos santrumpa. Kalba ir regionas atskiriami br\u016Bk\u0161niu. Pavyzd\u017Eiui, en-US. Region\u0105 galima praleisti.
|