responsiv / campaign-plugin

[PREMIUM] Send professional campaign messages to your subscribers.
http://octobercms.com/plugin/responsiv-campaign
5 stars 2 forks source link

Translation #77

Closed CyannTonner closed 1 year ago

CyannTonner commented 1 year ago

Hello,

The Campaign Manager plugin is super interesting and it is very useful to me. In order to be able to use it properly, I need to translate the error message into French: "The email field is required.", "The email must be a valid email address." ...

I've looked around in the plugin files and I can't find it. Could you help me to solve the problem.

Thanks!

Capture d’écran, le 2022-12-07 à 10 45 53

daftspunk commented 1 year ago

Hey @CyannTonner

Sorry for the delay, this is a built-in validation message and I had to look it up... The file for this is located here: https://github.com/octobercms/october/blob/3.x/modules/system/lang/en/validation.php

You can customize it by creating a file called app/lang/system/en/validation.php:

<?php

return [
    'required' => 'The :attribute field is required!!',

    'attributes' => [
        'email' => 'EMAIL'
    ],
];

I hope this helps!