Skip to content

Commit a6fcc49

Browse files
committed
version 27-10-2022
0 parents  commit a6fcc49

File tree

4 files changed

+211
-0
lines changed

4 files changed

+211
-0
lines changed

auth.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Authentication Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used during authentication for various
11+
| messages that we need to display to the user. You are free to modify
12+
| these language lines according to your application's requirements.
13+
|
14+
*/
15+
16+
'failed' => 'Autentikasi gagal silahkan cek kembali data Anda.',
17+
'throttle' => 'Kesempatan autentikasi sudah habis. Silahkan coba kembali dalam :seconds detik.',
18+
19+
];

pagination.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Pagination Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are used by the paginator library to build
11+
| the simple pagination links. You are free to change them to anything
12+
| you want to customize your views to better match your application.
13+
|
14+
*/
15+
16+
'previous' => '&laquo; Sebelumnya',
17+
'next' => 'Selanjutnya &raquo;',
18+
19+
];

passwords.php

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Password Reset Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines are the default lines which match reasons
11+
| that are given by the password broker for a password update attempt
12+
| has failed, such as for an invalid token or invalid new password.
13+
|
14+
*/
15+
16+
'reset' => 'Password telah berhasil diganti!',
17+
'sent' => 'Kami telah mengirimkan link untuk ganti password pada email Anda!',
18+
'throttled' => 'Silahkan tunggu.',
19+
'token' => 'Token untuk ganti password tidak valid.',
20+
'user' => "Kami tidak dapat menemukan user dengan email address tersebut.",
21+
22+
];

