@cap-js/change-tracking 1.0.8 → 1.1.1

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 (46) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +34 -2
  3. package/_i18n/i18n.properties +4 -0
  4. package/_i18n/i18n_ar.properties +55 -0
  5. package/_i18n/i18n_bg.properties +55 -0
  6. package/_i18n/i18n_cs.properties +55 -0
  7. package/_i18n/i18n_da.properties +55 -0
  8. package/_i18n/i18n_de.properties +55 -51
  9. package/_i18n/i18n_el.properties +55 -0
  10. package/_i18n/i18n_en.properties +5 -1
  11. package/_i18n/i18n_en_US_saptrc.properties +55 -0
  12. package/_i18n/i18n_es.properties +55 -51
  13. package/_i18n/i18n_es_MX.properties +55 -0
  14. package/_i18n/i18n_fi.properties +55 -0
  15. package/_i18n/i18n_fr.properties +55 -51
  16. package/_i18n/i18n_he.properties +55 -0
  17. package/_i18n/i18n_hr.properties +55 -0
  18. package/_i18n/i18n_hu.properties +55 -0
  19. package/_i18n/i18n_it.properties +55 -51
  20. package/_i18n/i18n_ja.properties +11 -3
  21. package/_i18n/i18n_kk.properties +55 -0
  22. package/_i18n/i18n_ko.properties +55 -0
  23. package/_i18n/i18n_ms.properties +55 -0
  24. package/_i18n/i18n_nl.properties +55 -0
  25. package/_i18n/i18n_no.properties +55 -0
  26. package/_i18n/i18n_pl.properties +55 -51
  27. package/_i18n/i18n_pt.properties +55 -51
  28. package/_i18n/i18n_ro.properties +55 -0
  29. package/_i18n/i18n_ru.properties +55 -51
  30. package/_i18n/i18n_sh.properties +55 -0
  31. package/_i18n/i18n_sk.properties +55 -0
  32. package/_i18n/i18n_sl.properties +55 -0
  33. package/_i18n/i18n_sv.properties +55 -0
  34. package/_i18n/i18n_th.properties +55 -0
  35. package/_i18n/i18n_tr.properties +55 -0
  36. package/_i18n/i18n_uk.properties +55 -0
  37. package/_i18n/i18n_vi.properties +55 -0
  38. package/_i18n/i18n_zh_CN.properties +10 -6
  39. package/_i18n/i18n_zh_TW.properties +55 -0
  40. package/cds-plugin.js +1 -1
  41. package/index.cds +4 -3
  42. package/lib/change-log.js +26 -9
  43. package/lib/entity-helper.js +21 -1
  44. package/lib/format-options.js +66 -0
  45. package/lib/localization.js +55 -43
  46. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -4,6 +4,44 @@ All notable changes to this project will be documented in this file.
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/).
6
6
 
7
+ ## Version 1.1.2 - TBD
8
+
9
+ ### Added
10
+
11
+ ### Fixed
12
+
13
+ ### Changed
14
+
15
+
16
+ ## Version 1.1.1 - 17.10.25
17
+
18
+ ### Added
19
+
20
+ - Allow tracking of localized values with `considerLocalizedValues`
21
+ - Added more translations for the UI labels for more languages
22
+
23
+ ### Changed
24
+
25
+ - Correct localisation for `cds.Date`, `cds.Time`, `cds.DateTime` and `cds.Timestamp` properties
26
+
27
+
28
+ ## Version 1.1.0 - 13.10.25
29
+
30
+ ### Added
31
+
32
+ - License entry
33
+ - Added translations for the UI labels for more languages
34
+
35
+ ### Fixed
36
+
37
+ - Handling of multiple records in one request
38
+ - Handle cases where the key contains '/'
39
+ - Instantiate the changes association correctly so it does not impact other `@cap-js` plugins
40
+
41
+ ### Changed
42
+
43
+ - Prepare for CDS9 in tests
44
+
7
45
  ## Version 1.0.8 - 28.03.25
