@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=\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
- CARDEDITOR_DESTINATIONS=\u041C\u0435\u0436\u0435\u043B\u0456 \u043E\u0440\u044B\u043D\u0434\u0430\u0440
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=\u0416\u0430\u043B\u043F\u044B \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=\u0428\u044B\u043D\u0430\u0439\u044B \u0443\u0430\u049B\u044B\u0442\u0442\u0430 \u0430\u043B\u0434\u044B\u043D \u0430\u043B\u0430 \u049B\u0430\u0440\u0430\u0443
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=\u04AE\u043B\u0433\u0456\u043B\u0456\u043A \u0430\u043B\u0434\u044B\u043D \u0430\u043B\u0430 \u049B\u0430\u0440\u0430\u0443
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=\u0411\u0430\u0441\u0442\u0430\u043F\u049B\u044B \u0442\u0456\u043B
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=\u0415\u0448\u049B\u0430\u0439\u0441\u044B\u0441\u044B
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=\u0422\u0456\u0437\u0456\u043C\u043D\u0435\u043D \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0430\u043B\u044B\u049B \u043C\u04D9\u043D\u0434\u0456 \u0442\u0430\u04A3\u0434\u0430\u0443
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=\u0411\u0430\u0441\u049B\u0430 \u043C\u04D9\u043D\u0434\u0435\u0440
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u043A\u04AF\u043D
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- 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.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=\u049A\u0430\u0437\u0456\u0440, \u043A\u04AF\u043D \u043C\u0435\u043D \u0443\u0430\u049B\u044B\u0442
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- 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
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=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0442\u0456\u043B
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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=\u041C\u04D9\u043D \u0430\u0443\u0434\u0430\u0440\u043C\u0430\u043B\u0430\u0440\u044B
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=\u0421\u0430\u049B\u0442\u0430\u0443
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=\u0411\u043E\u043B\u0434\u044B\u0440\u043C\u0430\u0443
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0442\u0456\u043B
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=\u041C\u04D9\u043D
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=\u0411\u0430\u0441\u049B\u0430 \u0442\u0456\u043B\u0434\u0435\u0440
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=\u0416\u0430\u04A3\u0430\u0440\u0442\u044B\u043B\u043C\u0430\u0493\u0430\u043D
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=\u0416\u0430\u04A3\u0430\u0440\u0442\u044B\u043B\u0434\u044B
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=\u049A\u043E\u0441\u044B\u043C\u0448\u0430 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=\u0422\u0456\u0437\u0456\u043C\u043D\u0435\u043D \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0430\u043B\u044B\u049B \u043C\u04D9\u043D\u0434\u0456 \u0442\u0430\u04A3\u0434\u0430\u0443
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=\u0414\u0438\u043D\u0430\u043C\u0438\u043A\u0430\u043B\u044B\u049B \u043C\u04D9\u043D
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=\u0410\u0493\u044B\u043C\u0434\u0430\u0493\u044B \u0434\u0438\u043D\u0430\u043C\u0438\u043A\u0430\u043B\u044B\u049B \u043C\u04D9\u043D
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=\u041C\u04D9\u043D \u043A\u0430\u0440\u0442\u0430\u043D\u044B\u04A3 \u0442\u0435\u0445\u043D\u0438\u043A\u0430\u043B\u044B\u049B \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440\u0456\u043D\u0434\u0435 \u049B\u043E\u043B\u0434\u0430\u043D\u044B\u043B\u0430\u0434\u044B \u0436\u04D9\u043D\u0435 \u0430\u049B\u044B\u0440\u0493\u044B \u043F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0448\u044B\u043B\u0430\u0440\u0493\u0430 \u043A\u04E9\u0440\u0441\u0435\u0442\u0456\u043B\u043C\u0435\u0443\u0456 \u0442\u0438\u0456\u0441.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=\u0411\u0435\u0442 \u04D9\u043A\u0456\u043C\u0448\u0456\u0441\u0456\u043D\u0456\u04A3 \u043F\u0430\u0440\u0430\u043C\u0435\u0442\u0440\u043B\u0435\u0440\u0456
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=\u04D8\u0434\u0435\u043F\u043A\u0456 \u043C\u04D9\u043D\u0434\u0435\u0440\u0433\u0435 \u049B\u0430\u0439\u0442\u0430\u0440\u0443
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=\u04E8\u0440\u0456\u0441\u0442\u0456 \u049B\u0430\u0440\u0430\u043F \u0448\u044B\u0493\u0443\u0493\u0430 \u0440\u04B1\u049B\u0441\u0430\u0442 \u0435\u0442\u0443
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=\u04E8\u0440\u0456\u0441\u0442\u0456 \u04E9\u04A3\u0434\u0435\u0443\u0433\u0435 \u0440\u04B1\u049B\u0441\u0430\u0442 \u0435\u0442\u0443
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=\u0414\u0438\u043D\u0430\u043C\u0438\u043A\u0430\u043B\u044B\u049B \u043C\u04D9\u043D\u0434\u0435\u0440\u0434\u0456 \u043E\u0440\u043D\u0430\u0442\u0443\u0493\u0430 \u0440\u04B1\u049B\u0441\u0430\u0442 \u0435\u0442\u0443
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=OK
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=\u0411\u043E\u043B\u0434\u044B\u0440\u043C\u0430\u0443
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=\u0411\u0430\u0441\u0442\u0430\u043F\u049B\u044B \u049B\u0430\u043B\u043F\u044B\u043D\u0430 \u043A\u0435\u043B\u0442\u0456\u0440\u0443
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=\u0424\u0430\u0439\u043B\u0434\u0430\u043D \u0431\u0435\u043B\u0433\u0456\u0448\u0435\u043D\u0456 \u0442\u0430\u04A3\u0434\u0430\u0443
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=\u0424\u0430\u0439\u043B\u0434\u0430\u043D \u0442\u0430\u04A3\u0434\u0430\u043B\u0434\u044B
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(\u0415\u0448\u049B\u0430\u0439\u0441\u044B\u0441\u044B)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=\u041C\u04D9\u043D \u0442\u0435\u043A\u0441\u0435\u0440\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044B\u043D\u0430 \u0441\u04D9\u0439\u043A\u0435\u0441 \u043A\u0435\u043B\u043C\u0435\u0439\u0434\u0456.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=\u041C\u04D9\u043D {0} \u0448\u0430\u043C\u0430\u0441\u044B\u043D\u0434\u0430\u0493\u044B \u043C\u0430\u043A\u0441. \u04B1\u0437\u044B\u043D\u0434\u044B\u049B\u0442\u0430\u043D \u0430\u0441\u0430\u0434\u044B.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=\u041C\u04D9\u043D \u043A\u0435\u043C\u0456\u043D\u0434\u0435 {0} \u0442\u0430\u04A3\u0431\u0430\u0434\u0430\u043D \u0442\u04B1\u0440\u0443\u044B \u043A\u0435\u0440\u0435\u043A.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=\u04E8\u0440\u0456\u0441\u0442\u0456 \u043C\u0456\u043D\u0434\u0435\u0442\u0442\u0456 \u0442\u04AF\u0440\u0434\u0435 \u0442\u043E\u043B\u0442\u044B\u0440\u0443 \u049B\u0430\u0436\u0435\u0442. \u041C\u04D9\u0442\u0456\u043D \u0435\u043D\u0433\u0456\u0437\u0456\u04A3\u0456\u0437.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=\u041C\u0456\u043D\u0434\u0435\u0442\u0442\u0456 \u04E9\u0440\u0456\u0441. \u0422\u0430\u0440\u043C\u0430\u049B\u0442\u044B \u0442\u0430\u04A3\u0434\u0430\u04A3\u044B\u0437.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=\u0422\u0456\u0437\u0456\u043C {0} \u0448\u0430\u043C\u0430\u0441\u044B\u043D\u0434\u0430\u0493\u044B \u043C\u0430\u043A\u0441. \u04B1\u0437\u044B\u043D\u0434\u044B\u049B\u0442\u0430\u043D \u0430\u0441\u0430\u0434\u044B
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=\u0422\u0456\u0437\u0456\u043C\u0434\u0435 \u043A\u0435\u043C\u0456\u043D\u0434\u0435 {0} \u0442\u0430\u0440\u043C\u0430\u049B \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=\u041C\u04D9\u043D {0} \u043D\u0435\u043C\u0435\u0441\u0435 \u043E\u0434\u0430\u043D \u043A\u0435\u043C \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=\u041C\u04D9\u043D {0} \u043D\u0435\u043C\u0435\u0441\u0435 \u043E\u0434\u0430\u043D \u0430\u0440\u0442\u044B\u049B \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=\u041C\u04D9\u043D {0} \u0448\u0430\u043C\u0430\u0441\u044B\u043D\u0430\u043D \u043A\u0435\u043C \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=\u041C\u04D9\u043D {0} \u0448\u0430\u043C\u0430\u0441\u044B\u043D\u0430\u043D \u0430\u0440\u0442\u044B\u049B \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=\u041C\u04D9\u043D {0} \u0448\u0430\u043C\u0430\u0441\u044B\u043D\u0430 \u0435\u0441\u0435\u043B\u0456 \u0431\u043E\u043B\u0443\u044B \u043A\u0435\u0440\u0435\u043A
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=\u04E8\u0440\u0456\u0441\u0442\u0456 \u043C\u0456\u043D\u0434\u0435\u0442\u0442\u0456 \u0442\u04AF\u0440\u0434\u0435 \u0442\u043E\u043B\u0442\u044B\u0440\u0443 \u049B\u0430\u0436\u0435\u0442. \u0421\u0430\u043D\u0434\u044B \u0435\u043D\u0433\u0456\u0437\u0456\u04A3\u0456\u0437.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=\u0422\u0430\u04A3\u0434\u0430\u043B\u0434\u044B
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=\u0422\u0430\u04A3\u0434\u0430\u0443\u044B \u0430\u043B\u044B\u043D\u0434\u044B
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=\u0414\u04B1\u0440\u044B\u0441 \u0435\u043C\u0435\u0441 \u0441\u04B1\u0440\u0430\u0443
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
- CARDEDITOR_DESTINATIONS=\uB300\uC0C1
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=\uC77C\uBC18 \uC124\uC815
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=\uB77C\uC774\uBE0C \uBBF8\uB9AC\uBCF4\uAE30
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=\uC0D8\uD50C \uBBF8\uB9AC\uBCF4\uAE30
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=\uC6D0\uC5B4
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=\uC5C6\uC74C
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=\uB9AC\uC2A4\uD2B8\uC5D0\uC11C \uB3D9\uC801 \uAC12 \uC120\uD0DD
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=\uAE30\uD0C0 \uAC12
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\uD604\uC7AC \uC77C\uC790
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- 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.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=\uC9C0\uAE08, \uC77C\uC790 \uBC0F \uC2DC\uAC04
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- 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.
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=\uD604\uC7AC \uC5B8\uC5B4
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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=\uAC12 \uBCC0\uD658
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=\uC800\uC7A5
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=\uCDE8\uC18C
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=\uD604\uC7AC \uC5B8\uC5B4
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=\uAC12
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=\uAE30\uD0C0 \uC5B8\uC5B4
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=\uC5C5\uB370\uC774\uD2B8\uB418\uC9C0 \uC54A\uC74C
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=\uC5C5\uB370\uC774\uD2B8\uB428
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=\uCD94\uAC00 \uC124\uC815
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=\uB9AC\uC2A4\uD2B8\uC5D0\uC11C \uB3D9\uC801 \uAC12 \uC120\uD0DD
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=\uB3D9\uC801 \uAC12
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=\uC2E4\uC81C \uB3D9\uC801 \uAC12
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=\uC774 \uAC12\uC740 \uCE74\uB4DC\uC758 \uAE30\uC220\uC801 \uC124\uC815\uC5D0\uC11C \uC0AC\uC6A9\uB418\uB294 \uAC83\uC73C\uB85C \uCD5C\uC885 \uC0AC\uC6A9\uC790\uC5D0\uAC8C \uD45C\uC2DC\uB418\uBA74 \uC548 \uB429\uB2C8\uB2E4.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=\uC124\uC815
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=\uD398\uC774\uC9C0 \uAD00\uB9AC\uC790 \uC124\uC815
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=\uAE30\uBCF8\uAC12\uC73C\uB85C \uC7AC\uC124\uC815
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=\uD544\uB4DC \uC870\uD68C \uD5C8\uC6A9
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=\uD544\uB4DC \uD3B8\uC9D1 \uD5C8\uC6A9
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=\uB3D9\uC801 \uAC12 \uC124\uC815 \uD5C8\uC6A9
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=\uD655\uC778
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=\uCDE8\uC18C
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=\uC7AC\uC124\uC815
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=\uD30C\uC77C\uC5D0\uC11C \uC544\uC774\uCF58 \uC120\uD0DD
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=\uD30C\uC77C\uC5D0\uC11C \uC120\uD0DD\uB428
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(\uC5C6\uC74C)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=\uAC12\uC774 \uC720\uD6A8\uC131 \uD655\uC778 \uAE30\uC900\uACFC \uC77C\uCE58\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=\uAC12\uC774 \uCD5C\uB300 \uAE38\uC774({0})\uB97C \uCD08\uACFC\uD569\uB2C8\uB2E4.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=\uAC12\uC740 {0}\uC790 \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=\uD544\uB4DC\uC5D0 \uB0B4\uC6A9\uC744 \uC785\uB825\uD574\uC57C \uD569\uB2C8\uB2E4. \uD14D\uC2A4\uD2B8\uB97C \uC785\uB825\uD558\uC2ED\uC2DC\uC624.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=\uD544\uC218 \uD544\uB4DC\uC785\uB2C8\uB2E4. \uD56D\uBAA9\uC744 \uC120\uD0DD\uD558\uC2ED\uC2DC\uC624.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=\uB9AC\uC2A4\uD2B8\uAC00 \uCD5C\uB300 \uAE38\uC774({0})\uB97C \uCD08\uACFC\uD569\uB2C8\uB2E4.
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=\uB9AC\uC2A4\uD2B8\uC5D0 \uCD5C\uC18C {0}\uAC1C \uD56D\uBAA9\uC774 \uC788\uC5B4\uC57C \uD569\uB2C8\uB2E4.
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=\uAC12\uC740 {0} \uC774\uD558\uC5EC\uC57C \uD569\uB2C8\uB2E4.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=\uAC12\uC740 {0} \uC774\uC0C1\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=\uAC12\uC740 {0} \uBBF8\uB9CC\uC774\uC5B4\uC57C \uD569\uB2C8\uB2E4.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=\uAC12\uC740 {0}\uBCF4\uB2E4 \uCEE4\uC57C \uD569\uB2C8\uB2E4.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=\uAC12\uC740 {0}\uC758 \uBC30\uC218\uC5EC\uC57C \uD569\uB2C8\uB2E4.
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=\uD544\uB4DC\uC5D0 \uB0B4\uC6A9\uC744 \uC785\uB825\uD574\uC57C \uD569\uB2C8\uB2E4. \uC22B\uC790\uB97C \uC785\uB825\uD558\uC2ED\uC2DC\uC624.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=\uC120\uD0DD\uB428
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=\uC120\uD0DD \uD574\uC81C\uB428
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=\uC798\uBABB\uB41C \uC694\uCCAD
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
- CARDEDITOR_DESTINATIONS=Paskirties vietos
22
+ EDITOR_DESTINATIONS=Destinations
23
23
 
