From 35945a8ce73b1c69acf2ff3bbc924599d5c6232f Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Fri, 17 Mar 2023 09:53:24 +0100 Subject: [PATCH] Some translations using same JSON structure --- .../examples/z_aff_example_chko.chko.de.json | 12 ++++++ .../examples/z_aff_example_chkv.chkv.de.json | 6 +++ .../examples/z_aff_example_ddls.ddls.de.json | 6 +++ .../examples/z_aff_example_doma.doma.de.json | 16 ++++++++ .../examples/z_aff_example_enhs.enhs.de.json | 18 +++++++++ .../examples/z_aff_example_intf.intf.de.json | 38 +++++++++++++++++++ 6 files changed, 96 insertions(+) create mode 100644 file-formats/chko/examples/z_aff_example_chko.chko.de.json create mode 100644 file-formats/chkv/examples/z_aff_example_chkv.chkv.de.json create mode 100644 file-formats/ddls/examples/z_aff_example_ddls.ddls.de.json create mode 100644 file-formats/doma/examples/z_aff_example_doma.doma.de.json create mode 100644 file-formats/enhs/examples/z_aff_example_enhs.enhs.de.json create mode 100644 file-formats/intf/examples/z_aff_example_intf.intf.de.json diff --git a/file-formats/chko/examples/z_aff_example_chko.chko.de.json b/file-formats/chko/examples/z_aff_example_chko.chko.de.json new file mode 100644 index 000000000..6ba36e951 --- /dev/null +++ b/file-formats/chko/examples/z_aff_example_chko.chko.de.json @@ -0,0 +1,12 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel CHKO für ABAP file formats" + }, + "parameters": [ + { + "name": "ParameterName", + "description": "Parameter Beschreibung" + } + ] +} diff --git a/file-formats/chkv/examples/z_aff_example_chkv.chkv.de.json b/file-formats/chkv/examples/z_aff_example_chkv.chkv.de.json new file mode 100644 index 000000000..04e137ed9 --- /dev/null +++ b/file-formats/chkv/examples/z_aff_example_chkv.chkv.de.json @@ -0,0 +1,6 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel CHKV für ABAP file formats" + } +} diff --git a/file-formats/ddls/examples/z_aff_example_ddls.ddls.de.json b/file-formats/ddls/examples/z_aff_example_ddls.ddls.de.json new file mode 100644 index 000000000..4790fcac0 --- /dev/null +++ b/file-formats/ddls/examples/z_aff_example_ddls.ddls.de.json @@ -0,0 +1,6 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel DDLs für ABAP file formats" + } +} diff --git a/file-formats/doma/examples/z_aff_example_doma.doma.de.json b/file-formats/doma/examples/z_aff_example_doma.doma.de.json new file mode 100644 index 000000000..d47084e7f --- /dev/null +++ b/file-formats/doma/examples/z_aff_example_doma.doma.de.json @@ -0,0 +1,16 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel DOMA für ABAP file formats" + }, + "fixedValues": [ + { + "fixedValue": "ABC", + "description": "Festwert ABC" + }, + { + "fixedValue": "XYZ", + "description": "Festwert XYZ" + } + ] +} diff --git a/file-formats/enhs/examples/z_aff_example_enhs.enhs.de.json b/file-formats/enhs/examples/z_aff_example_enhs.enhs.de.json new file mode 100644 index 000000000..62018baf6 --- /dev/null +++ b/file-formats/enhs/examples/z_aff_example_enhs.enhs.de.json @@ -0,0 +1,18 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel ENHS für ABAP file formats" + }, + "badiDefinitions": [ + { + "name": "Z_AFF_EXAMPLE_BADI_DEFINITION", + "description": "Das ist eine Bespiel-Badi-Definition", + "filters": [ + { + "name": "EXAMPLE_FILTER", + "description": "Das ist ein Beispiel-Filter" + } + ] + } + ] +} diff --git a/file-formats/intf/examples/z_aff_example_intf.intf.de.json b/file-formats/intf/examples/z_aff_example_intf.intf.de.json new file mode 100644 index 000000000..81dbcb462 --- /dev/null +++ b/file-formats/intf/examples/z_aff_example_intf.intf.de.json @@ -0,0 +1,38 @@ +{ + "formatVersion": "1", + "header": { + "description": "Beispiel-Interface für ABAP file formats" + }, + "descriptions": { + "types": [ + { + "name": "TY_EXAMPLE_TYPE", + "description": "Das ist ein Beispiel-Typ" + } + ], + "attributes": [ + { + "name": "CO_EXAMPLE_CONSTANT", + "description": "Das ist eine Beispiel-Konstante" + } + ], + "events": [ + { + "name": "EXAMPLE_EVENT", + "description": "Das ist ein Beispiel-Event" + } + ], + "methods": [ + { + "name": "EXAMPLE_METHOD", + "description": "Das ist eine Beispiel-Methode", + "parameters": [ + { + "name": "I_PARAM", + "description": "Das ist ein Beispiel-Paramter" + } + ] + } + ] + } +}