@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.
Files changed (172) hide show
  1. package/.reuse/dep5 +5 -0
  2. package/THIRDPARTY.txt +10 -1
  3. package/package.json +3 -3
  4. package/src/sap/ui/integration/.library +1 -1
  5. package/src/sap/ui/integration/ActionDefinition.js +1 -1
  6. package/src/sap/ui/integration/Designtime.js +1 -1
  7. package/src/sap/ui/integration/Extension.js +1 -1
  8. package/src/sap/ui/integration/Host.js +16 -18
  9. package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
  10. package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
  11. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
  12. package/src/sap/ui/integration/cards/BaseContent.js +2 -2
  13. package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
  14. package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
  15. package/src/sap/ui/integration/cards/ComponentContent.js +21 -10
  16. package/src/sap/ui/integration/cards/Filter.js +1 -1
  17. package/src/sap/ui/integration/cards/Footer.js +126 -0
  18. package/src/sap/ui/integration/cards/Header.js +1 -1
  19. package/src/sap/ui/integration/cards/ListContent.js +19 -8
  20. package/src/sap/ui/integration/cards/ListContentRenderer.js +19 -9
  21. package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
  22. package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
  23. package/src/sap/ui/integration/cards/TableContent.js +1 -1
  24. package/src/sap/ui/integration/cards/TimelineContent.js +1 -1
  25. package/src/sap/ui/integration/cards/WebPageContent.js +1 -1
  26. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
  27. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
  28. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
  29. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
  30. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
  31. package/src/sap/ui/integration/controls/ActionsStrip.js +184 -0
  32. package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
  33. package/src/sap/ui/integration/controls/ListContentItem.js +3 -1
  34. package/src/sap/ui/integration/controls/ListContentItemRenderer.js +93 -3
  35. package/src/sap/ui/integration/controls/Microchart.js +1 -1
  36. package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
  37. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
  38. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +5 -1
  39. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
  40. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +8 -2
  41. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +5 -3
  42. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
  43. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
  44. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
  45. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
  46. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
  47. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
  48. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
  49. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
  50. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
  51. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
  52. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
  53. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
  54. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
  55. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
  56. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
  57. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
  58. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
  59. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
  60. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
  61. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
  62. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
  63. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
  64. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
  65. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
  66. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
  67. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
  68. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
  69. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
  70. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
  71. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
  72. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
  73. package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +0 -69
  74. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
  75. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
  76. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
  77. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
  78. package/src/sap/ui/integration/designtime/editor/CardEditor.js +36 -14
  79. package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -1
  80. package/src/sap/ui/integration/designtime/editor/CardResourceBundles.js +1 -1
  81. package/src/sap/ui/integration/designtime/editor/fields/BaseField.js +27 -15
  82. package/src/sap/ui/integration/designtime/editor/fields/BooleanField.js +1 -1
  83. package/src/sap/ui/integration/designtime/editor/fields/DateField.js +1 -1
  84. package/src/sap/ui/integration/designtime/editor/fields/DateTimeField.js +1 -1
  85. package/src/sap/ui/integration/designtime/editor/fields/DestinationField.js +1 -1
  86. package/src/sap/ui/integration/designtime/editor/fields/IntegerField.js +3 -2
  87. package/src/sap/ui/integration/designtime/editor/fields/ListField.js +60 -60
  88. package/src/sap/ui/integration/designtime/editor/fields/NumberField.js +3 -2
  89. package/src/sap/ui/integration/designtime/editor/fields/Settings.js +1 -1
  90. package/src/sap/ui/integration/designtime/editor/fields/StringField.js +3 -4
  91. package/src/sap/ui/integration/designtime/editor/fields/viz/ColorSelect.js +2 -1
  92. package/src/sap/ui/integration/designtime/editor/fields/viz/IconSelect.js +1 -1
  93. package/src/sap/ui/integration/designtime/editor/fields/viz/ShapeSelect.js +1 -1
  94. package/src/sap/ui/integration/library.js +4 -4
  95. package/src/sap/ui/integration/messagebundle_ar.properties +69 -55
  96. package/src/sap/ui/integration/messagebundle_bg.properties +69 -55
  97. package/src/sap/ui/integration/messagebundle_ca.properties +69 -55
  98. package/src/sap/ui/integration/messagebundle_cs.properties +69 -55
  99. package/src/sap/ui/integration/messagebundle_cy.properties +69 -55
  100. package/src/sap/ui/integration/messagebundle_da.properties +69 -55
  101. package/src/sap/ui/integration/messagebundle_de.properties +69 -55
  102. package/src/sap/ui/integration/messagebundle_el.properties +69 -55
  103. package/src/sap/ui/integration/messagebundle_en.properties +69 -55
  104. package/src/sap/ui/integration/messagebundle_en_GB.properties +69 -55
  105. package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +69 -55
  106. package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +69 -55
  107. package/src/sap/ui/integration/messagebundle_es.properties +69 -55
  108. package/src/sap/ui/integration/messagebundle_es_MX.properties +69 -55
  109. package/src/sap/ui/integration/messagebundle_et.properties +69 -55
  110. package/src/sap/ui/integration/messagebundle_fi.properties +69 -55
  111. package/src/sap/ui/integration/messagebundle_fr.properties +69 -55
  112. package/src/sap/ui/integration/messagebundle_fr_CA.properties +69 -55
  113. package/src/sap/ui/integration/messagebundle_hi.properties +69 -55
  114. package/src/sap/ui/integration/messagebundle_hr.properties +69 -55
  115. package/src/sap/ui/integration/messagebundle_hu.properties +69 -55
  116. package/src/sap/ui/integration/messagebundle_id.properties +69 -55
  117. package/src/sap/ui/integration/messagebundle_it.properties +69 -55
  118. package/src/sap/ui/integration/messagebundle_iw.properties +69 -55
  119. package/src/sap/ui/integration/messagebundle_ja.properties +69 -55
  120. package/src/sap/ui/integration/messagebundle_kk.properties +69 -55
  121. package/src/sap/ui/integration/messagebundle_ko.properties +69 -55
  122. package/src/sap/ui/integration/messagebundle_lt.properties +69 -55
  123. package/src/sap/ui/integration/messagebundle_lv.properties +69 -55
  124. package/src/sap/ui/integration/messagebundle_ms.properties +69 -55
  125. package/src/sap/ui/integration/messagebundle_nl.properties +69 -55
  126. package/src/sap/ui/integration/messagebundle_no.properties +69 -55
  127. package/src/sap/ui/integration/messagebundle_pl.properties +69 -55
  128. package/src/sap/ui/integration/messagebundle_pt.properties +69 -55
  129. package/src/sap/ui/integration/messagebundle_pt_PT.properties +69 -55
  130. package/src/sap/ui/integration/messagebundle_ro.properties +69 -55
  131. package/src/sap/ui/integration/messagebundle_ru.properties +69 -55
  132. package/src/sap/ui/integration/messagebundle_sh.properties +69 -55
  133. package/src/sap/ui/integration/messagebundle_sk.properties +69 -55
  134. package/src/sap/ui/integration/messagebundle_sl.properties +69 -55
  135. package/src/sap/ui/integration/messagebundle_sv.properties +69 -55
  136. package/src/sap/ui/integration/messagebundle_th.properties +69 -55
  137. package/src/sap/ui/integration/messagebundle_tr.properties +69 -55
  138. package/src/sap/ui/integration/messagebundle_uk.properties +69 -55
  139. package/src/sap/ui/integration/messagebundle_vi.properties +69 -55
  140. package/src/sap/ui/integration/messagebundle_zh_CN.properties +69 -55
  141. package/src/sap/ui/integration/messagebundle_zh_TW.properties +69 -55
  142. package/src/sap/ui/integration/model/ContextModel.js +1 -1
  143. package/src/sap/ui/integration/model/ObservableModel.js +1 -1
  144. package/src/sap/ui/integration/schemas/sap-card.json +248 -155
  145. package/src/sap/ui/integration/themes/base/CalendarContent.less +4 -2
  146. package/src/sap/ui/integration/themes/base/ListContentItem.less +92 -19
  147. package/src/sap/ui/integration/themes/base/Microchart.less +1 -1
  148. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +1 -1
  149. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +1 -1
  150. package/src/sap/ui/integration/util/BaseFactory.js +1 -1
  151. package/src/sap/ui/integration/util/BindingHelper.js +1 -1
  152. package/src/sap/ui/integration/util/BindingResolver.js +2 -2
  153. package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +12 -7
  154. package/src/sap/ui/integration/util/CardActions.js +5 -2
  155. package/src/sap/ui/integration/util/CardObserver.js +1 -1
  156. package/src/sap/ui/integration/util/ContentFactory.js +1 -1
  157. package/src/sap/ui/integration/util/DataProvider.js +1 -1
  158. package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
  159. package/src/sap/ui/integration/util/Destinations.js +1 -1
  160. package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
  161. package/src/sap/ui/integration/util/FilterBarFactory.js +1 -1
  162. package/src/sap/ui/integration/util/HeaderFactory.js +1 -1
  163. package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
  164. package/src/sap/ui/integration/util/LoadingProvider.js +6 -4
  165. package/src/sap/ui/integration/util/Manifest.js +1 -1
  166. package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
  167. package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
  168. package/src/sap/ui/integration/util/ServiceManager.js +1 -1
  169. package/src/sap/ui/integration/util/Utils.js +1 -1
  170. package/src/sap/ui/integration/widgets/Card.js +20 -15
  171. package/src/sap/ui/integration/widgets/CardRenderer.js +12 -8
  172. 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