24
- CARDEDITOR_PARAMETERS_GENERALSETTINGS=Bendrieji parametrai
24
+ EDITOR_PARAMETERS_GENERALSETTINGS=General Settings
25
25
 
26
- CARDEDITOR_PREVIEW_BTN_LIVEPREVIEW=Tiesiogin\u0117 per\u017Ei\u016Bra
26
+ EDITOR_PREVIEW_BTN_LIVEPREVIEW=Live Preview
27
27
 
28
- CARDEDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Pavyzdin\u0117 per\u017Ei\u016Bra
28
+ EDITOR_PREVIEW_BTN_SAMPLEPREVIEW=Sample Preview
29
29
 
30
- CARDEDITOR_ORIGINALLANG=Originalo kalba
30
+ EDITOR_ORIGINALLANG=Original Language
31
31
 
32
- CARDEDITOR_CONTEXT_EMPTY_VAL=N\u0117ra
32
+ EDITOR_CONTEXT_EMPTY_VAL=None
33
33
 
34
- CARDEDITOR_CONTEXT_EMPTY_DESC=S\u0105ra\u0161e i\u0161sirinkite dinamin\u0119 reik\u0161m\u0119
34
+ EDITOR_CONTEXT_EMPTY_DESC=Select a dynamic value from the list
35
35
 