validation.php

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<?php
2+
3+
return [
4+
5+
/*
6+
|--------------------------------------------------------------------------
7+
| Validation Language Lines
8+
|--------------------------------------------------------------------------
9+
|
10+
| The following language lines contain the default error messages used by
11+
| the validator class. Some of these rules have multiple versions such
12+
| as the size rules. Feel free to tweak each of these messages here.
13+
|
14+
*/
15+
16+
'accepted' => ':attribute harus disetujui.',
17+
'active_url' => ':attribute URL tidak valid.',
18+
'after' => ':attribute harus berupa tanggal setelah :date.',
19+
'after_or_equal' => ':attribute harus berupa tanggal setelah atau sama dengan :date.',
20+
'alpha' => ':attribute hanya dapat berupa alphabet atau huruf.',
21+
'alpha_dash' => ':attribute hanya dapat berupa alphabet, angka, tanda hubung dan garis bawah.',
22+
'alpha_num' => ':attribute hanya dapat berupa alphabet dan angka.',
23+
'array' => ':attribute hanya dapat berupa array.',
24+
'before' => ':attribute hanya dapat berupa tanggal sebelum :date.',
25+
'before_or_equal' => ':attribute harus berupa tanggal sebelum atau sama dengan :date.',
26+
'between' => [
27+
'numeric' => ':attribute harus dalam diantara :min hingga :max.',
28+
'file' => ':attribute ukurannya harus diantara :min hingga :max kilobytes.',
29+
'string' => ':attribute jumlah karakternya harus diantara :min hingga :max.',
30+
'array' => ':attribute harus memiliki variabel diantara :min hingga :max.',
31+
],
32+
'boolean' => ':attribute isinya harus berupa pilihan benar atau salah.',
33+
'confirmed' => 'konfirmasi :attribute tidak cocok.',
34+
'date' => ':attribute tidak berupa tanggal yang valid.',
35+
'date_equals' => ':attribute harus berupa tanggal yang sama dengan :date.',
36+
'date_format' => ':attribute tidak cocok dengan format :format.',
37+
'different' => ':attribute dan :other harus berbeda.',
38+
'digits' => ':attribute harus memiliki :digits jumlah karakter.',
39+
'digits_between' => ':attribute harus memiliki jumlah karakter diantara :min hingga :max.',
40+
'dimensions' => ':attribute dimensi gambarnya tidak valid.',
41+
'distinct' => ':attribute terdapat isi yang terduplikat.',
42+
'email' => ':attribute harus berupa email yang valid.',
43+
'ends_with' => ':attribute harus berakhiran dengan: :values.',
44+
'exists' => ':attribute yang dipilih tidak valid.',
45+
'file' => ':attribute harus berupa file.',
46+
'filled' => ':attribute harus terisi.',
47+
'gt' => [
48+
'numeric' => ':attribute harus lebih dari :value.',
49+
'file' => ':attribute harus lebih dari :value kilobytes.',
50+
'string' => ':attribute harus lebih :value karakter.',
51+
'array' => ':attribute harus lebih dari :value variabel.',
52+
],
53+
'gte' => [
54+
'numeric' => ':attribute harus lebih atau sama dengan :value.',
55+
'file' => ':attribute harus lebih atau sama dengan :value kilobytes.',
56+
'string' => ':attribute harus lebih atau berjumlah :value karakter.',
57+
'array' => ':attribute harus memiliki :value variable atau lebih.',
58+
],
59+
'image' => ':attribute harus berupa gambar.',
60+
'in' => ':attribute yang terpilih tidak valid.',
61+
'in_array' => ':attribute tidak terdapat pada :other.',
62+
'integer' => ':attribute harus berupa angka.',
63+
'ip' => ':attribute harus berupa alamat IP yang valid.',
64+
'ipv4' => ':attribute harus berupa alamat IPv4 yang valid.',
65+
'ipv6' => ':attribute harus berupa alamat IPv6 yang valid.',
66+
'json' => ':attribute harus berupa JSON yang valid.',
67+
'lt' => [
68+
'numeric' => ':attribute harus kurang dari :value.',
69+
'file' => ':attribute harus kurang dari :value kilobytes.',
70+
'string' => ':attribute harus kurang dari :value karakter.',
71+
'array' => ':attribute harus kurang dari :value variabel.',
72+
],
73+
'lte' => [
74+
'numeric' => ':attribute harus kurang dari atau sama dengan :value.',
75+
'file' => ':attribute harus kurang dari atau sama dengan :value kilobytes.',
76+
'string' => ':attribute harus kurang dari atau sama dengan :value karakter.',
77+
'array' => ':attribute harus kurang dari :value variabel.',
78+
],
79+
'max' => [
80+
'numeric' => ':attribute harus kurang dari :max.',
81+
'file' => ':attribute harus kurang dari :max kilobytes.',
82+
'string' => ':attribute harus kurang dari :max karakter.',
83+
'array' => ':attribute harus kurang dari than :max variabel.',
84+
],
85+
'mimes' => ':attribute harus memiliki ektensi file: :values.',
86+
'mimetypes' => ':attribute harus memiliki ektensi file: :values.',
87+
'min' => [
88+
'numeric' => ':attribute minimal harus :min.',
89+
'file' => ':attribute minimal harus :min kilobytes.',
90+
'string' => ':attribute minimal harus :min karakter.',
91+
'array' => ':attribute minimal harus :min variabel.',
92+
],
93+
'not_in' => ':attribute yang terpilih tidak valid.',
94+
'not_regex' => ':attribute format tidak valid.',
95+
'numeric' => ':attribute harus berupa angka.',
96+
'password' => 'password tidak benar.',
97+
'present' => ':attribute harus ada.',
98+
'regex' => ':attribute format tidak valid.',
99+
'required' => ':attribute harus diisi.',
100+
'required_if' => ':attribute harus diisi ketika :other berisi :value.',
101+
'required_unless' => ':attribute harus diisi kecuali :other terdapat pada :values.',
102+
'required_with' => ':attribute harus diisi ketika :values ada.',
103+
'required_with_all' => ':attribute harus diisi ketika :values ada.',
104+
'required_without' => ':attribute harus diisi ketika :values tidak ada.',
105+
'required_without_all' => ':attribute harus diisi ketika tidak terdapat :values.',
106+
'same' => ':attribute dan :other harus sama.',
107+
'size' => [
108+
'numeric' => ':attribute harus :size.',
109+
'file' => ':attribute harus :size kilobytes.',
110+
'string' => ':attribute harus :size karakter.',
111+
'array' => ':attribute harus terdapat :size variabel.',
112+
],
113+
'starts_with' => ':attribute harus dimulai dengan: :values.',
114+
'string' => ':attribute harus berupa teks.',
115+
'timezone' => ':attribute harus berupa zona yang valid.',
116+
'unique' => ':attribute sudah ada.',
117+
'uploaded' => ':attribute gagal diupload.',
118+
'url' => ':attribute format tidak valid.',
119+
'uuid' => ':attribute harus berupa UUID yang valid.',
120+
121+
/*
122+
|--------------------------------------------------------------------------
123+
| Custom Validation Language Lines
124+
|--------------------------------------------------------------------------
125+
|
126+
| Here you may specify custom validation messages for attributes using the
127+
| convention "attribute.rule" to name the lines. This makes it quick to
128+
| specify a specific custom language line for a given attribute rule.
129+
|
130+
*/
131+
132+
'custom' => [
133+
'attribute-name' => [
134+
'rule-name' => 'custom-message',
135+
],
136+
],
137+
138+
/*
139+
|--------------------------------------------------------------------------
140+
| Custom Validation Attributes
141+
|--------------------------------------------------------------------------
142+
|
143+
| The following language lines are used to swap our attribute placeholder
144+
| with something more reader friendly such as "E-Mail Address" instead
145+
| of "email". This simply helps us make our message more expressive.
146+
|
147+
*/
148+
149+
'attributes' => [],
150+
151+
];

0 commit comments

Comments
 (0)