- CARDEDITOR_DESTINATIONS=Cyrchfannau
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=Gosodiadau Cyffredinol
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=Rhagolwg Byw
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Rhagolwg Enghreifftiol
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=Iaith Wreiddiol
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=Dim
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=Dewiswch werth dynamig o'r rhestr
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Gwerthoedd eraill
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Dyddiad cyfredol
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Gellir defnyddio'r dyddiad cyfredol ar gyfer hidlyddion neu linynnau.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=Nawr, dyddiad ac amser
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- CARDEDITOR_CONTEXT_CARD_NOW_DESC=Mae modd defnyddio'r dyddiad ac amser cyfredol ar gyfer hidlyddion neu linynnau.
44
+ EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
45
45
 
46
- CARDEDITOR_CONTEXT_CARD_LANG_VAL=Iaith bresennol
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Cyfieithiadau gwerth
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Cadw
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Canslo
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Iaith bresennol
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Gwerth
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Ieithoedd eraill
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Heb ei ddiweddaru
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Wedi\u2019i ddiweddaru
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=Mwy o osodiadau
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=Dewiswch werth dynamig o'r rhestr
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=Gwerth Dynamig
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=Gwerth Dynamig Go Iawn
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
- CARDEDITOR_MORE_DYNAMICVALUES_TECHHINT=Defnyddir y gwerth hwn yng ngosodiadau technegol cerdyn ac ni ddylid ei ddangos i ddefnyddwyr.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=Gosodiadau
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=Gosodiadau Gweinyddwr Tudalen
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=Ailosod y Gwerthoedd Diofyn
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Caniat\u00E1u gweld y maes
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Caniat\u00E1u golygu'r maes
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=Caniat\u00E1u gosod gwerthoedd dynamig
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=Iawn
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=Canslo
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=Ailosod
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=Dewiswch eicon o ffeil
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=Wedi'i ddewis o ffeil
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(Dim)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=Dydy'r gwerth ddim yn cyfateb i'r meini prawf dilysu.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=Mae''r gwerth yn fwy nag uchafswm gwerth {0}.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=Rhaid i''r gwerth fod yn o leiaf {0} o nodau.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=Mae cofnod yn y maes yn ofynnol. Rhowch destun.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=Mae angen maes. Dewiswch eitem.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=Mae''r rhestr yn fwy nag uchafswm gwerth {0}
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=Mae''n rhaid i''r rhestr gael {0} eitem o leiaf
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=Rhaid i''r gwerth fod yn {0} neu''n llai.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=Rhaid i''r gwerth fod yn {0} neu''n fwy.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=Rhaid i''r gwerth fod yn llai na {0}.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=Rhaid i''r gwerth fod yn fwy na {0}.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=Rhaid i''r gwerth fod yn lluosrif o {0}.
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=Mae cofnod yn y maes yn ofynnol. Rhowch rif.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=Wedi'i Ddewis
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=Heb ei Ddewis
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=Cais gwael
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
- CARDEDITOR_DESTINATIONS=Destinationer
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=Generelle indstillinger
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=Liveeksempel
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Pr\u00F8veeksempel
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=Originalsprog
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=Ingen
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=V\u00E6lg en dynamisk v\u00E6rdi fra listen
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Andre v\u00E6rdier
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Dags dato
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Dags dato kan anvendes for filtre eller strenge.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=Nu, dato og klokkesl\u00E6t
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- CARDEDITOR_CONTEXT_CARD_NOW_DESC=Dags dato og klokkesl\u00E6t kan anvendes for filtre eller strenge
44
+ EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
45
45
 
