Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Idea for handling of translations: Using same JSON structure for translation files #510

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions file-formats/chko/examples/z_aff_example_chko.chko.de.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"formatVersion": "1",
"header": {
"description": "Beispiel CHKO für ABAP file formats"
},
"parameters": [
{
"name": "ParameterName",
"description": "Parameter Beschreibung"
}
]
}
6 changes: 6 additions & 0 deletions file-formats/chkv/examples/z_aff_example_chkv.chkv.de.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"formatVersion": "1",
"header": {
"description": "Beispiel CHKV für ABAP file formats"
}
}
6 changes: 6 additions & 0 deletions file-formats/ddls/examples/z_aff_example_ddls.ddls.de.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"formatVersion": "1",
"header": {
"description": "Beispiel DDLs für ABAP file formats"
}
}
16 changes: 16 additions & 0 deletions file-formats/doma/examples/z_aff_example_doma.doma.de.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
18 changes: 18 additions & 0 deletions file-formats/enhs/examples/z_aff_example_enhs.enhs.de.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
]
}
38 changes: 38 additions & 0 deletions file-formats/intf/examples/z_aff_example_intf.intf.de.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
]
}
}