You may just disable some options in the language selection, if you don't need them. Just replace the HTML code für the option by
Another option would be to create a selection question (using the card layout and configuring an automatic "next" when clicked is useful here) that is only displayed in a specific language version:
if (getLanguage() == 'ger') {
question('LG01'); // Language selection
} else {
goToPage('next');
}
In the response processing use setLanguage()
to set the proper language, then.