Merge remote-tracking branch 'refs/remotes/origin/staging' into staging
This commit is contained in:
8
resources/lang/en/Message.php
Normal file
8
resources/lang/en/Message.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'success' => 'Request has been successfully processed.',
|
||||
'server_error' => 'Internal server error.',
|
||||
'not_found' => 'Data not found',
|
||||
'password' => 'Password wrong. Please try again.'
|
||||
];
|
||||
8
resources/lang/en/Validation.php
Normal file
8
resources/lang/en/Validation.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'required' => 'The :attribute field is required.',
|
||||
'invalid' => 'The :attribute field is invalid.',
|
||||
'max' => ':attribute cannot exceed :length characters.',
|
||||
'email' => 'Invalid email format.'
|
||||
];
|
||||
8
resources/lang/id/Message.php
Normal file
8
resources/lang/id/Message.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'success' => 'Request berhasil dilakukan.',
|
||||
'server_error' => 'Internal server error.',
|
||||
'not_found' => 'Data tidak ditemukan.',
|
||||
'password' => 'Password salah. Silakan coba lagi.'
|
||||
];
|
||||
8
resources/lang/id/Validation.php
Normal file
8
resources/lang/id/Validation.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'required' => 'Kolom :attribute harus diisi.',
|
||||
'invalid' => 'Kolom :attribute tidak valid.',
|
||||
'max' => ':attribute tidak boleh melebihi :length karakter.',
|
||||
'email' => 'Format email salah.'
|
||||
];
|
||||
Reference in New Issue
Block a user