I did a little hack in the following file:
wp-content/plugins/woocommerce/includes/wc-template-functions.php
search for: “wc_dropdown_variation_attribute_options”
I added following variable:
$text_dd = "Wählen Sie: " . str_replace('Choose a', '', esc_html( $args['show_option_none']));
and added it here:
if ( $args['show_option_none'] ) {
$html .= '<option value="">' . $text_dd . '</option>';
}
Is there a better option for this?