Skip to content

Commit 1b38971

Browse files
committed
New translations validation.php (Nepali)
1 parent 2bdf84d commit 1b38971

File tree

1 file changed

+85
-85
lines changed

1 file changed

+85
-85
lines changed

lang/ne/validation.php

Lines changed: 85 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -8,112 +8,112 @@
88
return [
99

1010
// Standard laravel validation lines
11-
'accepted' => 'The :attribute must be accepted.',
12-
'active_url' => 'The :attribute is not a valid URL.',
13-
'after' => 'The :attribute must be a date after :date.',
14-
'alpha' => 'The :attribute may only contain letters.',
15-
'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.',
16-
'alpha_num' => 'The :attribute may only contain letters and numbers.',
17-
'array' => 'The :attribute must be an array.',
18-
'backup_codes' => 'The provided code is not valid or has already been used.',
19-
'before' => 'The :attribute must be a date before :date.',
11+
'accepted' => ':attribute स्वीकार गर्नुपर्छ।',
12+
'active_url' => ':attribute मान्य URL होइन।',
13+
'after' => ':attribute मिति :date पछिको हुनुपर्छ।',
14+
'alpha' => ':attribute मा अक्षर मात्र हुनुपर्छ।',
15+
'alpha_dash' => ':attribute मा अक्षर, अंक, ड्यास (-) र अन्डरस्कोर (_) मात्र हुनुपर्छ।',
16+
'alpha_num' => ':attribute मा अक्षर र अंक मात्र हुनुपर्छ।',
17+
'array' => ':attribute array हुनुपर्छ।',
18+
'backup_codes' => 'दिइएको कोड गलत छ वा पहिल्यै प्रयोग भइसकेको छ।',
19+
'before' => ':attribute मिति :date भन्दा पहिला हुनुपर्छ।',
2020
'between' => [
21-
'numeric' => 'The :attribute must be between :min and :max.',
22-
'file' => 'The :attribute must be between :min and :max kilobytes.',
23-
'string' => 'The :attribute must be between :min and :max characters.',
24-
'array' => 'The :attribute must have between :min and :max items.',
21+
'numeric' => ':attribute :min देखि :max बीचमा हुनुपर्छ।',
22+
'file' => ':attribute :min देखि :max किलोबाइट बीचमा हुनुपर्छ।',
23+
'string' => ':attribute :min देखि :max क्यारेक्टरबीच हुनुपर्छ।',
24+
'array' => ':attribute मा :min देखि :max वस्तुहरू हुनुपर्छ।',
2525
],
26-
'boolean' => 'The :attribute field must be true or false.',
27-
'confirmed' => 'The :attribute confirmation does not match.',
28-
'date' => 'The :attribute is not a valid date.',
29-
'date_format' => 'The :attribute does not match the format :format.',
30-
'different' => 'The :attribute and :other must be different.',
31-
'digits' => 'The :attribute must be :digits digits.',
32-
'digits_between' => 'The :attribute must be between :min and :max digits.',
33-
'email' => 'The :attribute must be a valid email address.',
34-
'ends_with' => 'The :attribute must end with one of the following: :values',
35-
'file' => 'The :attribute must be provided as a valid file.',
36-
'filled' => 'The :attribute field is required.',
26+
'boolean' => ':attribute साँचो (true) वा झूटो (false) हुनुपर्छ।',
27+
'confirmed' => ':attribute पुष्टि मिलेन।',
28+
'date' => ':attribute मान्य मिति होइन।',
29+
'date_format' => ':attribute ढाँचा :format सँग मेल खाँदैन।',
30+
'different' => ':attribute :other फरक हुनुपर्छ।',
31+
'digits' => ':attribute मा ठीक :digits अंक हुनुपर्छ।',
32+
'digits_between' => ':attribute मा :min देखि :max अंक हुनुपर्छ।',
33+
'email' => ':attribute मान्य ईमेल ठेगाना हुनुपर्छ।',
34+
'ends_with' => ':attribute यी मध्ये एकले अन्त्य हुनुपर्छ: :values',
35+
'file' => ':attribute मान्य फाइल हुनुपर्छ।',
36+
'filled' => ':attribute आवश्यक छ।',
3737
'gt' => [
38-
'numeric' => 'The :attribute must be greater than :value.',
39-
'file' => 'The :attribute must be greater than :value kilobytes.',
40-
'string' => 'The :attribute must be greater than :value characters.',
41-
'array' => 'The :attribute must have more than :value items.',
38+
'numeric' => ':attribute :value भन्दा बढी हुनुपर्छ।',
39+
'file' => ':attribute :value किलोबाइटभन्दा बढी हुनुपर्छ।',
40+
'string' => ':attribute :value क्यारेक्टरभन्दा बढी हुनुपर्छ।',
41+
'array' => ':attribute मा :value भन्दा बढी वस्तुहरू हुनुपर्छ।',
4242
],
4343
'gte' => [
44-
'numeric' => 'The :attribute must be greater than or equal :value.',
45-
'file' => 'The :attribute must be greater than or equal :value kilobytes.',
46-
'string' => 'The :attribute must be greater than or equal :value characters.',
47-
'array' => 'The :attribute must have :value items or more.',
44+
'numeric' => ':attribute :value भन्दा बढी वा बराबर हुनुपर्छ।',
45+
'file' => ':attribute :value किलोबाइटभन्दा बढी वा बराबर हुनुपर्छ।',
46+
'string' => ':attribute :value क्यारेक्टरभन्दा बढी वा बराबर हुनुपर्छ।',
47+
'array' => ':attribute मा कम्तीमा :value वस्तुहरू हुनुपर्छ।',
4848
],
49-
'exists' => 'The selected :attribute is invalid.',
50-
'image' => 'The :attribute must be an image.',
51-
'image_extension' => 'The :attribute must have a valid & supported image extension.',
52-
'in' => 'The selected :attribute is invalid.',
53-
'integer' => 'The :attribute must be an integer.',
54-
'ip' => 'The :attribute must be a valid IP address.',
55-
'ipv4' => 'The :attribute must be a valid IPv4 address.',
56-
'ipv6' => 'The :attribute must be a valid IPv6 address.',
57-
'json' => 'The :attribute must be a valid JSON string.',
49+
'exists' => 'चयन गरिएको :attribute अमान्य छ।',
50+
'image' => ':attribute एउटा तस्बिर हुनुपर्छ।',
51+
'image_extension' => ':attribute मा मान्य र समर्थित तस्बिर विस्तार (extension) हुनुपर्छ।',
52+
'in' => 'चयन गरिएको :attribute अमान्य छ।',
53+
'integer' => ':attribute पूर्णांक (integer) हुनुपर्छ।',
54+
'ip' => ':attribute मान्य IP ठेगाना हुनुपर्छ।',
55+
'ipv4' => ':attribute मान्य IPv4 ठेगाना हुनुपर्छ।',
56+
'ipv6' => ':attribute मान्य IPv6 ठेगाना हुनुपर्छ।',
57+
'json' => ':attribute मान्य JSON स्ट्रिङ हुनुपर्छ।',
5858
'lt' => [
59-
'numeric' => 'The :attribute must be less than :value.',
60-
'file' => 'The :attribute must be less than :value kilobytes.',
61-
'string' => 'The :attribute must be less than :value characters.',
62-
'array' => 'The :attribute must have less than :value items.',
59+
'numeric' => ':attribute :value भन्दा कम हुनुपर्छ।',
60+
'file' => ':attribute :value किलोबाइटभन्दा कम हुनुपर्छ।',
61+
'string' => ':attribute :value क्यारेक्टरभन्दा कम हुनुपर्छ।',
62+
'array' => ':attribute मा :value भन्दा कम वस्तुहरू हुनुपर्छ।',
6363
],
6464
'lte' => [
65-
'numeric' => 'The :attribute must be less than or equal :value.',
66-
'file' => 'The :attribute must be less than or equal :value kilobytes.',
67-
'string' => 'The :attribute must be less than or equal :value characters.',
68-
'array' => 'The :attribute must not have more than :value items.',
65+
'numeric' => ':attribute :value भन्दा कम वा बराबर हुनुपर्छ।',
66+
'file' => ':attribute :value किलोबाइटभन्दा कम वा बराबर हुनुपर्छ।',
67+
'string' => ':attribute :value क्यारेक्टरभन्दा कम वा बराबर हुनुपर्छ।',
68+
'array' => ':attribute मा :value भन्दा बढी वस्तुहरू हुनु हुँदैन।',
6969
],
7070
'max' => [
71-
'numeric' => 'The :attribute may not be greater than :max.',
72-
'file' => 'The :attribute may not be greater than :max kilobytes.',
73-
'string' => 'The :attribute may not be greater than :max characters.',
74-
'array' => 'The :attribute may not have more than :max items.',
71+
'numeric' => ':attribute :max भन्दा बढी हुन सक्दैन।',
72+
'file' => ':attribute :max किलोबाइटभन्दा बढी हुन सक्दैन।',
73+
'string' => ':attribute :max क्यारेक्टरभन्दा बढी हुन सक्दैन।',
74+
'array' => ':attribute मा :max भन्दा बढी वस्तुहरू हुनु हुँदैन।',
7575
],
76-
'mimes' => 'The :attribute must be a file of type: :values.',
76+
'mimes' => ':attribute फाइलको प्रकार :values हुनुपर्छ।',
7777
'min' => [
78-
'numeric' => 'The :attribute must be at least :min.',
79-
'file' => 'The :attribute must be at least :min kilobytes.',
80-
'string' => 'The :attribute must be at least :min characters.',
81-
'array' => 'The :attribute must have at least :min items.',
78+
'numeric' => ':attribute कम्तीमा :min हुनुपर्छ।',
79+
'file' => ':attribute कम्तीमा :min किलोबाइट हुनुपर्छ।',
80+
'string' => ':attribute कम्तीमा :min क्यारेक्टर हुनुपर्छ।',
81+
'array' => ':attribute मा कम्तीमा :min वस्तुहरू हुनुपर्छ।',
8282
],
83-
'not_in' => 'The selected :attribute is invalid.',
84-
'not_regex' => 'The :attribute format is invalid.',
85-
'numeric' => 'The :attribute must be a number.',
86-
'regex' => 'The :attribute format is invalid.',
87-
'required' => 'The :attribute field is required.',
88-
'required_if' => 'The :attribute field is required when :other is :value.',
89-
'required_with' => 'The :attribute field is required when :values is present.',
90-
'required_with_all' => 'The :attribute field is required when :values is present.',
91-
'required_without' => 'The :attribute field is required when :values is not present.',
92-
'required_without_all' => 'The :attribute field is required when none of :values are present.',
93-
'same' => 'The :attribute and :other must match.',
94-
'safe_url' => 'The provided link may not be safe.',
83+
'not_in' => 'चयन गरिएको :attribute अमान्य छ।',
84+
'not_regex' => ':attribute को ढाँचा अमान्य छ।',
85+
'numeric' => ':attribute संख्या हुनुपर्छ।',
86+
'regex' => ':attribute ढाँचा अमान्य छ।',
87+
'required' => ':attribute आवश्यक छ।',
88+
'required_if' => ':other :value हुँदा :attribute आवश्यक हुन्छ।',
89+
'required_with' => ':values भएमा :attribute आवश्यक छ।',
90+
'required_with_all' => ':values भएमा :attribute आवश्यक छ।',
91+
'required_without' => ':values नभएमा :attribute आवश्यक छ।',
92+
'required_without_all' => ':values मध्ये कुनै पनि नभएमा :attribute आवश्यक छ।',
93+
'same' => ':attribute :other मिल्नुपर्छ।',
94+
'safe_url' => 'दिएको लिङ्क सुरक्षित नहुन सक्छ।',
9595
'size' => [
96-
'numeric' => 'The :attribute must be :size.',
97-
'file' => 'The :attribute must be :size kilobytes.',
98-
'string' => 'The :attribute must be :size characters.',
99-
'array' => 'The :attribute must contain :size items.',
96+
'numeric' => ':attribute ठीक :size हुनुपर्छ।',
97+
'file' => ':attribute ठीक :size किलोबाइट हुनुपर्छ।',
98+
'string' => ':attribute ठीक :size क्यारेक्टर हुनुपर्छ।',
99+
'array' => ':attribute मा ठीक :size वस्तुहरू हुनुपर्छ।',
100100
],
101-
'string' => 'The :attribute must be a string.',
102-
'timezone' => 'The :attribute must be a valid zone.',
103-
'totp' => 'The provided code is not valid or has expired.',
104-
'unique' => 'The :attribute has already been taken.',
105-
'url' => 'The :attribute format is invalid.',
106-
'uploaded' => 'The file could not be uploaded. The server may not accept files of this size.',
101+
'string' => ':attribute स्ट्रिङ (पाठ) हुनुपर्छ।',
102+
'timezone' => ':attribute मान्य समय क्षेत्र (timezone) हुनुपर्छ।',
103+
'totp' => 'दिएको कोड गलत छ वा सकिएको छ।',
104+
'unique' => ':attribute पहिल्यै प्रयोग भइसकेको छ।',
105+
'url' => ':attribute को ढाँचा अमान्य छ।',
106+
'uploaded' => 'फाइल अपलोड हुन सकेन। सर्भरले यस्तो साइज स्वीकार नगर्न सक्छ।',
107107

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.',
108+
'zip_file' => ':attribute ले ZIP फाइलभित्रको फाइल देखाउनु पर्छ।',
109+
'zip_file_mime' => ':attribute मा :validTypes प्रकारको फाइल हुनुपर्छ, तर :foundType भेटियो।',
110+
'zip_model_expected' => 'डेटा वस्तु चाहिएको थियो तर ":type" भेटियो।',
111+
'zip_unique' => ':attribute ZIP भित्रको वस्तु प्रकारको लागि अद्वितीय हुनुपर्छ।',
112112

113113
// Custom validation lines
114114
'custom' => [
115115
'password-confirm' => [
116-
'required_with' => 'Password confirmation required',
116+
'required_with' => 'पासवर्ड पुष्टि आवश्यक छ।',
117117
],
118118
],
119119

0 commit comments

Comments
 (0)