46
- CARDEDITOR_CONTEXT_CARD_LANG_VAL=Aktuelt sprog
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=V\u00E6rdi overs\u00E6ttelser
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Gem
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Afbryd
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Aktuelt sprog
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=V\u00E6rdi
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Andre sprog
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Ikke opdateret
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Opdateret
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=Flere indstillinger
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=V\u00E6lg en dynamisk v\u00E6rdi fra listen
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=Dynamisk v\u00E6rdi
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=Faktisk dynamisk v\u00E6rdi
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
- CARDEDITOR_MORE_DYNAMICVALUES_TECHHINT=Denne v\u00E6rdi anvendes i tekniske indstillinger af et kort og b\u00F8r ikke vises til slutbrugere.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=Indstillinger
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=Indstillinger for sideadministrator
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=Nulstil til standardv\u00E6rdier
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Tillad, at feltet vises
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Tillad, at feltet redigeres
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=Tillad, at dynamiske v\u00E6rdier indstilles
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=OK
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=Afbryd
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=Nulstil
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=V\u00E6lg et ikon fra fil
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=Valgt fra fil
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(Ingen)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=V\u00E6rdi stemmer ikke overens med valideringskriterierne.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=V\u00E6rdi overskrider den maksimale l\u00E6ngde p\u00E5 {0}.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=V\u00E6rdi skal v\u00E6re p\u00E5 mindst {0} tegn.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=Feltentry er obligatorisk. Indtast en tekst.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=Felt er obligatorisk. V\u00E6lg et element.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=Liste overskrider den maksimale l\u00E6ngde p\u00E5 {0}
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=Liste skal have mindst {0} elementer
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=V\u00E6rdi skal v\u00E6re {0} eller mindre.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=V\u00E6rdi skal v\u00E6re {0} eller st\u00F8rre.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=V\u00E6rdi skal v\u00E6re mindre end {0}.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=V\u00E6rdi skal v\u00E6re st\u00F8rre end {0}.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=V\u00E6rdi skal v\u00E6re et multiplum af {0}
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=Feltentry er obligatorisk. Indtast et tal.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=Valgt
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=Markering fjernet
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=Ugyldig foresp\u00F8rgsel
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
- CARDEDITOR_DESTINATIONS=Destinationen
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=Allgemeine Einstellungen
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=Livevorschau
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Beispielvorschau
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=Originalsprache
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=Keine
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=W\u00E4hlen Sie einen dynamischen Wert aus der Liste aus
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Andere Werte
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=Aktuelles Datum
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- CARDEDITOR_CONTEXT_CARD_TODAY_DESC=Das aktuelle Datum kann f\u00FCr Filter oder Strings verwendet werden.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=Jetzt, Datum und Uhrzeit
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- CARDEDITOR_CONTEXT_CARD_NOW_DESC=Das aktuelle Datum mit Uhrzeit kann f\u00FCr Filter oder Strings verwendet werden.
44
+ EDITOR_CONTEXT_EDITOR_NOW_DESC=The current date and time can be used for filters or strings
45
45
 
