From fa55fe5108c38eecd9482efeb5db72f02544cea0 Mon Sep 17 00:00:00 2001
From: begini <32761223+begini@users.noreply.github.com>
Date: Thu, 28 Feb 2019 10:52:26 +0700
Subject: [PATCH] Update validation.php

---
 resources/lang/id/validation.php | 66 ++++++++++++++++----------------
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/resources/lang/id/validation.php b/resources/lang/id/validation.php
index 3c94d6186..41362303d 100644
--- a/resources/lang/id/validation.php
+++ b/resources/lang/id/validation.php
@@ -31,7 +31,7 @@ return [
     'date'                 => ':attribute bukan berupa tanggal yang benar.',
     'date_format'          => ':attribute tidak sesuai dengan format :format.',
     'different'            => ':attribute dan :other harus berbeda.',
-    'digits'               => ':attribute haurs berisi :digits digit.',
+    'digits'               => ':attribute harus berisi :digits digit.',
     'digits_between'       => ':attribute harus antara :min dan :max digit.',
     'dimensions'           => ':attribute berisi dimensi gambar yang tidak benar.',
     'distinct'             => 'Bagian :attribute memiliki duplikasi.',
@@ -48,43 +48,43 @@ return [
     'ipv6'                 => ':attribute harus berupa alamat IPv6 yang benar.',
     'json'                 => ':attribute harus berupa string JSON yang benar.',
     'max'                  => [
-        'numeric' => 'The :attribute may not be greater than :max.',
-        'file'    => 'The :attribute may not be greater than :max kilobytes.',
-        'string'  => 'The :attribute may not be greater than :max characters.',
-        'array'   => 'The :attribute may not have more than :max items.',
+        'numeric' => ':attribute tidak boleh lebih dari :max.',
+        'file'    => ':attribute tidak boleh lebih dari :max kilobyte.',
+        'string'  => ':attribute tidak boleh lebih dari :max karakter.',
+        'array'   => ':attribute tidak boleh lebih dari :max item.',
     ],
-    'mimes'                => 'The :attribute must be a file of type: :values.',
-    'mimetypes'            => 'The :attribute must be a file of type: :values.',
+    'mimes'                => ':attribute harus berupa berkas: :values.',
+    'mimetypes'            => ':attribute harus berupa berkas: :values.',
     'min'                  => [
-        'numeric' => 'The :attribute must be at least :min.',
-        'file'    => 'The :attribute must be at least :min kilobytes.',
-        'string'  => 'The :attribute must be at least :min characters.',
-        'array'   => 'The :attribute must have at least :min items.',
+        'numeric' => ':attribute minimal harus :min.',
+        'file'    => ':attribute minimal harus :min kilobyte.',
+        'string'  => ':attribute minimal harus :min karakter.',
+        'array'   => ':attribute minimal harus berisi :min item.',
     ],
-    'not_in'               => 'The selected :attribute is invalid.',
-    'not_regex'            => 'The :attribute format is invalid.',
-    'numeric'              => 'The :attribute must be a number.',
-    'present'              => 'The :attribute field must be present.',
-    'regex'                => 'The :attribute format is invalid.',
-    'required'             => 'The :attribute field is required.',
-    'required_if'          => 'The :attribute field is required when :other is :value.',
-    'required_unless'      => 'The :attribute field is required unless :other is in :values.',
-    'required_with'        => 'The :attribute field is required when :values is present.',
-    'required_with_all'    => 'The :attribute field is required when :values is present.',
-    'required_without'     => 'The :attribute field is required when :values is not present.',
-    'required_without_all' => 'The :attribute field is required when none of :values are present.',
-    'same'                 => 'The :attribute and :other must match.',
+    'not_in'               => ':attribute yang dipilih tidak benar.',
+    'not_regex'            => 'Format :attribute tidak benar.',
+    'numeric'              => ':attribute harus berupa angka.',
+    'present'              => 'Bagian :attribute harus diisi.',
+    'regex'                => 'Format :attribute tidak benar.',
+    'required'             => 'Bagian :attribute harus diisi.',
+    'required_if'          => 'Bagian :attribute harus diisi jika :other :value.',
+    'required_unless'      => 'Bagian :attribute harus diisi kecuali jika :other :values.',
+    'required_with'        => 'Bagian :attribute harus diisi jika ada :values.',
+    'required_with_all'    => 'Bagian :attribute harus diisi jika ada :values.',
+    'required_without'     => 'Bagian :attribute harus diisi jika tidak ada :values.',
+    'required_without_all' => 'Bagian :attribute harus diisi jika tidak ada :values.',
+    'same'                 => ':attribute dan :other harus sama.',
     'size'                 => [
-        'numeric' => 'The :attribute must be :size.',
-        'file'    => 'The :attribute must be :size kilobytes.',
-        'string'  => 'The :attribute must be :size characters.',
-        'array'   => 'The :attribute must contain :size items.',
+        'numeric' => ':attribute harus :size.',
+        'file'    => ':attribute harus berukuran :size kilobyte.',
+        'string'  => ':attribute harus berisi :size karaker.',
+        'array'   => ':attribute harus berisi :size item.',
     ],
-    'string'               => 'The :attribute must be a string.',
-    'timezone'             => 'The :attribute must be a valid zone.',
-    'unique'               => 'The :attribute has already been taken.',
-    'uploaded'             => 'The :attribute failed to upload.',
-    'url'                  => 'The :attribute format is invalid.',
+    'string'               => ':attribute harus berupa string.',
+    'timezone'             => ':attribute harus berupa zona yang benar.',
+    'unique'               => ':attribute sudah digunakan.',
+    'uploaded'             => ':attribute gagal diunggah.',
+    'url'                  => 'Format :attribute tidak benar.',
     /*
     |--------------------------------------------------------------------------
     | Custom Validation Language Lines