]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/bn-IN.yml
Deselect note features when the popup is closed
[rails.git] / vendor / rails-locales / bn-IN.yml
1 # Benagli (India) translations for Rails
2 # by Arindam Ghosh (makghosh@gmail.com)
3
4 bn-IN:
5   number:
6     # Used in number_with_delimiter()
7     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
8     format:
9       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
10       separator: "."
11       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
12       delimiter: ","
13       # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
14       precision: 2
15       significant: false
16       strip_insignificant_zeros: false
17
18     # Used in number_to_currency()
19     currency:
20       format:
21         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
22         format: "%u %n"
23         unit: "₹"
24         # These three are to override number.format and are optional
25         separator: "."
26         delimiter: ","
27         precision: 2
28         significant: false
29         strip_insignificant_zeros: false
30
31     # Used in number_to_percentage()
32     percentage:
33       format:
34         # These three are to override number.format and are optional
35         # separator:
36         delimiter: ""
37         # precision:
38
39     # Used in number_to_precision()
40     precision:
41       format:
42         # These three are to override number.format and are optional
43         # separator:
44         delimiter: ""
45         # precision:
46
47     # Used in number_to_human_size()
48     human:
49       format:
50         # These three are to override number.format and are optional
51         # separator:
52         delimiter: ""
53         precision: 1
54         significant: true
55         strip_insignificant_zeros: true
56       # Rails <= v2.2.2
57       # storage_units: [Bytes, KB, MB, GB, TB]
58       # Rails >= v2.3
59       storage_units:
60         format: "%n %u"
61         units:
62           byte:
63             one:   "Byte"
64             other: "Bytes"
65           kb: "KB"
66           mb: "MB"
67           gb: "GB"
68           tb: "TB"
69       decimal_units:
70         format: "%n %u"
71         units:
72           unit: ""
73
74   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
75   datetime:
76     distance_in_words:
77       half_a_minute: "অার্ধেক মিনিট"
78       less_than_x_seconds:
79         one:  "১ সেকেন্ডর কম "
80         other: "%{count} সেকেন্ডের কম"
81       x_seconds:
82         one:  "১ সেকেন্ড"
83         other: "%{count} সেকেন্ড"
84       less_than_x_minutes:
85         one:  "১ মিনিটের কম"
86         other: "%{count} মিনিটের কম"
87       x_minutes:
88         one:  "১ মিনিট"
89         other: "%{count} মিনিট"
90       about_x_hours:
91         one:  "প্রায় ১ ঘন্টা"
92         other: "প্রায় %{count} ঘন্টা"
93       x_days:
94         one:  "১ দিন"
95         other: "%{count} দিন"
96       about_x_months:
97         one:  "প্রায় ১ মাস"
98         other: "প্রায় %{count} মাস"
99       x_months:
100         one:  "১ মাস"
101         other: "%{count} মাস"
102       about_x_years:
103         one:  "প্রায় ১ বছর"
104         other: "প্রায় %{count} বছর"
105       over_x_years:
106         one:  "১ বছরের বেশি"
107         other: "%{count} বছরের বেশি"
108     prompts:
109       year:   "বছর"
110       month:  "মাস"
111       day:    "দিন"
112       hour:   "ঘন্টা"
113       minute: "মিনিট"
114       second: "সেকেন্ড"
115
116   errors:
117     format: "%{attribute} %{message}"
118     messages: &errors_messages
119       inclusion: "লিস্টে অন্তর্ভুক্ত নয়"
120       exclusion: "রিসার্ভ করা অাছে"
121       invalid: "সঠিক নয়"
122       confirmation: "অনুমোদনের সঙ্গে মিলছে না"
123       accepted: "গ্রাহ্য করতে হবে"
124       empty: "খালি রাখা যাবে না"
125       blank: "ফাঁকা রাখা যাবে না"
126       too_long: "খুব বড়ো (সর্বোচ্চ %{count} অক্ষর)"
127       too_short: "খুব ছোটো (সর্বনিম্ন %{count} অক্ষর)"
128       wrong_length: "দৈর্ঘ্যটি সঠিক নয় (%{count} অক্ষর হতে হবে)"
129       taken: "অাগেই নিয়ে নেওয়া হয়েছে"
130       not_a_number: "নম্বর নয়"
131       greater_than: "%{count} থেকে বড়ো হতে হবে"
132       greater_than_or_equal_to: "%{count} থেকে বড়ো অথবা তার সমান হতে হবে"
133       equal_to: "%{count} এর সঙ্গে সমান হতে হবে"
134       less_than: "%{count} থেকে ছোটো হতে হবে"
135       less_than_or_equal_to: "%{count} থেকে ছোটো অথবা তার সমান হতে হবে"
136       odd: "বেজোড় হতে হবে"
137       even: "জোড় হতে হবে"
138     template: &errors_template
139       header:
140         one:   "১ টি ত্রুটির কারনে %{model} সংরক্ষন করা সম্ভব হয়নি"
141         other:  "%{count} টি ত্রুটির কারনে %{model} সংরক্ষন করা সম্ভব হয়নি"
142       body: "এই ফিল্ডগুলোতে কিছু সমস্যা দেখা দিয়েছে:"
143   
144   activerecord:
145     errors:
146       messages:
147         <<: *errors_messages
148       template:
149         <<: *errors_template
150       full_messages:
151         format: "%{attribute} %{message}"
152
153       # The values :model, :attribute and :value are always available for interpolation
154       # The value :count is available when applicable. Can be used for pluralization.
155       
156
157         # Append your own errors here or at the model/attributes scope.
158
159       # models:
160         # Overrides default messages
161
162       # attributes:
163         # Overrides model and default messages.
164
165   date:
166     formats:
167       # Use the strftime parameters for formats.
168       # When no format has been given, it uses default.
169       # You can provide other formats here if you like!
170       default: "%e/%m/%Y"
171       short: "%e de %b"
172       long: "%e de %B de %Y"
173
174     day_names:
175       - রবিবার
176       - সোমবার
177       - মঙ্গলবার
178       - বুধবার
179       - বৃহস্পতিবার
180       - শুক্রবার
181       - শনিবার
182     abbr_day_names:
183       - রবিবার
184       - সোমবার
185       - মঙ্গলবার
186       - বুধবার
187       - বৃহস্পতিবার
188       - শুক্রবার
189       - শনিবার
190
191     # Don't forget the nil at the beginning; there's no such thing as a 0th month
192     month_names:
193       - ~
194       - জানুয়ারি
195       - ফেব্রুয়ারি
196       - মার্চ
197       - এপ্রিল
198       - মে
199       - জুন
200       - জুলাই
201       - অগাস্ট
202       - সেপ্টেমবার
203       - অক্টোবার
204       - নভেম্বার
205       - ডিসেম্বার
206     abbr_month_names:
207       - ~
208       - জানুয়ারি
209       - ফেব্রুয়ারি
210       - মার্চ
211       - এপ্রিল
212       - মে
213       - জুন
214       - জুলাই
215       - অগাস্ট
216       - সেপ্টেমবার
217       - অক্টোবার
218       - নভেম্বার
219       - ডিসেম্বার
220     # Used in date_select and datime_select.
221     order:
222       - :year
223       - :month
224       - :day
225
226   time:
227     formats:
228       default: "%A, %e de %B de %Y %H:%M:%S %z"
229       short: "%e de %b %H:%M"
230       long: "%e de %B de %Y %H:%M"
231     am: "am"
232     pm: "pm"
233
234 # Used in array.to_sentence.
235   support:
236     array:
237       words_connector: ", "
238       two_words_connector: " এবং "
239       last_word_connector: ", এবং "