36
- CARDEDITOR_CONTEXT_CARD_INTERNAL_VAL=Kitos reik\u0161m\u0117s
36
+ EDITOR_CONTEXT_EDITOR_INTERNAL_VAL=Other Values
37
37
 
38
- CARDEDITOR_CONTEXT_CARD_TODAY_VAL=\u0160ios dienos data
38
+ EDITOR_CONTEXT_EDITOR_TODAY_VAL=Current date
39
39
 
40
- CARDEDITOR_CONTEXT_CARD_TODAY_DESC=\u0160ios dienos dat\u0105 galima naudoti filtrams arba eilut\u0117ms.
40
+ EDITOR_CONTEXT_EDITOR_TODAY_DESC=The current date can be used for filters or strings.
41
41
 
42
- CARDEDITOR_CONTEXT_CARD_NOW_VAL=Dabar, data ir laikas
42
+ EDITOR_CONTEXT_EDITOR_NOW_VAL=Now, date and time
43
43
 
44
- CARDEDITOR_CONTEXT_CARD_NOW_DESC=\u0160ios dienos dat\u0105 ir laik\u0105 galima naudoti filtrams arba eilut\u0117ms
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=Esama kalba
46
+ EDITOR_CONTEXT_EDITOR_LANG_VAL=Current Language
47
47
 
