Please ensure you're using latest release CB Privacy 4.0.3. All the connection types strings appear to be passed through CBTxt. If you're on latest release already please try the below quickfix as maybe it's due to a leading/trailing space.
IN: components/com_comprofiler/plugin/user/plug_cbprivacy/cbprivacy.php
ON: Line 767
FROM:
Code:
$options[] = moscomprofilerHTML::makeOption( trim( htmlspecialchars( $type ) ), CBTxt::T( $type ) );
TO:
Code:
$options[] = moscomprofilerHTML::makeOption( trim( htmlspecialchars( $type ) ), CBTxt::T( trim( $type ) ) );