8
46
 
9
47
  ### Added
package/README.md CHANGED
@@ -5,7 +5,7 @@ a [CDS plugin](https://cap.cloud.sap/docs/node.js/cds-plugins#cds-plugin-package
5
5
  [![REUSE status](https://api.reuse.software/badge/github.com/cap-js/change-tracking)](https://api.reuse.software/info/github.com/cap-js/change-tracking)
6
6
 
7
7
  > [!IMPORTANT]
8
- > Following the CAP best practices, the new release now requires CDS8 as minimum version in the peer dependencies. If you want to use the plugin with an older version of CAP (CDS7), you will need to manually update the peer dependency in `package.json`. Please be aware that there will be no support for this version of the plugin with a CDS version below 8!
8
+ > Following the CAP best practices, the new release now requires CDS8 or CDS9 as minimum versions. If you want to use the plugin with an older version of CAP (CDS7), you will need to manually update the peer dependency in `package.json`. Please be aware that there will be no support for this version of the plugin with a CDS version below 8!
9
9
 
10
10
  > [!IMPORTANT]
11
11
  > This release establishes support for multi-tenant deployments using MTX and extensibility.
@@ -271,7 +271,7 @@ and `disableDeleteTracking` configs in your project settings:
271
271
  By default, deleting a record will also automatically delete all associated change logs. This helps reduce the impact on the size of the database.
272
272
  You can turn this behavior off globally by adding the following switch to the `package.json` of your project
273
273
 
274
- ```
274
+ ```json
275
275
  ...
276
276
  "cds": {
277
277
  "requires": {
@@ -288,6 +288,38 @@ You can turn this behavior off globally by adding the following switch to the `p
288
288
  > Preserving the change logs of deleted data can have a significant impact on the size of the change logging table, since now such data also survives automated data retention runs.
289
289
  > You must implement an own **data retention strategy** for the change logging table in order to manage the size and performance of your database.
290
290
 
291
+ ### Tracking localized values
292
+
293
+ If you are using a model like
294
+
295
+ ```cds
296
+ entity Incidents : cuid, managed {
297
+ // … more fields
298
+ status : Association to Status default 'N' @changelog : [status.descr];
299
+ }
300
+
301
+ entity Status {
302
+ key code : String:
303
+ descr : localized String;
304
+ }
305
+ ```
306
+
307
+ you can save the localized values into the change log instead of the default values, by setting `considerLocalizedValues`:
308
+
309
+ ```json
310
+ ...
311
+ "cds": {
312
+ "requires": {
313
+ "change-tracking": {
314
+ "considerLocalizedValues": true
315
+ }
316
+ }
317
+ }
318
+ ...
319
+ ```
320
+
321
+ Please be aware this means the localized value is then stored and shown in the change log, e.g. if a user speaking another language accesses the change log later, they will still see the value in the language used by the user who caused the change log.
322
+
291
323
  ## Examples
292
324
 
293
325
  This section describes modelling cases for further reference, from simple to complex, including the following:
@@ -45,6 +45,10 @@ ChangeLog.modification.create=Create
45
45
  ChangeLog.modification.update=Update
46
46
  #XFLD: Field label
47
47
  ChangeLog.modification.delete=Delete
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=Changed at
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=Changed by
48
52
 
49
53
  ## Change History Table##
50
54
  ########################################
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=\u0645\u0639\u0631\u0641 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A
5
+ #XTIT: Field Name
6
+ Changes.entityID=\u0645\u0639\u0631\u0641 \u0627\u0644\u0643\u0627\u0626\u0646
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=\u0645\u0639\u0631\u0641 \u0627\u0644\u0643\u0627\u0626\u0646 \u0627\u0644\u0623\u0635\u0644\u064A
9
+ #XTIT: Field Name
10
+ Changes.parentKey=\u0627\u0644\u0645\u0641\u062A\u0627\u062D \u0627\u0644\u0623\u0635\u0644\u064A
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=\u0645\u0633\u0627\u0631 \u0643\u064A\u0627\u0646 \u0627\u0644\u062E\u062F\u0645\u0629
13
+ #XTIT: Field Name
14
+ Changes.attribute=\u0627\u0644\u062D\u0642\u0644
15
+ #XTIT: Field Name
16
+ Changes.keys=\u0645\u0641\u0627\u062A\u064A\u062D \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A
17
+ #XTIT: Field Name
18
+ Changes.modification=\u0646\u0648\u0639 \u0627\u0644\u062A\u063A\u064A\u064A\u0631
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=\u0642\u064A\u0645\u0629 \u0642\u062F\u064A\u0645\u0629
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=\u0642\u064A\u0645\u0629 \u062C\u062F\u064A\u062F\u0629
23
+ #XTIT: Field Name
24
+ Changes.entity=\u0646\u0648\u0639 \u0627\u0644\u0643\u0627\u0626\u0646
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=\u0646\u0648\u0639 \u0643\u0627\u0626\u0646 \u0627\u0644\u062E\u062F\u0645\u0629
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=\u0646\u0648\u0639 \u0628\u064A\u0627\u0646\u0627\u062A \u0627\u0644\u0642\u064A\u0645\u0629
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=\u0627\u0644\u0643\u064A\u0627\u0646
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=\u0645\u0641\u062A\u0627\u062D \u0627\u0644\u0643\u064A\u0627\u0646
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=\u0643\u064A\u0627\u0646 \u0627\u0644\u062E\u062F\u0645\u0629
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=\u0625\u0646\u0634\u0627\u0621
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=\u062A\u062D\u062F\u064A\u062B
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=\u062D\u0630\u0641
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=\u0648\u0642\u062A \u0627\u0644\u062A\u063A\u064A\u064A\u0631
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=\u062A\u0645 \u0627\u0644\u062A\u063A\u064A\u064A\u0631 \u0628\u0648\u0627\u0633\u0637\u0629
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=\u0633\u062C\u0644 \u0627\u0644\u062A\u063A\u064A\u064A\u0631\u0627\u062A
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=\u0418\u0414 \u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438
5
+ #XTIT: Field Name
6
+ Changes.entityID=\u0418\u0414 \u043D\u0430 \u043E\u0431\u0435\u043A\u0442
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=\u0418\u0414 \u043D\u0430 \u0432\u0438\u0441\u0448\u0435\u0441\u0442\u043E\u044F\u0449 \u043E\u0431\u0435\u043A\u0442
9
+ #XTIT: Field Name
10
+ Changes.parentKey=\u0412\u0438\u0441\u0448\u0435\u0441\u0442\u043E\u044F\u0449 \u043A\u043B\u044E\u0447
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=\u041F\u044A\u0442 \u043D\u0430 \u0435\u0434\u0438\u043D\u0438\u0446\u0430 \u043D\u0430 \u0443\u0441\u043B\u0443\u0433\u0430
13
+ #XTIT: Field Name
14
+ Changes.attribute=\u041F\u043E\u043B\u0435
15
+ #XTIT: Field Name
16
+ Changes.keys=\u041A\u043B\u044E\u0447\u043E\u0432\u0435 \u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438
17
+ #XTIT: Field Name
18
+ Changes.modification=\u0412\u0438\u0434 \u043F\u0440\u043E\u043C\u044F\u043D\u0430
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=\u0421\u0442\u0430\u0440\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=\u041D\u043E\u0432\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442
23
+ #XTIT: Field Name
24
+ Changes.entity=\u0412\u0438\u0434 \u043E\u0431\u0435\u043A\u0442
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=\u0412\u0438\u0434 \u043E\u0431\u0435\u043A\u0442 \u0437\u0430 \u0443\u0441\u043B\u0443\u0433\u0430
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=\u0412\u0438\u0434 \u0434\u0430\u043D\u043D\u0438 \u0437\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=\u0415\u0434\u0438\u043D\u0438\u0446a
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=\u041A\u043B\u044E\u0447 \u043D\u0430 \u0435\u0434\u0438\u043D\u0438\u0446\u0430
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=\u0415\u0434\u0438\u043D\u0438\u0446\u0430 \u0437\u0430 \u0443\u0441\u043B\u0443\u0433\u0430
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=\u0421\u044A\u0437\u0434\u0430\u0432\u0430\u043D\u0435
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=\u0410\u043A\u0442\u0443\u0430\u043B\u0438\u0437\u0430\u0446\u0438\u044F
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=\u0418\u0437\u0442\u0440\u0438\u0432\u0430\u043D\u0435
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=\u041F\u0440\u043E\u043C\u0435\u043D\u0435\u043D\u043E \u0432
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=\u041F\u0440\u043E\u043C\u0435\u043D\u0438\u043B
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u043D\u0430 \u043F\u0440\u043E\u043C\u0435\u043D\u0438\u0442\u0435
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=ID zm\u011Bn
5
+ #XTIT: Field Name
6
+ Changes.entityID=ID objektu
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=ID nad\u0159azen\u00E9ho objektu
9
+ #XTIT: Field Name
10
+ Changes.parentKey=Nad\u0159azen\u00FD kl\u00ED\u010D
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=Cesta entity slu\u017Eby
13
+ #XTIT: Field Name
14
+ Changes.attribute=Pole
15
+ #XTIT: Field Name
16
+ Changes.keys=Kl\u00ED\u010De zm\u011Bn
17
+ #XTIT: Field Name
18
+ Changes.modification=Typ zm\u011Bny
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=Star\u00E1 hodnota
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=Nov\u00E1 hodnota
23
+ #XTIT: Field Name
24
+ Changes.entity=Typ objektu
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=Typ objektu slu\u017Eby
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=Datov\u00FD typ hodnoty
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=Entita
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=Kl\u00ED\u010D entity
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=Entita slu\u017Eby
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=Vytvo\u0159it
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=Aktualizovat
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=Odstranit
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=Zm\u011Bn\u011Bno v
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=Zm\u011Bnil(a)
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=Historie zm\u011Bn
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=\u00C6ndrings-id
5
+ #XTIT: Field Name
6
+ Changes.entityID=Objekt-ID
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=Overordnet objekt-ID
9
+ #XTIT: Field Name
10
+ Changes.parentKey=Overordnet n\u00F8gle
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=Sti for serviceentitet
13
+ #XTIT: Field Name
14
+ Changes.attribute=Felt
15
+ #XTIT: Field Name
16
+ Changes.keys=\u00C6ndringsn\u00F8gler
17
+ #XTIT: Field Name
18
+ Changes.modification=\u00C6ndringstype
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=Gammel v\u00E6rdi
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=Ny v\u00E6rdi
23
+ #XTIT: Field Name
24
+ Changes.entity=Objekttype
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=Serviceobjekttype
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=V\u00E6rdidatatype
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=Entitet
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=Entitetsn\u00F8gle
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=Serviceentitet
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=Opret
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=Opdater
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=Slet
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=\u00C6ndret kl.
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=\u00C6ndret af
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=\u00C6ndringshistorik
@@ -1,51 +1,55 @@
1
- ## Change Table Fields Description##
2
- ####################################
3
- #XTIT: Field Name
4
- Changes.ID=ID der \u00C4nderungen
5
- #XTIT: Field Name
6
- Changes.entityID=Objekt-ID
7
- #XTIT: Field Name
8
- Changes.parentEntityID=\u00DCbergeordnete Objekt-ID
9
- #XTIT: Field Name
10
- Changes.parentKey=\u00DCbergeordneter Schl\u00FCssel
11
- #XTIT: Field Name
12
- Changes.serviceEntityPath=Pfad der Serviceentit\u00E4t
13
- #XTIT: Field Name
14
- Changes.attribute=Feld
15
- #XTIT: Field Name
16
- Changes.keys=Schl\u00FCssel der \u00C4nderungen
17
- #XTIT: Field Name
18
- Changes.modification=\u00C4nderungstyp
19
- #XTIT: Field Name
20
- Changes.valueChangedFrom=Alter Wert
21
- #XTIT: Field Name
22
- Changes.valueChangedTo=Neuer Wert
23
- #XTIT: Field Name
24
- Changes.entity=Objekttyp
25
- #XTIT: Field Name
26
- Changes.serviceEntity=Serviceobjekttyp
27
- #XTIT: Field Name
28
- Changes.valueDataType=Wertdatentyp
29
-
30
- ## Change Log Table Fields Description##
31
- ########################################
32
- #XTIT: Field Name
33
- ChangeLog.entity=Entit\u00E4t
34
- #XTIT: Field Name
35
- ChangeLog.entityKey=Entit\u00E4tsschl\u00FCssel
36
- #XTIT: Field Name
37
- ChangeLog.serviceEntity=Serviceentit\u00E4t
38
-
39
-
40
- ## Change Log Modifications##
41
- ########################################
42
- #XFLD: Field label
43
- ChangeLog.modification.create=Anlegen
44
- #XFLD: Field label
45
- ChangeLog.modification.update=Aktualisieren
46
- #XFLD: Field label
47
- ChangeLog.modification.delete=L\u00F6schen
48
-
49
- ## Change History Table##
50
- ########################################
51
- ChangeHistory=Änderungshistorie
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=\u00C4nderungs-ID
5
+ #XTIT: Field Name
6
+ Changes.entityID=Objekt-ID
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=ID \u00FCbergeordnetes Objekt
9
+ #XTIT: Field Name
10
+ Changes.parentKey=\u00DCbergeordneter Schl\u00FCssel
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=Pfad der Service-Entit\u00E4t
13
+ #XTIT: Field Name
14
+ Changes.attribute=Feld
15
+ #XTIT: Field Name
16
+ Changes.keys=\u00C4nderungsschl\u00FCssel
17
+ #XTIT: Field Name
18
+ Changes.modification=\u00C4nderungstyp
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=Alter Wert
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=Neuer Wert
23
+ #XTIT: Field Name
24
+ Changes.entity=Objekttyp
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=Serviceobjekttyp
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=Datentyp des Werts
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=Entit\u00E4t
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=Entit\u00E4tsschl\u00FCssel
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=Service-Entit\u00E4t
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=Anlegen
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=Aktualisieren
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=L\u00F6schen
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=Ge\u00E4ndert am
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=Ge\u00E4ndert von
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=\u00C4nderungshistorie
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=ID \u0391\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD
5
+ #XTIT: Field Name
6
+ Changes.entityID=ID \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=ID \u039A\u03CD\u03C1\u03B9\u03BF\u03C5 \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5
9
+ #XTIT: Field Name
10
+ Changes.parentKey=\u039A\u03CD\u03C1\u03B9\u03BF \u039A\u03BB\u03B5\u03B9\u03B4\u03AF
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=\u0394\u03B9\u03B1\u03B4\u03C1\u03BF\u03BC\u03AE \u039F\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03A5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1\u03C2
13
+ #XTIT: Field Name
14
+ Changes.attribute=\u03A0\u03B5\u03B4\u03AF\u03BF
15
+ #XTIT: Field Name
16
+ Changes.keys=\u039A\u03BB\u03B5\u03B9\u03B4\u03B9\u03AC \u0391\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD
17
+ #XTIT: Field Name
18
+ Changes.modification=\u03A4\u03CD\u03C0\u03BF\u03C2 \u0391\u03BB\u03BB\u03B1\u03B3\u03AE\u03C2
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=\u03A0\u03B1\u03BB\u03B9\u03AC \u03A4\u03B9\u03BC\u03AE
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=\u039D\u03AD\u03B1 \u03A4\u03B9\u03BC\u03AE
23
+ #XTIT: Field Name
24
+ Changes.entity=\u03A4\u03CD\u03C0\u03BF\u03C2 \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=\u03A4\u03CD\u03C0\u03BF\u03C2 \u0391\u03BD\u03C4\u03B9\u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03A5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1\u03C2
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=\u03A4\u03CD\u03C0\u03BF\u03C2 \u0394\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03A4\u03B9\u03BC\u03AE\u03C2
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=\u039F\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=\u039A\u03BB\u03B5\u03B9\u03B4\u03AF \u039F\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=\u039F\u03BD\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1 \u03A5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B1\u03C2
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=\u0394\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03AE
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=\u0386\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C3\u03C4\u03B9\u03C2
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=\u0386\u03BB\u03BB\u03B1\u03BE\u03B5 \u03B1\u03C0\u03CC
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=\u0399\u03C3\u03C4\u03BF\u03C1\u03B9\u03BA\u03CC \u0391\u03BB\u03BB\u03B1\u03B3\u03CE\u03BD
@@ -45,7 +45,11 @@ ChangeLog.modification.create=Create
45
45
  ChangeLog.modification.update=Update
46
46
  #XFLD: Field label
47
47
  ChangeLog.modification.delete=Delete
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=Changed at
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=Changed by
48
52
 
49
53
  ## Change History Table##
50
54
  ########################################
51
- ChangeHistory=Change History
55
+ ChangeHistory=Change History
@@ -0,0 +1,55 @@
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=VfK41Fkk0DbVUFpSXQ8AqA_Changes ID
5
+ #XTIT: Field Name
6
+ Changes.entityID=ZiKVAYEIaFE0mFC3IeEFbg_Object ID
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=rnkgCvsaOC/hCPg0vF5EwA_Parent Object ID
9
+ #XTIT: Field Name
10
+ Changes.parentKey=AF/Za63Sqdiz7MXXjEROnA_Parent Key
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=viNxBh1vYxxG3kXw60lQPg_Service Entity Path
13
+ #XTIT: Field Name
14
+ Changes.attribute=cWjA87iS+Cm9tvOovmGGeg_Field
15
+ #XTIT: Field Name
16
+ Changes.keys=yOxQrAVGEhnkFKx3Uu+UQA_Changes Keys
17
+ #XTIT: Field Name
18
+ Changes.modification=uubj6khCgQZXWKOkGbkQgQ_Change Type
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=iohxHdR2acDLGNkvq8miKw_Old Value
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=y65Nf+sdmQLjY6WGSnP5Sg_New Value
23
+ #XTIT: Field Name
24
+ Changes.entity=X+l1TGFuUkDEx610r4yjKQ_Object Type
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=BsNZh4ZOpOzpazhamfXqww_Service Object Type
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=t2TcrxYWauHkEKY0ZWU2sQ_Value Data Type
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=D240DzaTaZ7FAgpA7cLIiQ_Entity
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=xK+ceOtLvrRhC38wITucIg_Entity Key
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=TWafyw7HrjY/21RcCMxxgQ_Service Entity
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=HzvJkMkINr79zGGMJxCQhg_Create
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=Jy7YgwcIfJ78NVdC9GBHXg_Update
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=6Vb15r75SwLYaAwPBAAlXA_Delete
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=It3muKsTssohbqCBz66Waw_Changed at
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=uceIpGWLWLeh6E5F5GHPdQ_Changed by
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=kUlw1/MxgMjeCPEQdQ3gRg_Change History
@@ -1,51 +1,55 @@
1
- ## Change Table Fields Description##
2
- ####################################
3
- #XTIT: Field Name
4
- Changes.ID=ID de modificaciones
5
- #XTIT: Field Name
6
- Changes.entityID=ID de objeto
7
- #XTIT: Field Name
8
- Changes.parentEntityID=ID de objeto del nivel superior
9
- #XTIT: Field Name
10
- Changes.parentKey=Clave superior
11
- #XTIT: Field Name
12
- Changes.serviceEntityPath=V\u00EDa de acceso de entidad de servicio
13
- #XTIT: Field Name
14
- Changes.attribute=Campo
15
- #XTIT: Field Name
16
- Changes.keys=Claves de modificaciones
17
- #XTIT: Field Name
18
- Changes.modification=Tipo de modificaci\u00F3n
19
- #XTIT: Field Name
20
- Changes.valueChangedFrom=Valor antiguo
21
- #XTIT: Field Name
22
- Changes.valueChangedTo=Valor nuevo
23
- #XTIT: Field Name
24
- Changes.entity=Tipo de objeto
25
- #XTIT: Field Name
26
- Changes.serviceEntity=Tipo de objeto de servicio
27
- #XTIT: Field Name
28
- Changes.valueDataType=Tipo de dato de valor
29
-
30
- ## Change Log Table Fields Description##
31
- ########################################
32
- #XTIT: Field Name
33
- ChangeLog.entity=Entidad
34
- #XTIT: Field Name
35
- ChangeLog.entityKey=Clave de entidad
36
- #XTIT: Field Name
37
- ChangeLog.serviceEntity=Entidad de servicio
38
-
39
-
40
- ## Change Log Modifications##
41
- ########################################
42
- #XFLD: Field label
43
- ChangeLog.modification.create=Crear
44
- #XFLD: Field label
45
- ChangeLog.modification.update=Actualizar
46
- #XFLD: Field label
47
- ChangeLog.modification.delete=Borrar
48
-
49
- ## Change History Table##
50
- ########################################
51
- ChangeHistory=Historial de modificaciones
1
+ ## Change Table Fields Description##
2
+ ####################################
3
+ #XTIT: Field Name
4
+ Changes.ID=ID de modificaciones
5
+ #XTIT: Field Name
6
+ Changes.entityID=ID de objeto
7
+ #XTIT: Field Name
8
+ Changes.parentEntityID=ID de objeto del nivel superior
9
+ #XTIT: Field Name
10
+ Changes.parentKey=Clave superior
11
+ #XTIT: Field Name
12
+ Changes.serviceEntityPath=Ruta de entidad de servicio
13
+ #XTIT: Field Name
14
+ Changes.attribute=Campo
15
+ #XTIT: Field Name
16
+ Changes.keys=Claves de modificaciones
17
+ #XTIT: Field Name
18
+ Changes.modification=Tipo de modificaci\u00F3n
19
+ #XTIT: Field Name
20
+ Changes.valueChangedFrom=Valor anterior
21
+ #XTIT: Field Name
22
+ Changes.valueChangedTo=Valor nuevo
23
+ #XTIT: Field Name
24
+ Changes.entity=Tipo de objeto
25
+ #XTIT: Field Name
26
+ Changes.serviceEntity=Tipo de objeto de servicio
27
+ #XTIT: Field Name
28
+ Changes.valueDataType=Tipo de datos de valor
29
+
30
+ ## Change Log Table Fields Description##
31
+ ########################################
32
+ #XTIT: Field Name
33
+ ChangeLog.entity=Entidad
34
+ #XTIT: Field Name
35
+ ChangeLog.entityKey=Clave de entidad
36
+ #XTIT: Field Name
37
+ ChangeLog.serviceEntity=Entidad de servicio
38
+
39
+
40
+ ## Change Log Modifications##
41
+ ########################################
42
+ #XFLD: Field label
43
+ ChangeLog.modification.create=Crear
44
+ #XFLD: Field label
45
+ ChangeLog.modification.update=Actualizar
46
+ #XFLD: Field label
47
+ ChangeLog.modification.delete=Eliminar
48
+ #XFLD: Field label
49
+ ChangeLog.createdAt=Hora de modificaci\u00F3n
50
+ #XFLD: Field label
51
+ ChangeLog.createdBy=Modificado por
52
+
53
+ ## Change History Table##
54
+ ########################################
55
+ ChangeHistory=Historial de modificaciones