48
- 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.
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=Ver\u010Di\u0173 konvertavimai
52
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=Save
51
53
 
52
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_SAVE=\u012Era\u0161yti
54
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=Cancel
53
55
 
54
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_BUTTON_CANCEL=At\u0161aukti
56
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Current Language
55
57
 
56
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTLANGUAGE=Esama kalba
58
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Value
57
59
 
58
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_CURRENTVALUE=Reik\u0161m\u0117
60
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Other Languages
59
61
 
60
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_OTHERLANGUAGES=Kitos kalbos
62
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Not Updated
61
63
 
62
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_NOTUPDATED=Neatnaujinta
64
+ EDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Updated
63
65
 
64
- CARDEDITOR_FIELD_TRANSLATION_LIST_POPOVER_LISTITEM_GROUP_UPDATED=Atnaujinta
66
+ EDITOR_FIELD_MORE_SETTINGS=More Settings
65
67
 
66
- CARDEDITOR_FIELD_MORE_SETTINGS=Daugiau parametr\u0173
68
+ EDITOR_SELECT_FROM_LIST=Select a dynamic value from the list
67
69
 
68
- CARDEDITOR_SELECT_FROM_LIST=S\u0105ra\u0161e i\u0161sirinkite dinamin\u0119 reik\u0161m\u0119
70
+ EDITOR_MORE_DYNAMICVALUES=Dynamic Value
69
71
 
