Fix typo in repo settings (#6448)

Co-authored-by: Lars Hvam <larshp@hotmail.com>
This commit is contained in:
Marc Bernard 2023-08-30 12:24:31 -04:00 committed by GitHub
parent d51b12c445
commit 425a12e2b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,11 +125,11 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_SETT_REPO IMPLEMENTATION.
iv_readonly = abap_true iv_readonly = abap_true
)->text( )->text(
iv_name = c_id-i18n_langs iv_name = c_id-i18n_langs
iv_label = 'Serialize Translations for These Languages' iv_label = 'Serialize Translations for Additional Languages'
iv_hint = 'Comma-separate 2-letter ISO language codes e.g. "DE,ES,..." - should not include main language' iv_hint = 'Comma-separate 2-letter ISO language codes e.g. "DE,ES,..." - should not include main language'
)->checkbox( )->checkbox(
iv_name = c_id-use_lxe iv_name = c_id-use_lxe
iv_label = 'Use experimental LXE approach for translations' iv_label = 'Use Experimental LXE Approach for Translations'
iv_hint = 'It''s mandatory to specify the list of languages above in addition to this setting' iv_hint = 'It''s mandatory to specify the list of languages above in addition to this setting'
)->radio( )->radio(
iv_name = c_id-folder_logic iv_name = c_id-folder_logic
@ -408,7 +408,7 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_SETT_REPO IMPLEMENTATION.
IF io_form_data->get( c_id-use_lxe ) = abap_true AND lt_lang_list IS INITIAL. IF io_form_data->get( c_id-use_lxe ) = abap_true AND lt_lang_list IS INITIAL.
ro_validation_log->set( ro_validation_log->set(
iv_key = c_id-i18n_langs iv_key = c_id-i18n_langs
iv_val = 'LXE approach requires a non-empy list of languages' ). iv_val = 'LXE approach requires a non-empty list of languages' ).
ENDIF. ENDIF.
ENDMETHOD. ENDMETHOD.