mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 12:20:51 +08:00

* Issue 3066: Class text elements translation * Removed comments for Issue 3066 * Pull request checks * Travis-CI checks fixes * Travis-CI checks fixes - Identation * Interfaces pretty printed * Travis-CI identation check * Travis-CI identation check * Changes type tt_langu and serialization Type tt_langu moved from zif_abapgit_definitions to ZCL_ABAPGIT_OBJECTS_PROGRAM Encapsulated code to serialize DOCU, TPOOL and SOTR for classes * abaplint corrections * abaplint corrections * Encapsulated serialization %26 new IF lang def. * zif_abapgit_definitions types indentation * Restore zif_abapgit_definitions * Revert zcl_abapgit_object_clas * Revert zcl_abapgit_object_clas * Revert zcl_abapgit_objects_program * Revert zif_abapgit_oo_object_fnc.intf.abap * Revert zcl_abapgit_object_clas.clas.abap * Class text language * Class text language Co-authored-by: Lars Hvam <larshp@hotmail.com>
19 lines
528 B
ABAP
19 lines
528 B
ABAP
INTERFACE zif_abapgit_lang_definitions
|
|
PUBLIC .
|
|
|
|
TYPES: BEGIN OF ty_i18n_tpool,
|
|
language TYPE langu,
|
|
textpool TYPE zif_abapgit_definitions=>ty_tpool_tt,
|
|
END OF ty_i18n_tpool,
|
|
tt_i18n_tpool TYPE STANDARD TABLE OF ty_i18n_tpool.
|
|
|
|
TYPES: BEGIN OF ty_i18n_lines,
|
|
language TYPE langu,
|
|
lines TYPE tlinetab,
|
|
END OF ty_i18n_lines,
|
|
tt_i18n_lines TYPE STANDARD TABLE OF ty_i18n_lines.
|
|
|
|
TYPES: tt_langu TYPE STANDARD TABLE OF langu.
|
|
|
|
ENDINTERFACE.
|