4 * The following language lines contain the default error messages used by
5 * the validator class. Some of these rules have multiple versions such
6 * as the size rules. Feel free to tweak each of these messages here.
10 // Standard laravel validation lines
11 'accepted' => ':attribute harus diterima.',
12 'active_url' => ':attribute bukan URL yang valid.',
13 'after' => ':attribute harus setelah tanggal :date.',
14 'alpha' => ':attribute hanya boleh berisi huruf.',
15 'alpha_dash' => ':attribute hanya boleh berisi huruf, angka, tanda hubung, dan garis bawah.',
16 'alpha_num' => ':attribute hanya boleh berisi huruf dan angka.',
17 'array' => ':attribute harus berupa larik.',
18 'backup_codes' => 'Kode yang diberikan tidak valid atau telah digunakan.',
19 'before' => ':attribute harus tanggal sebelum :date.',
21 'numeric' => ':attribute harus di antara :min dan :max.',
22 'file' => ':attribute harus diantara :min dan :max kilobyte.',
23 'string' => ':attribute harus memiliki karakter antara :min dan :max.',
24 'array' => ':attribute harus memiliki item antara :min dan :max.',
26 'boolean' => ':attribute bidang harus berisi benar atau salah.',
27 'confirmed' => ':attribute konfirmasi tidak sama.',
28 'date' => ':attribute bukan tanggal yang valid.',
29 'date_format' => ':attribute tidak sesuai dengan format :format.',
30 'different' => ':attribute dan :other harus berbeda.',
31 'digits' => ':attribute harus :digits digit.',
32 'digits_between' => ':attribute harus diantara :min dan :max digit.',
33 'email' => ':attrtibute Harus alamat e-mail yang valid.',
34 'ends_with' => ':attribute harus diakhiri dengan salah satu dari berikut ini: :values',
35 'file' => ':attribute harus diberikan sebagai file yang valid.',
36 'filled' => ':attribute bidang diperlukan.',
38 'numeric' => ':attribute harus lebih besar dari :value.',
39 'file' => ':attribute harus lebih besar dari :value kilobyte.',
40 'string' => ':attribute harus lebih besar dari :value karakter.',
41 'array' => ':attribute harus memiliki lebih dari item :value.',
44 'numeric' => ':attribute harus lebih besar dari atau sama dengan :value.',
45 'file' => ':attribute harus lebih besar dari atau sama dengan :value kilobyte.',
46 'string' => ':attribute harus lebih besar dari atau sama dengan karakter :value.',
47 'array' => ':attribute harus memiliki :value item atau lebih.',
49 'exists' => ':attribute yang dipilih tidak valid.',
50 'image' => ':attribute harus berupa gambar.',
51 'image_extension' => ':attribute harus memiliki ekstensi gambar yang valid & didukung.',
52 'in' => ':attribute yang dipilih tidak valid.',
53 'integer' => ':attribute harus berupa bilangan bulat.',
54 'ip' => ':attribute harus berupa alamat IP yang valid.',
55 'ipv4' => ':attribute harus berupa alamat IPv4 yang valid.',
56 'ipv6' => ':attribute harus berupa alamat IPv6 yang valid.',
57 'json' => ':attribute harus berupa string JSON yang valid.',
59 'numeric' => ':attribute harus kurang dari :value.',
60 'file' => ':attribute harus kurang dari :value kilobyte.',
61 'string' => ':attribute harus kurang dari :value karakter.',
62 'array' => ':attribute harus memiliki kurang dari :value item.',
65 'numeric' => ':attribute harus kurang dari atau sama dengan :value.',
66 'file' => ':attribute harus kurang dari atau sama dengan :value kilobyte.',
67 'string' => ':attribute harus kurang dari atau sama dengan :value karakter.',
68 'array' => ':attribute tidak boleh memiliki lebih dari :value item.',
71 'numeric' => ':attribute tidak boleh lebih dari :max.',
72 'file' => ':attribute tidak boleh lebih dari :max kilobyte.',
73 'string' => ':attribute tidak boleh lebih dari :max karakter.',
74 'array' => ':attribute tidak boleh memiliki lebih dari :max item.',
76 'mimes' => ':attribute harus berupa file dengan tipe: :value.',
78 'numeric' => ':attribute minimal harus :min.',
79 'file' => ':attribute minimal harus :min kilobyte.',
80 'string' => ':attribute setidaknya harus :min karakter.',
81 'array' => ':attribute minimal harus memiliki :min item.',
83 'not_in' => ':attribute yang dipilih tidak valid.',
84 'not_regex' => ':attribute format tidak valid.',
85 'numeric' => ':attribute harus berupa nomot.',
86 'regex' => 'Format :attribute tidak valid.',
87 'required' => ':attribute bidang harus diisi.',
88 'required_if' => ':attribute Bidang harus diisi saat :other atau :value.',
89 'required_with' => 'Bidang :attribute harus diisi jika ada :nilai.',
90 'required_with_all' => 'Bidang :attribute harus diisi jika ada :values.',
91 'required_without' => 'Bidang :attribute harus diisi jika :values tidak ada.',
92 'required_without_all' => 'Bidang :attribute harus diisi jika tidak ada :value yang ada.',
93 'same' => ':attribute dan :other harus sama.',
94 'safe_url' => 'Tautan yang diberikan mungkin tidak aman.',
96 'numeric' => ':attribute harus berukuran :size.',
97 'file' => ':attribute harus berukuran :size kilobyte.',
98 'string' => ':attribute harus memiliki karakter berukuran :size.',
99 'array' => ':attribute harus mengandung :size item.',
101 'string' => ':attribute harus berupa string.',
102 'timezone' => ':attribute harus menjadi zona yang valid.',
103 'totp' => 'Kode yang diberikan tidak valid atau telah kedaluwarsa.',
104 'unique' => ':attribute sudah diambil.',
105 'url' => ':attribute format tidak valid.',
106 'uploaded' => 'Berkas tidak dapat diunggah. Server mungkin tidak menerima berkas dengan ukuran ini.',
108 'zip_file' => 'The :attribute needs to reference a file within the ZIP.',
109 'zip_file_mime' => 'The :attribute needs to reference a file of type :validTypes, found :foundType.',
110 'zip_model_expected' => 'Data object expected but ":type" found.',
111 'zip_unique' => 'The :attribute must be unique for the object type within the ZIP.',
113 // Custom validation lines
115 'password-confirm' => [
116 'required_with' => 'Konfirmasi kata sandi diperlukan',
120 // Custom validation attributes