@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=Allwedd
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=Rhestr Apwyntiadau
|
|
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=Gwerthoedd eraill
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Dyddiad cyfredol
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Gellir defnyddio'r dyddiad cyfredol ar gyfer hidlyddion neu linynnau.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=Nawr, dyddiad ac amser
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=Mae modd defnyddio'r dyddiad ac amser cyfredol ar gyfer hidlyddion neu linynnau.
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=Iaith bresennol
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=Talfyriad iaith cyfredol y defnyddiwr cyfredol. Mae iaith a rhanbarth yn cael eu gwahanu gyda dash. Er enghraifft, en-US. Efallai y bydd y rhanbarth yn cael ei hepgor.
|
|
@@ -19,112 +19,126 @@ CARDS_CALENDAR_LEGEND=Forklaring
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=Aftaleliste
|
|
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=Andre v\u00E6rdier
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Dags dato
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Dags dato kan anvendes for filtre eller strenge.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=Nu, dato og klokkesl\u00E6t
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=Dags dato og klokkesl\u00E6t kan anvendes for filtre eller strenge
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=Aktuelt sprog
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=Den aktuelle sprogforkortelse af den aktuelle slutbruger. Sprog og region adskilles af en tankestreg. F.eks. en-US. Regionen kan eventuelt udelades.
|
|
@@ -19,112 +19,126 @@ CARDS_CALENDAR_LEGEND=Legende
|
|
|
19
19
|
|
|
20
20
|
CARDS_CALENDAR_APPOINTMENTS=Terminliste
|
|
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=Andere Werte
|
|
133
|
+
|
|
134
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Aktuelles Datum
|
|
135
|
+
|
|
136
|
+
CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Das aktuelle Datum kann f\u00FCr Filter oder Strings verwendet werden.
|
|
137
|
+
|
|
138
|
+
CARDEDITOR_CONTEXT_CARD_NOW_VAL=Jetzt, Datum und Uhrzeit
|
|
139
|
+
|
|
140
|
+
CARDEDITOR_CONTEXT_CARD_NOW_DESC=Das aktuelle Datum mit Uhrzeit kann f\u00FCr Filter oder Strings verwendet werden.
|
|
141
|
+
|
|
142
|
+
CARDEDITOR_CONTEXT_CARD_LANG_VAL=Aktuelle Sprache
|
|
143
|
+
|
|
144
|
+
CARDEDITOR_CONTEXT_CARD_LANG_DESC=Das aktuelle Sprachk\u00FCrzel des aktuellen Endbenutzers. Sprache und Region sind durch einen Bindestrich getrennt, z.\u00A0B. en-US. Die Region kann ausgelassen werden.
|