I am using Stripe for a german website, I could translate the JS (stripeResponseHandler) error messages for the form following this post but not the exception of validation ($e->getMessage()). I get the exception error in english, how can I translate it?
My PHP :
try {
    require_once('Stripe/init.php');
    \Stripe\Stripe::setApiKey("myKey"); //Secret Key
    $token = $_POST['stripeToken'];
    $coupon = \Stripe\Coupon::retrieve($_POST['couponId']);
    $charge =  \Stripe\Charge::create(array(...)
} catch (Exception $e) {
    echo $e->getMessage();
}