__( 'Render email input', 'woocommerce-paypal-payments' ), 'use_widget' => __( 'Use email widget', 'woocommerce-paypal-payments' ), ); } /** * Returns the possible list of possible address widget options. * * @return array */ public static function address_widget_options(): array { return array( 'render' => __( 'Render address options list', 'woocommerce-paypal-payments' ), 'use_widget' => __( 'Use address widget', 'woocommerce-paypal-payments' ), ); } /** * Returns the possible list of possible address widget options. * * @return array */ public static function payment_widget_options(): array { return array( 'render' => __( 'Render payment options list', 'woocommerce-paypal-payments' ), 'use_widget' => __( 'Use payment widget', 'woocommerce-paypal-payments' ), ); } }