Created
February 13, 2020 11:18
-
-
Save ashour/9d7043d60b7107010ef7128ff34680f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$messages = [ | |
'en' => [ | |
// ... | |
'error_required' => '{field} is required', | |
'error_required_name' => 'Please enter your name', | |
'error_required_agree_to_terms' => 'Please agree to terms and conditions', | |
'error_email' => 'Please enter a valid email address', | |
'error_min' => '{field} must be {arg} characters or more' | |
], | |
'ar' => [ | |
// ... | |
'error_required' => 'حقل {field} مطلوب', | |
'error_required_name' => 'الرجاء إدخال إسمك', | |
'error_email' => 'الرجاء إدخال بريد إلكتروني صالح', | |
'error_min' => 'الحقل {field} يجب و أن يكون طوله {arg} حروف على الأقل', | |
'error_required_agree_to_terms' => 'الرجاء الموافقة على الشروط و الأحكام', | |
], | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment