Terminology: Inclusive Language - Part 4b (#4436)

Change of terminology (#4043). This time with the missing changes in service_repo.

repo_srv and serializer will be next after #4431.

Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Marc Bernard 2021-01-23 04:13:42 -05:00 committed by GitHub
parent 40efc567f6
commit 6d356400f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 15 deletions

View File

@ -27,7 +27,7 @@ CLASS zcl_abapgit_gui_page_addofflin DEFINITION
url TYPE string VALUE 'url',
package TYPE string VALUE 'package',
folder_logic TYPE string VALUE 'folder_logic',
master_lang_only TYPE string VALUE 'master_lang_only',
main_lang_only TYPE string VALUE 'main_lang_only',
END OF c_id .
CONSTANTS:
@ -58,7 +58,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_GUI_PAGE_ADDOFFLIN IMPLEMENTATION.
CLASS zcl_abapgit_gui_page_addofflin IMPLEMENTATION.
METHOD constructor.
@ -114,7 +114,7 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_ADDOFFLIN IMPLEMENTATION.
iv_label = 'Full'
iv_value = zif_abapgit_dot_abapgit=>c_folder_logic-full
)->checkbox(
iv_name = c_id-master_lang_only
iv_name = c_id-main_lang_only
iv_label = 'Serialize Main Language Only'
iv_hint = 'Ignore translations, serialize just main language'
)->command(

View File

@ -30,7 +30,7 @@ CLASS zcl_abapgit_gui_page_addonline DEFINITION
display_name TYPE string VALUE 'display_name',
folder_logic TYPE string VALUE 'folder_logic',
ignore_subpackages TYPE string VALUE 'ignore_subpackages',
master_lang_only TYPE string VALUE 'master_lang_only',
main_lang_only TYPE string VALUE 'main_lang_only',
END OF c_id.
CONSTANTS:
@ -62,7 +62,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_GUI_PAGE_ADDONLINE IMPLEMENTATION.
CLASS zcl_abapgit_gui_page_addonline IMPLEMENTATION.
METHOD constructor.
@ -133,7 +133,7 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_ADDONLINE IMPLEMENTATION.
iv_label = 'Ignore Subpackages'
iv_hint = 'Synchronize root package only'
)->checkbox(
iv_name = c_id-master_lang_only
iv_name = c_id-main_lang_only
iv_label = 'Serialize Main Language Only'
iv_hint = 'Ignore translations, serialize just main language'
)->command(

View File

@ -93,7 +93,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_SERVICES_REPO IMPLEMENTATION.
CLASS zcl_abapgit_services_repo IMPLEMENTATION.
METHOD check_package.
@ -172,7 +172,7 @@ CLASS ZCL_ABAPGIT_SERVICES_REPO IMPLEMENTATION.
iv_url = is_repo_params-url
iv_package = is_repo_params-package
iv_folder_logic = is_repo_params-folder_logic
iv_master_lang_only = is_repo_params-master_lang_only ).
iv_master_lang_only = is_repo_params-main_lang_only ).
" Make sure there're no leftovers from previous repos
ro_repo->rebuild_local_checksums( ).
@ -199,7 +199,7 @@ CLASS ZCL_ABAPGIT_SERVICES_REPO IMPLEMENTATION.
iv_display_name = is_repo_params-display_name
iv_folder_logic = is_repo_params-folder_logic
iv_ign_subpkg = is_repo_params-ignore_subpackages
iv_master_lang_only = is_repo_params-master_lang_only ).
iv_master_lang_only = is_repo_params-main_lang_only ).
" Make sure there're no leftovers from previous repos
ro_repo->rebuild_local_checksums( ).

View File

@ -9,7 +9,7 @@ INTERFACE zif_abapgit_services_repo
display_name TYPE string,
folder_logic TYPE string,
ignore_subpackages TYPE abap_bool,
master_lang_only TYPE abap_bool,
main_lang_only TYPE abap_bool,
END OF ty_repo_params .
ENDINTERFACE.