How to change Falang tab name
Since Falang for Yootheme Lite version 1.14 it's possible to change the tab name in the Yootheme builder
The default display is "Falang" for tab name in the Yootheme Builder

You can translate it like this

You have to add this code in function.php of your template
function falang_tab_name_replace( $translation, $text, $domain) {
    if ( 'Falang' === $text ) {
        return 'Übersetzung';
    }
    return $translation;
}
add_filter( 'gettext_falang-for-yootheme', 'falang_tab_name_replace', 20, 3 );