70
- CARDEDITOR_MORE_DYNAMICVALUES=Dinamin\u0117 reik\u0161m\u0117
72
+ EDITOR_ACTUAL_VALUE=Actual Dynamic Value
71
73
 
72
- CARDEDITOR_ACTUAL_VALUE=Faktin\u0117 dinamin\u0117 reik\u0161m\u0117
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=\u0160i reik\u0161m\u0117 naudojama kortel\u0117s techniniams parametrams ir netur\u0117t\u0173 b\u016Bti rodoma galutiniams vartotojams.
76
+ EDITOR_MORE_SETTINGS=Settings
75
77
 
76
- CARDEDITOR_MORE_SETTINGS=Parametrai
78
+ EDITOR_MORE_SETTINGS_P_ADMIN=Page Administrator Settings
77
79
 
78
- CARDEDITOR_MORE_SETTINGS_P_ADMIN=Puslapio administratoriaus parametrai
80
+ EDITOR_MORE_SETTINGS_P_ADMIN_RESET=Reset to default values
79
81
 
80
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_RESET=I\u0161 naujo nustatyti numatyt\u0105sias reik\u0161mes
82
+ EDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Allow to see the field
81
83
 
82
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_VISIBLE=Leisti per\u017Ei\u016Br\u0117ti lauk\u0105
84
+ EDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Allow to edit the field
83
85
 
84
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_EDIT=Leisti redaguoti lauk\u0105
86
+ EDITOR_MORE_SETTINGS_P_ADMIN_DYN=Allow to set dynamic values
85
87
 
86
- CARDEDITOR_MORE_SETTINGS_P_ADMIN_DYN=Leisti nustatyti dinamines reik\u0161mes
88
+ EDITOR_MORE_OK=OK
87
89
 
88
- CARDEDITOR_MORE_OK=Gerai
90
+ EDITOR_MORE_CANCEL=Cancel
89
91
 
90
- CARDEDITOR_MORE_CANCEL=At\u0161aukti
92
+ EDITOR_MORE_RESET=Reset
91
93
 
