Cachet/resources/lang/id/validation.php

123 lines
5.7 KiB
PHP
Raw Normal View History

2015-05-14 19:22:53 +07:00
<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
2015-05-14 19:22:53 +07:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'Anda harus menerima :attribute .',
'active_url' => ':attribute bukan merupakan URL yang benar.',
'after' => ':attribute harus merupakan tanggal setelah :date.',
'alpha' => ':attribute hanya boleh berisi huruf.',
'alpha_dash' => ':attribute hanya boleh berisi huruf, angka dan tanda minus.',
'alpha_num' => ':attribute hanya boleh berisi huruf dan angka.',
'array' => ':attribute harus merupakan array.',
'before' => ':attribute harus merupakan tanngga sebelum :date.',
'between' => [
2016-05-31 20:18:39 +01:00
'numeric' => ':attribute harus merupakan tanngga sebelum :date.',
'file' => 'The :attribute must be between :min and :max.',
'string' => 'The :attribute must be between :min and :max kilobytes.',
2015-05-14 19:22:53 +07:00
'array' => ':attribute harus antara :min dan :max item.',
],
2016-05-31 20:18:39 +01:00
'boolean' => ':attribute harus antara :min dan :max item.',
'confirmed' => 'The :attribute field must be true or false.',
'date' => 'The :attribute confirmation does not match.',
'date_format' => 'The :attribute is not a valid date.',
'different' => 'The :attribute does not match the format :format.',
'digits' => 'The :attribute and :other must be different.',
'digits_between' => 'The :attribute must be :digits digits.',
'email' => 'The :attribute must be between :min and :max digits.',
'exists' => 'The :attribute must be a valid email address.',
'distinct' => 'The :attribute field has a duplicate value.',
'filled' => 'Format :attribute tidak benar.',
'image' => ':attribute harus merupakan gambar.',
2016-05-31 20:18:39 +01:00
'in' => ':attribute harus merupakan gambar.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The selected :attribute is invalid.',
'ip' => 'The :attribute must be an integer.',
'json' => ':attribute harus merupakan string JSON yang valid.',
'max' => [
2016-05-31 20:18:39 +01:00
'numeric' => 'The :attribute must be a valid IP address.',
'file' => 'The :attribute may not be greater than :max.',
'string' => 'The :attribute may not be greater than :max kilobytes.',
2015-05-14 19:22:53 +07:00
'array' => ':attribute tidak boleh lebih dari :max item.',
],
2016-05-31 20:18:39 +01:00
'mimes' => ':attribute tidak boleh lebih dari :max item.',
'min' => [
2016-05-31 20:18:39 +01:00
'numeric' => 'The :attribute must be a file of type: :values.',
2015-05-14 19:22:53 +07:00
'file' => ':attribute minimal harus :min kilobyte.',
2016-05-31 20:18:39 +01:00
'string' => ':attribute minimal harus :min kilobyte.',
'array' => 'The :attribute must be at least :min characters.',
2015-05-14 19:22:53 +07:00
],
2016-05-31 20:18:39 +01:00
'not_in' => 'The :attribute must have at least :min items.',
'numeric' => 'The selected :attribute is invalid.',
'present' => 'The :attribute field must be present.',
'regex' => 'The :attribute must be a number.',
'required' => 'Format :attribute tidak benar.',
'required_if' => 'The :attribute field is required.',
2015-12-23 12:07:54 +00:00
'required_unless' => 'The :attribute field is required unless :other is in :values.',
2016-05-31 20:18:39 +01:00
'required_with' => 'The :attribute field is required when :other is :value.',
2015-05-14 19:22:53 +07:00
'required_with_all' => ':attribute harus diisi jika ada :values.',
2016-05-31 20:18:39 +01:00
'required_without' => ':attribute harus diisi jika ada :values.',
'required_without_all' => 'The :attribute field is required when :values is not present.',
'same' => 'The :attribute field is required when none of :values are present.',
2015-05-14 19:22:53 +07:00
'size' => [
2016-05-31 20:18:39 +01:00
'numeric' => 'The :attribute and :other must match.',
2015-05-14 19:22:53 +07:00
'file' => ':attribute harus :size kilobyte.',
'string' => ':attribute harus :size karakter.',
2016-05-31 20:18:39 +01:00
'array' => ':attribute harus :size karakter.',
2015-05-14 19:22:53 +07:00
],
2016-05-31 20:18:39 +01:00
'string' => 'The :attribute must contain :size items.',
'timezone' => ':attribute harus merupakan zona yang benar.',
'unique' => ':attribute sudah ada.',
'url' => 'Format :attribute tidak benar.',
2015-05-14 19:22:53 +07:00
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of "email". This simply helps us make messages a little cleaner.
|
*/
'attributes' => [],
];