46
- CARDEDITOR_CONTEXT_CARD_LANG_VAL=Aktuelle Sprache
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_TITLE=Wert\u00FCbersetzungen
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Sichern
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Abbrechen
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Aktuelle Sprache
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Wert
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Andere Sprachen
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Nicht aktualisiert
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Aktualisiert
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=Weitere Einstellungen
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=W\u00E4hlen Sie einen dynamischen Wert aus der Liste aus
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=Dynamischer Wert
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=Dynamischer Istwert
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
- CARDEDITOR_MORE_DYNAMICVALUES_TECHHINT=Dieser Wert wird in den technischen Einstellungen einer Karte verwendet und sollte den Endbenutzern nicht angezeigt werden.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=Einstellungen
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=Seitenadministratoreinstellungen
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=Auf Standardwerte zur\u00FCcksetzen
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Sichtbarkeit des Felds erlauben
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Bearbeiten des Felds erlauben
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=Dynamische Werte setzen erlauben
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=OK
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=Abbrechen
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=Zur\u00FCcksetzen
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=Symbol aus Datei ausw\u00E4hlen
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=Aus Datei ausgew\u00E4hlt
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(Keines)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=Der Wert entspricht nicht den Validierungskriterien.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=Der Wert \u00FCberschreitet die Maximall\u00E4nge von {0}.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=Der Wert muss aus mindestens {0} Zeichen bestehen.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=Feldeingabe ist erforderlich. Bitte geben Sie einen Text ein.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=Das Feld ist erforderlich. Bitte markieren Sie ein Element.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=Die Liste \u00FCberschreitet die Maximall\u00E4nge von {0}.
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=Liste muss mindestens {0} Elemente haben
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=Wert muss {0} oder kleiner sein.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=Wert muss {0} oder gr\u00F6\u00DFer sein.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=Wert muss kleiner als {0} sein.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=Wert muss gr\u00F6\u00DFer als {0} sein.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=Der Wert muss ein Vielfaches von {0} sein.
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=Feldeingabe ist erforderlich. Bitte geben Sie eine Zahl ein.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=Ausgew\u00E4hlt
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=Nicht ausgew\u00E4hlt
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=Ung\u00FCltige Anforderung
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.