@sap/cds 8.0.3 → 8.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/_i18n/i18n_bg.properties +113 -0
  3. package/_i18n/i18n_el.properties +113 -0
  4. package/_i18n/i18n_he.properties +113 -0
  5. package/_i18n/i18n_hr.properties +113 -0
  6. package/_i18n/i18n_kk.properties +113 -0
  7. package/_i18n/i18n_sh.properties +113 -0
  8. package/_i18n/i18n_sk.properties +113 -0
  9. package/_i18n/i18n_sl.properties +113 -0
  10. package/_i18n/i18n_uk.properties +113 -0
  11. package/lib/compile/etc/_localized.js +8 -20
  12. package/lib/dbs/cds-deploy.js +1 -0
  13. package/lib/env/cds-requires.js +1 -0
  14. package/lib/env/defaults.js +1 -1
  15. package/lib/env/plugins.js +22 -6
  16. package/lib/linked/validate.js +1 -1
  17. package/lib/log/cds-log.js +2 -2
  18. package/lib/srv/protocols/hcql.js +5 -5
  19. package/lib/srv/protocols/http.js +23 -11
  20. package/lib/test/expect.js +1 -1
  21. package/lib/utils/cds-test.js +4 -4
  22. package/libx/_runtime/common/composition/insert.js +1 -1
  23. package/libx/_runtime/common/error/utils.js +2 -1
  24. package/libx/_runtime/common/generic/input.js +2 -5
  25. package/libx/_runtime/common/generic/stream.js +18 -3
  26. package/libx/_runtime/common/utils/cqn2cqn4sql.js +5 -2
  27. package/libx/_runtime/db/query/read.js +18 -9
  28. package/libx/_runtime/fiori/lean-draft.js +2 -2
  29. package/libx/_runtime/hana/customBuilder/CustomReferenceBuilder.js +1 -1
  30. package/libx/_runtime/messaging/enterprise-messaging-utils/registerEndpoints.js +2 -2
  31. package/libx/_runtime/messaging/event-broker.js +76 -24
  32. package/libx/common/assert/utils.js +1 -57
  33. package/libx/odata/middleware/batch.js +86 -40
  34. package/libx/odata/middleware/body-parser.js +2 -3
  35. package/libx/odata/middleware/operation.js +11 -11
  36. package/libx/odata/middleware/read.js +1 -1
  37. package/libx/odata/parse/grammar.peggy +6 -1
  38. package/libx/odata/parse/parser.js +1 -1
  39. package/libx/odata/utils/metadata.js +18 -44
  40. package/libx/rest/middleware/error.js +9 -2
  41. package/libx/rest/middleware/parse.js +1 -1
  42. package/package.json +1 -1
  43. package/libx/common/assert/index.js +0 -228
  44. package/libx/common/assert/type-relaxed.js +0 -39