92
- CARDEDITOR_MORE_RESET=Nustatyti i\u0161 naujo
94
+ EDITOR_ICON_CHOOSE=Choose an icon from file
93
95
 
94
- CARDEDITOR_ICON_CHOOSE=Pasirinkite piktogram\u0105 i\u0161 failo
96
+ EDITOR_ICON_SELECTED=Selected from file
95
97
 
96
- CARDEDITOR_ICON_SELECTED=Pasirinkta i\u0161 failo
98
+ EDITOR_ICON_NONE=(None)
97
99
 
98
- CARDEDITOR_ICON_NONE=(N\u0117ra)
100
+ EDITOR_VAL_NOMATCH=Value does not match the validation criteria
99
101
 
100
- CARDEDITOR_VAL_NOMATCH=Reik\u0161m\u0117 neatitinka tikrinimo kriterij\u0173.
102
+ EDITOR_VAL_MAXLENGTH=Value exceeds the maximum length of {0}
101
103
 
102
- CARDEDITOR_VAL_MAXLENGTH=Reik\u0161m\u0117 vir\u0161ija {0} maksimal\u0173 ilg\u012F.
104
+ EDITOR_VAL_MINLENGTH=Value needs to be minimal {0} characters
103
105
 
104
- CARDEDITOR_VAL_MINLENGTH=Reik\u0161m\u0119 turi sudaryti ma\u017Eiausiai {0} simb.
106
+ EDITOR_VAL_TEXTREQ=Field is required, please enter a text
105
107
 
106
- CARDEDITOR_VAL_TEXTREQ=Lauko \u012Fra\u0161as yra b\u016Btinas. \u012Eveskite tekst\u0105.
108
+ EDITOR_VAL_LISTREQ=Field is required, please select 1 item
107
109
 
108
- CARDEDITOR_VAL_LISTREQ=Laukas privalomas. Pasirinkite pozicij\u0105.
110
+ EDITOR_VAL_LISTMAXLENGTH=List exceeds the maximum length of {0}
109
111
 
110
- CARDEDITOR_VAL_LISTMAXLENGTH=S\u0105ra\u0161as vir\u0161ija {0} did\u017Eiausi\u0105 ilg\u012F
112
+ EDITOR_VAL_LISTMINLENGTH=List needs to have minimal {0} items
111
113
 
112
- CARDEDITOR_VAL_LISTMINLENGTH=S\u0105ra\u0161e turi b\u016Bti bent {0} pozicijos
114
+ EDITOR_VAL_MAX=Value needs to be {0} or less
113
115
 
114
- CARDEDITOR_VAL_MAX=Reik\u0161m\u0117 turi b\u016Bti {0} arba ma\u017Eesn\u0117.
116
+ EDITOR_VAL_MIN=Value needs to be {0} or greater
115
117
 
116
- CARDEDITOR_VAL_MIN=Reik\u0161m\u0117 turi b\u016Bti {0} arba didesn\u0117.
118
+ EDITOR_VAL_MAX_E=Value needs to be less than {0}
117
119
 
118
- CARDEDITOR_VAL_MAX_E=Reik\u0161m\u0117 turi b\u016Bti ma\u017Eesn\u0117 negu {0}.
120
+ EDITOR_VAL_MIN_E=Value needs to be greater than {0}
119
121
 
120
- CARDEDITOR_VAL_MIN_E=Reik\u0161m\u0117 turi b\u016Bti didesn\u0117 negu {0}.
122
+ EDITOR_VAL_MULTIPLE=Value needs to be a multiple of {0}
121
123
 
122
- CARDEDITOR_VAL_MULTIPLE=Reik\u0161m\u0119 turi sudaryti {0} suma.
124
+ EDITOR_VAL_NUMBERREQ=Field is required, please enter a number
123
125
 
124
- CARDEDITOR_VAL_NUMBERREQ=Lauko \u012Fra\u0161as yra b\u016Btinas. \u012Eveskite skai\u010Di\u0173.
126
+ EDITOR_ITEM_SELECTED=Selected
125
127
 
126
- CARDEDITOR_ITEM_SELECTED=Pasirinkta
128
+ EDITOR_ITEM_UNSELECTED=Unselected
127
129
 
128
- CARDEDITOR_ITEM_UNSELECTED=Nepasirinkta
130
+ EDITOR_BAD_REQUEST=Bad Request
129
131
 
130
- CARDEDITOR_BAD_REQUEST=Netinkama u\u017Eklausa
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.