Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 13, 2020 11:18
Show Gist options
  • Save ashour/9d7043d60b7107010ef7128ff34680f1 to your computer and use it in GitHub Desktop.
Save ashour/9d7043d60b7107010ef7128ff34680f1 to your computer and use it in GitHub Desktop.
<?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