package/CHANGELOG.md CHANGED
@@ -4,6 +4,36 @@
4
4
  - The format is based on [Keep a Changelog](http://keepachangelog.com/).
5
5
  - This project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## Version 8.1.0 - 2024-07-26
8
+
9
+ ### Added
10
+
11
+ - Streaming of data with content type 'application/json'
12
+ - Service annotation `@cds.server.body_parser.limit` and global config option `cds.server.body_parser.limit` allow to configure the maximum request body size in bytes. The default value by express' body parser middleware is 100 kb. See [express docs](https://expressjs.com/en/resources/middleware/body-parser.html) for details.
13
+ - Translations for new languages: bg (Bulgarian), el (Greek), he (Hebrew), hr (Croatian), kk (Kazakh), sk (Slovak), sl (Slovenian), sr (Serbian), uk (Ukrainian)
14
+
15
+ ### Changed
16
+
17
+ - Event Broker: Standardize behaviour for cloud events and header propagation
18
+
19
+ ### Fixed
20
+
21
+ - Erroneous authentication of `enterprise-messaging`
22
+ - `@odata.context` for actions/functions returning an array of <type>
23
+ - `cds-deploy` script terminates if deployment fails
24
+ - Allow backslashes, quotation marks and ampersands in search terms
25
+ - Search compatibility for new parser and old db
26
+ - The server startup no longer yields the `WARNING: Package '@sap/cds' was loaded from different installations:` message in PNPM setups with `--global-bin-dir` on. This happened in BAS, for example on `cds watch/serve` etc.
27
+
28
+ ## Version 8.0.4 - 2024-07-19
29
+
30
+ ### Fixed
31
+
32
+ - Localized views like `localized_de_Books` where accidentially generated for new sqlite service.
33
+ - Atomicity group handling in `$batch`
34
+ - `$batch` im combination with `commit` hooks
35
+ - `continue-on-error` preference for JSON `$batch`
36
+
7
37
  ## Version 8.0.3 - 2024-07-12
8
38
 
9
39
  ### Added
@@ -30,6 +60,7 @@
30
60
 
31
61
  ### Fixed
32
62
 
63
+ - `cds.log(…, 0)` now properly changes log level to `SILENT` if called after the respective logger had already been created.
33
64
  - `cds.test` recommends version 7 of `chai-as-promised`. Version 8 is ESM-only and does not work with `cds.test` at the moment.
34
65
  - Loading of `cds.plugins` now respects the (internal!) property `cds.env.plugins` again.
35
66
  - Proper error handling for invalid draft requests in combination with `$apply`
@@ -129,6 +160,15 @@
129
160
  - Deprecated built-in `cds.compile.to.gql` and `cds.compile.to.graphql` compile targets. These are provided by `@cap-js/graphql` plugin versions >= 0.9.0.
130
161
  - Deprecated API `srv.stream`. Use `SELECT` with a single `cds.LargeBinary` column instead.
131
162
 
163
+ ## Version 7.9.4 - 2024-07-18
164
+
165
+ ### Fixed
166
+
167
+ - View resolving for `cds.features.lean_draft`
168
+ - Error in `enterprise-messaging` deploy script
169
+ - Properly forward path expression infront of lamda functions for `odata-v2` remote services
170
+ - OData queries selecting the same column with `$count=true`
171
+ - Closed higher end of version range for dependency on `cds-types`
132
172
 
133
173
  ## Version 7.9.3 - 2024-06-27
134
174
 
@@ -0,0 +1,113 @@
1
+ #Text Types
2
+ #
3
+ #XACT: Text with explicit importance for accessibility.
4
+ #XBUT: Button
5
+ #XCKL: Checkbox
6
+ #XFLD: Field label
7
+ #XLNK: Hyperlink
8
+ #XMIT: Menu item (Menu item, either top-level like "File" or lower-level like "Save as...")
9
+ #XMSG: Message
10
+ #XRBL: Radio button
11
+ #XSEL: Selection (Values in a drop-down list, or a status. For example: "In Process", "Shipped" or "Open".)
12
+ #XTIT: Title (or heading) of a non-actionable user interface element like a column, wizard, or screen area.
13
+ #XTOL: Explanatory text for an UI element, such as a tooltip, input help.
14
+ #YINS: Instruction for a user, for example, a permanent text on a screen that introduces a group of fields.
15
+ #----------------------------------------------------------------------------------------------------------------------
16
+ #For text elements that are not supposed to be translated, use the text type NOTR
17
+ #----------------------------------------------------------------------------------------------------------------------
18
+ #Recommended pattern
19
+ #
20
+ #<TextType>:<AdditionalContextInformation>
21
+ #If there is a maximum length restriction, please indicate as shown below.
22
+ #<TextType>,<MaximumLength>:<AdditionalContextInformation>
23
+ #----------------------------------------------------------------------------------------------------------------------
24
+ # This is the resource bundle for foundation
25
+ # __ldi.translation.uuid=dd6c5800-b108-11e8-be90-bd1cf6ac87fb
26
+ #----------------------------------------------------------------------------------------------------------------------
27
+
28
+ #XTIT: Created By (Answer to: "Which user has created a certain entity?")
29
+ CreatedBy=\u0421\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u043E \u043E\u0442
30
+
31
+ #XTIT: Created On (Answer to: "When has a certain entity been created?")
32
+ CreatedAt=\u0421\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u043E \u043D\u0430
33
+
34
+ #XTIT: Changed By (Answer to: "Which user has changed a certain entity?")
35
+ ChangedBy=\u041F\u0440\u043E\u043C\u0435\u043D\u0438\u043B
36
+
37
+ #XTIT: Changed On (Answer to: "When has a certain entity been changed?")
38
+ ChangedAt=\u0414\u0430\u0442\u0430 \u043D\u0430 \u043F\u0440\u043E\u043C\u044F\u043D\u0430
39
+
40
+ #XTIT: Currency
41
+ Currency=\u0412\u0430\u043B\u0443\u0442\u0430
42
+
43
+ #XTIT: Currency Code
44
+ CurrencyCode=\u041A\u043E\u0434 \u043D\u0430 \u0432\u0430\u043B\u0443\u0442\u0430
45
+
46
+ #XTIT: Currency Code Description
47
+ CurrencyCode.Description=\u041A\u043E\u0434 \u043D\u0430 \u0432\u0430\u043B\u0443\u0442\u0430 \u0441\u044A\u0433\u043B\u0430\u0441\u043D\u043E ISO 4217
48
+
49
+ #XTIT: Currency Symbol
50
+ CurrencySymbol=\u0421\u0438\u043C\u0432\u043E\u043B \u043D\u0430 \u0432\u0430\u043B\u0443\u0442\u0430
51
+
52
+ #XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
53
+ CurrencyMinorUnit=\u0412\u0430\u043B\u0443\u0442\u0430 \u2013 \u0427\u0430\u0441\u0442\u0438 \u043E\u0442 \u0441\u043F\u043E\u043C\u0430\u0433\u0430\u0442\u0435\u043B\u043D\u0430 \u0435\u0434\u0438\u043D\u0438\u0446\u0430
54
+
55
+ #XTIT: Country/Region
56
+ Country=\u0414\u044A\u0440\u0436\u0430\u0432\u0430/\u0440\u0435\u0433\u0438\u043E\u043D
57
+
58
+ #XTIT: Country/Region Code
59
+ CountryCode=\u041A\u043E\u0434 \u043D\u0430 \u0434\u044A\u0440\u0436\u0430\u0432\u0430/\u0440\u0435\u0433\u0438\u043E\u043D
60
+
61
+ #XTIT: Country/Region Code Description
62
+ CountryCode.Description=\u041A\u043E\u0434 \u043D\u0430 \u0434\u044A\u0440\u0436\u0430\u0432\u0430/\u0440\u0435\u0433\u0438\u043E\u043D \u0441\u044A\u0433\u043B\u0430\u0441\u043D\u043E ISO 3166-1
63
+
64
+ #XTIT: Language
65
+ Language=\u0415\u0437\u0438\u043A
66
+
67
+ #XTIT: Language Code
68
+ LanguageCode=\u0415\u0437\u0438\u043A\u043E\u0432 \u043A\u043E\u0434
69
+
70
+ #XTIT: Language Code Description
71
+ LanguageCode.Description=\u0415\u0437\u0438\u043A\u043E\u0432 \u043A\u043E\u0434 \u0441\u044A\u0433\u043B\u0430\u0441\u043D\u043E ISO 639-1
72
+
73
+ #XTIT Time zone code
74
+ TimeZoneCode=\u041A\u043E\u0434 \u043D\u0430 \u0447\u0430\u0441\u043E\u0432\u0438 \u043F\u043E\u044F\u0441
75
+
76
+ #XTIT: User Identifier
77
+ UserID=\u0418\u0414 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B
78
+
79
+ #XTIT: Any kind of name
80
+ Name=\u0418\u043C\u0435
81
+
82
+ #XTIT: Any kind of description
83
+ Description=\u041E\u043F\u0438\u0441\u0430\u043D\u0438\u0435
84
+
85
+ #XTOL: A user's unique Indentifier
86
+ UserID.Description=\u0415\u0434\u043D\u043E\u0437\u043D\u0430\u0447\u0435\u043D \u0418\u0414 \u043D\u0430 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B
87
+
88
+ #XTIT: Admin data for a draft document
89
+ Draft_DraftAdministrativeData=\u0427\u0435\u0440\u043D\u043E\u0432\u0430 \u043D\u0430 \u0430\u0434\u043C\u0438\u043D\u0438\u0441\u0442\u0440\u0430\u0442\u0438\u0432\u043D\u0438 \u0434\u0430\u043D\u043D\u0438
90
+
91
+ #XTIT: Technical ID of a draft document
92
+ Draft_DraftUUID=\u0427\u0435\u0440\u043D\u043E\u0432\u0430 (\u0422\u0435\u0445\u043D\u0438\u0447\u0435\u0441\u043A\u0438 \u0418\u0414)
93
+
94
+ #XTIT: Creation time of a draft
95
+ Draft_CreationDateTime=\u0414\u0430\u0442\u0430 \u043D\u0430 \u0441\u044A\u0437\u0434\u0430\u0432\u0430\u043D\u0435 \u043D\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0430
96
+
97
+ #XTIT: User created the draft
98
+ Draft_CreatedByUser=\u0421\u044A\u0437\u0434\u0430\u0442\u0435\u043B \u043D\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0430
99
+
100
+ #XTIT: The current user (me) created the draft
101
+ Draft_DraftIsCreatedByMe=\u0427\u0435\u0440\u043D\u043E\u0432\u0430, \u0441\u044A\u0437\u0434\u0430\u0434\u0435\u043D\u0430 \u043E\u0442 \u043C\u0435\u043D
102
+
103
+ #XTIT: Time a draft was last changed on
104
+ Draft_LastChangeDateTime=\u0414\u0430\u0442\u0430 \u043D\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u043F\u0440\u043E\u043C\u044F\u043D\u0430 \u043D\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0430
105
+
106
+ #XTIT: User that changed the draft last
107
+ Draft_LastChangedByUser=\u0410\u0432\u0442\u043E\u0440 \u043D\u0430 \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0430 \u043F\u0440\u043E\u043C\u044F\u043D\u0430 \u043D\u0430 \u0447\u0435\u0440\u043D\u043E\u0432\u0430
108
+
109
+ #XTIT: User that is working on the draft
110
+ Draft_InProcessByUser=\u0427\u0435\u0440\u043D\u043E\u0432\u0430\u0442\u0430 \u0441\u0435 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0432\u0430 \u043E\u0442
111
+
112
+ #XTIT: The current user (me) is working on the draft
113
+ Draft_DraftIsProcessedByMe=\u0427\u0435\u0440\u043D\u043E\u0432\u0430\u0442\u0430 \u0441\u0435 \u043E\u0431\u0440\u0430\u0431\u043E\u0442\u0432\u0430 \u043E\u0442 \u043C\u0435\u043D
@@ -0,0 +1,113 @@
1
+ #Text Types
2
+ #
3
+ #XACT: Text with explicit importance for accessibility.
4
+ #XBUT: Button
5
+ #XCKL: Checkbox
6
+ #XFLD: Field label
7
+ #XLNK: Hyperlink
8
+ #XMIT: Menu item (Menu item, either top-level like "File" or lower-level like "Save as...")
9
+ #XMSG: Message
10
+ #XRBL: Radio button
11
+ #XSEL: Selection (Values in a drop-down list, or a status. For example: "In Process", "Shipped" or "Open".)
12
+ #XTIT: Title (or heading) of a non-actionable user interface element like a column, wizard, or screen area.
13
+ #XTOL: Explanatory text for an UI element, such as a tooltip, input help.
14
+ #YINS: Instruction for a user, for example, a permanent text on a screen that introduces a group of fields.
15
+ #----------------------------------------------------------------------------------------------------------------------
16
+ #For text elements that are not supposed to be translated, use the text type NOTR
17
+ #----------------------------------------------------------------------------------------------------------------------
18
+ #Recommended pattern
19
+ #
20
+ #<TextType>:<AdditionalContextInformation>
21
+ #If there is a maximum length restriction, please indicate as shown below.
22
+ #<TextType>,<MaximumLength>:<AdditionalContextInformation>
23
+ #----------------------------------------------------------------------------------------------------------------------
24
+ # This is the resource bundle for foundation
25
+ # __ldi.translation.uuid=dd6c5800-b108-11e8-be90-bd1cf6ac87fb
26
+ #----------------------------------------------------------------------------------------------------------------------
27
+
28
+ #XTIT: Created By (Answer to: "Which user has created a certain entity?")
29
+ CreatedBy=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u0391\u03C0\u03CC
30
+
31
+ #XTIT: Created On (Answer to: "When has a certain entity been created?")
32
+ CreatedAt=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u03A3\u03C4\u03B9\u03C2
33
+
34
+ #XTIT: Changed By (Answer to: "Which user has changed a certain entity?")
35
+ ChangedBy=\u0386\u03BB\u03BB\u03B1\u03BE\u03B5 \u0391\u03C0\u03CC
36
+
37
+ #XTIT: Changed On (Answer to: "When has a certain entity been changed?")
38
+ ChangedAt=\u0391\u03BB\u03BB\u03B1\u03BE\u03B5 \u03A3\u03C4\u03B9\u03C2
39
+
40
+ #XTIT: Currency
41
+ Currency=\u039D\u03CC\u03BC\u03B9\u03C3\u03BC\u03B1
42
+
43
+ #XTIT: Currency Code
44
+ CurrencyCode=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u039D\u03BF\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2
45
+
46
+ #XTIT: Currency Code Description
47
+ CurrencyCode.Description=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03BD\u03BF\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03BA\u03B1\u03B8\u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC ISO 4217
48
+
49
+ #XTIT: Currency Symbol
50
+ CurrencySymbol=\u03A3\u03CD\u03BC\u03B2\u03BF\u03BB\u03BF \u039D\u03BF\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2
51
+
52
+ #XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
53
+ CurrencyMinorUnit=\u039A\u03BB\u03AC\u03C3\u03BC\u03B1\u03C4\u03B1 \u039C\u03B9\u03BA\u03C1\u03AE\u03C2 \u039C\u03BF\u03BD\u03AC\u03B4\u03B1\u03C2 \u039D\u03BF\u03BC\u03AF\u03C3\u03BC\u03B1\u03C4\u03BF\u03C2
54
+
55
+ #XTIT: Country/Region
56
+ Country=\u03A7\u03CE\u03C1\u03B1/\u03A0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE
57
+
58
+ #XTIT: Country/Region Code
59
+ CountryCode=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03A7\u03CE\u03C1\u03B1\u03C2/\u03A0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2
60
+
61
+ #XTIT: Country/Region Code Description
62
+ CountryCode.Description=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C7\u03CE\u03C1\u03B1\u03C2/\u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC ISO 3166-1
63
+
64
+ #XTIT: Language
65
+ Language=\u0393\u03BB\u03CE\u03C3\u03C3\u03B1
66
+
67
+ #XTIT: Language Code
68
+ LanguageCode=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u0393\u03BB\u03CE\u03C3\u03C3\u03B1\u03C2
69
+
70
+ #XTIT: Language Code Description
71
+ LanguageCode.Description=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C7\u03CE\u03C1\u03B1\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03BF\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC ISO 639-1
72
+
73
+ #XTIT Time zone code
74
+ TimeZoneCode=\u039A\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u0396\u03CE\u03BD\u03B7\u03C2 \u038F\u03C1\u03B1\u03C2
75
+
76
+ #XTIT: User Identifier
77
+ UserID=\u0399D \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7
78
+
79
+ #XTIT: Any kind of name
80
+ Name=\u038C\u03BD\u03BF\u03BC\u03B1
81
+
82
+ #XTIT: Any kind of description
83
+ Description=\u03A0\u03B5\u03C1\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE
84
+
85
+ #XTOL: A user's unique Indentifier
86
+ UserID.Description=\u039C\u03BF\u03BD\u03B1\u03B4\u03B9\u03BA\u03CC ID \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7
87
+
88
+ #XTIT: Admin data for a draft document
89
+ Draft_DraftAdministrativeData=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03B1 \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u0394\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1
90
+
91
+ #XTIT: Technical ID of a draft document
92
+ Draft_DraftUUID=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF (\u03A4\u03B5\u03C7\u03BD\u03B9\u03BA\u03CC ID)
93
+
94
+ #XTIT: Creation time of a draft
95
+ Draft_CreationDateTime=\u0397\u03BC/\u03BD\u03AF\u03B1 \u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF\u03C5
96
+
97
+ #XTIT: User created the draft
98
+ Draft_CreatedByUser=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF \u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u0391\u03C0\u03CC
99
+
100
+ #XTIT: The current user (me) created the draft
101
+ Draft_DraftIsCreatedByMe=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF \u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5 \u0391\u03C0\u03CC \u0395\u03BC\u03AD\u03BD\u03B1
102
+
103
+ #XTIT: Time a draft was last changed on
104
+ Draft_LastChangeDateTime=\u0397\u03BC/\u03BD\u03AF\u03B1 \u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1\u03C2 \u0391\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2 \u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF\u03C5
105
+
106
+ #XTIT: User that changed the draft last
107
+ Draft_LastChangedByUser=\u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u0391\u03BB\u03BB\u03B1\u03B3\u03AE \u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF\u03C5 \u0391\u03C0\u03CC
108
+
109
+ #XTIT: User that is working on the draft
110
+ Draft_InProcessByUser=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF \u03A3\u03B5 \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u0391\u03C0\u03CC
111
+
112
+ #XTIT: The current user (me) is working on the draft
113
+ Draft_DraftIsProcessedByMe=\u03A0\u03C1\u03CC\u03C7\u03B5\u03B9\u03C1\u03BF \u03A3\u03B5 \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u0391\u03C0\u03CC \u0395\u03BC\u03AD\u03BD\u03B1
@@ -0,0 +1,113 @@
1
+ #Text Types
2
+ #
3
+ #XACT: Text with explicit importance for accessibility.
4
+ #XBUT: Button
5
+ #XCKL: Checkbox
6
+ #XFLD: Field label
7
+ #XLNK: Hyperlink
8
+ #XMIT: Menu item (Menu item, either top-level like "File" or lower-level like "Save as...")
9
+ #XMSG: Message
10
+ #XRBL: Radio button
11
+ #XSEL: Selection (Values in a drop-down list, or a status. For example: "In Process", "Shipped" or "Open".)
12
+ #XTIT: Title (or heading) of a non-actionable user interface element like a column, wizard, or screen area.
13
+ #XTOL: Explanatory text for an UI element, such as a tooltip, input help.
14
+ #YINS: Instruction for a user, for example, a permanent text on a screen that introduces a group of fields.
15
+ #----------------------------------------------------------------------------------------------------------------------
16
+ #For text elements that are not supposed to be translated, use the text type NOTR
17
+ #----------------------------------------------------------------------------------------------------------------------
18
+ #Recommended pattern
19
+ #
20
+ #<TextType>:<AdditionalContextInformation>
21
+ #If there is a maximum length restriction, please indicate as shown below.
22
+ #<TextType>,<MaximumLength>:<AdditionalContextInformation>
23
+ #----------------------------------------------------------------------------------------------------------------------
24
+ # This is the resource bundle for foundation
25
+ # __ldi.translation.uuid=dd6c5800-b108-11e8-be90-bd1cf6ac87fb
26
+ #----------------------------------------------------------------------------------------------------------------------
27
+
28
+ #XTIT: Created By (Answer to: "Which user has created a certain entity?")
29
+ CreatedBy=\u05E0\u05D5\u05E6\u05E8 \u05E2\u05DC-\u05D9\u05D3\u05D9
30
+
31
+ #XTIT: Created On (Answer to: "When has a certain entity been created?")
32
+ CreatedAt=\u05E0\u05D5\u05E6\u05E8 \u05D1\u05EA\u05D0\u05E8\u05D9\u05DA
33
+
34
+ #XTIT: Changed By (Answer to: "Which user has changed a certain entity?")
35
+ ChangedBy=\u05E9\u05D5\u05E0\u05D4 \u05E2\u05DC-\u05D9\u05D3\u05D9
36
+
37
+ #XTIT: Changed On (Answer to: "When has a certain entity been changed?")
38
+ ChangedAt=\u05E9\u05D5\u05E0\u05D4 \u05D1\u05EA\u05D0\u05E8\u05D9\u05DA
39
+
40
+ #XTIT: Currency
41
+ Currency=\u05DE\u05D8\u05D1\u05E2
42
+
43
+ #XTIT: Currency Code
44
+ CurrencyCode=\u05E7\u05D5\u05D3 \u05DE\u05D8\u05D1\u05E2
45
+
46
+ #XTIT: Currency Code Description
47
+ CurrencyCode.Description=\u05E7\u05D5\u05D3 \u05DE\u05D8\u05D1\u05E2 \u05DB\u05E4\u05D9 \u05E9\u05E6\u05D5\u05D9\u05DF \u05E2\u05DC-\u05D9\u05D3\u05D9 ISO 4217
48
+
49
+ #XTIT: Currency Symbol
50
+ CurrencySymbol=\u05E1\u05DE\u05DC \u05DE\u05D8\u05D1\u05E2
51
+
52
+ #XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
53
+ CurrencyMinorUnit=\u05D7\u05DC\u05E7\u05D9 \u05D9\u05D7\u05D9\u05D3\u05D4 \u05DE\u05E9\u05E0\u05D9\u05EA \u05E9\u05DC \u05DE\u05D8\u05D1\u05E2
54
+
55
+ #XTIT: Country/Region
56
+ Country=\u05DE\u05D3\u05D9\u05E0\u05D4/\u05D0\u05D6\u05D5\u05E8
57
+
58
+ #XTIT: Country/Region Code
59
+ CountryCode=\u05E7\u05D5\u05D3 \u05DE\u05D3\u05D9\u05E0\u05D4/\u05D0\u05D6\u05D5\u05E8
60
+
61
+ #XTIT: Country/Region Code Description
62
+ CountryCode.Description=\u05DE\u05D3\u05D9\u05E0\u05D4/\u05D0\u05D6\u05D5\u05E8 \u05DB\u05E4\u05D9 \u05E9\u05E6\u05D5\u05D9\u05DF \u05E2\u05DC-\u05D9\u05D3\u05D9 ISO 3166-1
63
+
64
+ #XTIT: Language
65
+ Language=\u05E9\u05E4\u05D4
66
+
67
+ #XTIT: Language Code
68
+ LanguageCode=\u05E7\u05D5\u05D3 \u05E9\u05E4\u05D4
69
+
70
+ #XTIT: Language Code Description
71
+ LanguageCode.Description=\u05E7\u05D5\u05D3 \u05E9\u05E4\u05D4 \u05DB\u05E4\u05D9 \u05E9\u05E6\u05D5\u05D9\u05DF \u05E2\u05DC-\u05D9\u05D3\u05D9 ISO 639-1
72
+
73
+ #XTIT Time zone code
74
+ TimeZoneCode=\u05E7\u05D5\u05D3 \u05D0\u05D6\u05D5\u05E8 \u05D6\u05DE\u05DF
75
+
76
+ #XTIT: User Identifier
77
+ UserID=\u05D6\u05D9\u05D4\u05D5\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9
78
+
79
+ #XTIT: Any kind of name
80
+ Name=\u05E9\u05DD
81
+
82
+ #XTIT: Any kind of description
83
+ Description=\u05EA\u05D9\u05D0\u05D5\u05E8
84
+
85
+ #XTOL: A user's unique Indentifier
86
+ UserID.Description=\u05D6\u05D9\u05D4\u05D5\u05D9 \u05D9\u05D9\u05D7\u05D5\u05D3\u05D9 \u05E9\u05DC \u05DE\u05E9\u05EA\u05DE\u05E9
87
+
88
+ #XTIT: Admin data for a draft document
89
+ Draft_DraftAdministrativeData=\u05E0\u05EA\u05D5\u05E0\u05D9 \u05DE\u05E0\u05D4\u05DC\u05D9\u05D9\u05DD \u05E9\u05DC \u05D8\u05D9\u05D5\u05D8\u05D4
90
+
91
+ #XTIT: Technical ID of a draft document
92
+ Draft_DraftUUID=\u05D8\u05D9\u05D5\u05D8\u05D4 (\u05D6\u05D9\u05D4\u05D5\u05D9 \u05D8\u05DB\u05E0\u05D9)
93
+
94
+ #XTIT: Creation time of a draft
95
+ Draft_CreationDateTime=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05E0\u05D5\u05E6\u05E8\u05D4 \u05D1\u05EA\u05D0\u05E8\u05D9\u05DA
96
+
97
+ #XTIT: User created the draft
98
+ Draft_CreatedByUser=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05E0\u05D5\u05E6\u05E8\u05D4 \u05E2\u05DC-\u05D9\u05D3\u05D9
99
+
100
+ #XTIT: The current user (me) created the draft
101
+ Draft_DraftIsCreatedByMe=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05E0\u05D5\u05E6\u05E8\u05D9 \u05E2\u05DC-\u05D9\u05D3\u05D9
102
+
103
+ #XTIT: Time a draft was last changed on
104
+ Draft_LastChangeDateTime=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05E9\u05D5\u05E0\u05EA\u05D4 \u05DC\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 \u05D1\u05EA\u05D0\u05E8\u05D9\u05DA
105
+
106
+ #XTIT: User that changed the draft last
107
+ Draft_LastChangedByUser=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05E9\u05D5\u05E0\u05EA\u05D4 \u05DC\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 \u05E2\u05DC-\u05D9\u05D3\u05D9
108
+
109
+ #XTIT: User that is working on the draft
110
+ Draft_InProcessByUser=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA \u05E2\u05DC-\u05D9\u05D3\u05D9
111
+
112
+ #XTIT: The current user (me) is working on the draft
113
+ Draft_DraftIsProcessedByMe=\u05D8\u05D9\u05D5\u05D8\u05D4 \u05D1\u05EA\u05D4\u05DC\u05D9\u05DA \u05E2\u05DC-\u05D9\u05D3\u05D9
@@ -0,0 +1,113 @@
1
+ #Text Types
2
+ #
3
+ #XACT: Text with explicit importance for accessibility.
4
+ #XBUT: Button
5
+ #XCKL: Checkbox
6
+ #XFLD: Field label
7
+ #XLNK: Hyperlink
8
+ #XMIT: Menu item (Menu item, either top-level like "File" or lower-level like "Save as...")
9
+ #XMSG: Message
10
+ #XRBL: Radio button
11
+ #XSEL: Selection (Values in a drop-down list, or a status. For example: "In Process", "Shipped" or "Open".)
12
+ #XTIT: Title (or heading) of a non-actionable user interface element like a column, wizard, or screen area.
13
+ #XTOL: Explanatory text for an UI element, such as a tooltip, input help.
14
+ #YINS: Instruction for a user, for example, a permanent text on a screen that introduces a group of fields.
15
+ #----------------------------------------------------------------------------------------------------------------------
16
+ #For text elements that are not supposed to be translated, use the text type NOTR
17
+ #----------------------------------------------------------------------------------------------------------------------
18
+ #Recommended pattern
19
+ #
20
+ #<TextType>:<AdditionalContextInformation>
21
+ #If there is a maximum length restriction, please indicate as shown below.
22
+ #<TextType>,<MaximumLength>:<AdditionalContextInformation>
23
+ #----------------------------------------------------------------------------------------------------------------------
24
+ # This is the resource bundle for foundation
25
+ # __ldi.translation.uuid=dd6c5800-b108-11e8-be90-bd1cf6ac87fb
26
+ #----------------------------------------------------------------------------------------------------------------------
27
+
28
+ #XTIT: Created By (Answer to: "Which user has created a certain entity?")
29
+ CreatedBy=Stvorio
30
+
31
+ #XTIT: Created On (Answer to: "When has a certain entity been created?")
32
+ CreatedAt=Stvoreno
33
+
34
+ #XTIT: Changed By (Answer to: "Which user has changed a certain entity?")
35
+ ChangedBy=Promijenio
36
+
37
+ #XTIT: Changed On (Answer to: "When has a certain entity been changed?")
38
+ ChangedAt=Promijenjeno
39
+
40
+ #XTIT: Currency
41
+ Currency=Valuta
42
+
43
+ #XTIT: Currency Code
44
+ CurrencyCode=\u0160ifra valute
45
+
46
+ #XTIT: Currency Code Description
47
+ CurrencyCode.Description=\u0160ifra valute kako navodi ISO 4217
48
+
49
+ #XTIT: Currency Symbol
50
+ CurrencySymbol=Simbol valute
51
+
52
+ #XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
53
+ CurrencyMinorUnit=Manji dijelovi valute
54
+
55
+ #XTIT: Country/Region
56
+ Country=Dr\u017Eava/regija
57
+
58
+ #XTIT: Country/Region Code
59
+ CountryCode=\u0160ifra dr\u017Eave/regije
60
+
61
+ #XTIT: Country/Region Code Description
62
+ CountryCode.Description=\u0160ifra dr\u017Eave/regije kako navodi ISO 3166-1
63
+
64
+ #XTIT: Language
65
+ Language=Jezik
66
+
67
+ #XTIT: Language Code
68
+ LanguageCode=\u0160ifra jezika
69
+
70
+ #XTIT: Language Code Description
71
+ LanguageCode.Description=\u0160ifra jezika kako navodi ISO 639-1
72
+
73
+ #XTIT Time zone code
74
+ TimeZoneCode=\u0160ifra vremenske zone
75
+
76
+ #XTIT: User Identifier
77
+ UserID=ID korisnika
78
+
79
+ #XTIT: Any kind of name
80
+ Name=Ime
81
+
82
+ #XTIT: Any kind of description
83
+ Description=Opis
84
+
85
+ #XTOL: A user's unique Indentifier
86
+ UserID.Description=Jedinstveni ID korisnika
87
+
88
+ #XTIT: Admin data for a draft document
89
+ Draft_DraftAdministrativeData=Nacrt administrativnih podataka
90
+
91
+ #XTIT: Technical ID of a draft document
92
+ Draft_DraftUUID=Nacrt (tehni\u010Dki ID)
93
+
94
+ #XTIT: Creation time of a draft
95
+ Draft_CreationDateTime=Nacrt stvoren
96
+
97
+ #XTIT: User created the draft
98
+ Draft_CreatedByUser=Nacrt stvorio
99
+
100
+ #XTIT: The current user (me) created the draft
101
+ Draft_DraftIsCreatedByMe=Ja sam stvorio nacrt
102
+
103
+ #XTIT: Time a draft was last changed on
104
+ Draft_LastChangeDateTime=Nacrt zadnji put promijenjen
105
+
106
+ #XTIT: User that changed the draft last
107
+ Draft_LastChangedByUser=Nacrt zadnji promijenio
108
+
109
+ #XTIT: User that is working on the draft
110
+ Draft_InProcessByUser=Nacrt obra\u0111uje
111
+
112
+ #XTIT: The current user (me) is working on the draft
113
+ Draft_DraftIsProcessedByMe=Ja obra\u0111ujem nacrt
@@ -0,0 +1,113 @@
1
+ #Text Types
2
+ #
3
+ #XACT: Text with explicit importance for accessibility.
4
+ #XBUT: Button
5
+ #XCKL: Checkbox
6
+ #XFLD: Field label
7
+ #XLNK: Hyperlink
8
+ #XMIT: Menu item (Menu item, either top-level like "File" or lower-level like "Save as...")
9
+ #XMSG: Message
10
+ #XRBL: Radio button
11
+ #XSEL: Selection (Values in a drop-down list, or a status. For example: "In Process", "Shipped" or "Open".)
12
+ #XTIT: Title (or heading) of a non-actionable user interface element like a column, wizard, or screen area.
13
+ #XTOL: Explanatory text for an UI element, such as a tooltip, input help.
14
+ #YINS: Instruction for a user, for example, a permanent text on a screen that introduces a group of fields.
15
+ #----------------------------------------------------------------------------------------------------------------------
16
+ #For text elements that are not supposed to be translated, use the text type NOTR
17
+ #----------------------------------------------------------------------------------------------------------------------
18
+ #Recommended pattern
19
+ #
20
+ #<TextType>:<AdditionalContextInformation>
21
+ #If there is a maximum length restriction, please indicate as shown below.
22
+ #<TextType>,<MaximumLength>:<AdditionalContextInformation>
23
+ #----------------------------------------------------------------------------------------------------------------------
24
+ # This is the resource bundle for foundation
25
+ # __ldi.translation.uuid=dd6c5800-b108-11e8-be90-bd1cf6ac87fb
26
+ #----------------------------------------------------------------------------------------------------------------------
27
+
28
+ #XTIT: Created By (Answer to: "Which user has created a certain entity?")
29
+ CreatedBy=\u0416\u0430\u0441\u0430\u0493\u0430\u043D
30
+
31
+ #XTIT: Created On (Answer to: "When has a certain entity been created?")
32
+ CreatedAt=\u0416\u0430\u0441\u0430\u043B\u0493\u0430\u043D \u043A\u04AF\u043D\u0456
33
+
34
+ #XTIT: Changed By (Answer to: "Which user has changed a certain entity?")
35
+ ChangedBy=\u04E8\u0437\u0433\u0435\u0440\u0442\u043A\u0435\u043D
36
+
37
+ #XTIT: Changed On (Answer to: "When has a certain entity been changed?")
38
+ ChangedAt=\u04E8\u0437\u0433\u0435\u0440\u0442\u0456\u043B\u0433\u0435\u043D \u043A\u04AF\u043D\u0456
39
+
40
+ #XTIT: Currency
41
+ Currency=\u0412\u0430\u043B\u044E\u0442\u0430
42
+
43
+ #XTIT: Currency Code
44
+ CurrencyCode=\u0412\u0430\u043B\u044E\u0442\u0430 \u043A\u043E\u0434\u044B
45
+
46
+ #XTIT: Currency Code Description
47
+ CurrencyCode.Description=ISO 4217 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u044B \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u0432\u0430\u043B\u044E\u0442\u0430 \u043A\u043E\u0434\u044B
48
+
49
+ #XTIT: Currency Symbol
50
+ CurrencySymbol=\u0412\u0430\u043B\u044E\u0442\u0430 \u0431\u0435\u043B\u0433\u0456\u0441\u0456
51
+
52
+ #XTIT: Currency Minor Unit Fractions (Answer to: "How many fractions has a currency's minor unit?", e.g. "0" or "2")
53
+ CurrencyMinorUnit=\u0412\u0430\u043B\u044E\u0442\u0430\u043D\u044B\u04A3 \u0448\u0430\u0493\u044B\u043D \u0431\u0456\u0440\u043B\u0456\u043A \u0431\u04E9\u043B\u0456\u043A\u0442\u0435\u0440\u0456
54
+
55
+ #XTIT: Country/Region
56
+ Country=\u0415\u043B/\u0430\u0439\u043C\u0430\u049B
57
+
58
+ #XTIT: Country/Region Code
59
+ CountryCode=\u0415\u043B/\u0430\u0439\u043C\u0430\u049B \u043A\u043E\u0434\u044B
60
+
61
+ #XTIT: Country/Region Code Description
62
+ CountryCode.Description=ISO 3166-1 \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u0435\u043B/\u0430\u0439\u043C\u0430\u049B \u043A\u043E\u0434\u044B
63
+
64
+ #XTIT: Language
65
+ Language=\u0422\u0456\u043B
66
+
67
+ #XTIT: Language Code
68
+ LanguageCode=\u0422\u0456\u043B \u043A\u043E\u0434\u044B
69
+
70
+ #XTIT: Language Code Description
71
+ LanguageCode.Description=ISO 639-1 \u0441\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u044B \u0431\u043E\u0439\u044B\u043D\u0448\u0430 \u0442\u0456\u043B \u043A\u043E\u0434\u044B
72
+
73
+ #XTIT Time zone code
74
+ TimeZoneCode=\u0423\u0430\u049B\u044B\u0442 \u0431\u0435\u043B\u0434\u0435\u0443\u0456\u043D\u0456\u04A3 \u043A\u043E\u0434\u044B
75
+
76
+ #XTIT: User Identifier
77
+ UserID=\u041F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0448\u044B \u0438\u0434.
78
+
79
+ #XTIT: Any kind of name
80
+ Name=\u0410\u0442\u044B
81
+
82
+ #XTIT: Any kind of description
83
+ Description=\u0421\u0438\u043F\u0430\u0442\u0442\u0430\u043C\u0430
84
+
85
+ #XTOL: A user's unique Indentifier
86
+ UserID.Description=\u041F\u0430\u0439\u0434\u0430\u043B\u0430\u043D\u0443\u0448\u044B\u043D\u044B\u04A3 \u0431\u0456\u0440\u0435\u0433\u0435\u0439 \u0438\u0434.
87
+
88
+ #XTIT: Admin data for a draft document
89
+ Draft_DraftAdministrativeData=\u041D\u043E\u0431\u0430\u0439\u0434\u044B\u04A3 \u04D9\u043A\u0456\u043C\u0448\u0456\u043B\u0456\u043A \u0434\u0435\u0440\u0435\u0433\u0456
90
+
91
+ #XTIT: Technical ID of a draft document
92
+ Draft_DraftUUID=\u041D\u043E\u0431\u0430\u0439 (\u0442\u0435\u0445\u043D\u0438\u043A\u0430\u043B\u044B\u049B \u0438\u0434.)
93
+
94
+ #XTIT: Creation time of a draft
95
+ Draft_CreationDateTime=\u041D\u043E\u0431\u0430\u0439 \u0436\u0430\u0441\u0430\u043B\u0493\u0430\u043D \u043A\u04AF\u043D\u0456
96
+
97
+ #XTIT: User created the draft
98
+ Draft_CreatedByUser=\u041D\u043E\u0431\u0430\u0439\u0434\u044B \u0436\u0430\u0441\u0430\u0493\u0430\u043D
99
+
100
+ #XTIT: The current user (me) created the draft
101
+ Draft_DraftIsCreatedByMe=\u041C\u0435\u043D \u0436\u0430\u0441\u0430\u0493\u0430\u043D \u043D\u043E\u0431\u0430\u0439
102
+
103
+ #XTIT: Time a draft was last changed on
104
+ Draft_LastChangeDateTime=\u041D\u043E\u0431\u0430\u0439\u0434\u044B\u04A3 \u0441\u043E\u04A3\u0493\u044B \u04E9\u0437\u0433\u0435\u0440\u0442\u0456\u043B\u0433\u0435\u043D \u043A\u04AF\u043D\u0456
105
+
106
+ #XTIT: User that changed the draft last
107
+ Draft_LastChangedByUser=\u041D\u043E\u0431\u0430\u0439\u0434\u044B \u0441\u043E\u04A3\u0493\u044B \u04E9\u0437\u0433\u0435\u0440\u0442\u043A\u0435\u043D
108
+
109
+ #XTIT: User that is working on the draft
110
+ Draft_InProcessByUser=\u041D\u043E\u0431\u0430\u0439\u0434\u044B \u043E\u0440\u044B\u043D\u0434\u0430\u0443\u0448\u044B
111
+
112
+ #XTIT: The current user (me) is working on the draft
113
+ Draft_DraftIsProcessedByMe=\u041C\u0435\u043D \u043E\u0440\u044B\u043D\u0434\u0430\u043F \u0436\u0430\u0442\u049B\u0430\u043D \u043D\u043E\u0431\u0430\u0439