1 # Benagli (India) translations for Rails
2 # by Arindam Ghosh (makghosh@gmail.com)
6 # Used in number_with_delimiter()
7 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
9 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
11 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
13 # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
16 strip_insignificant_zeros: false
18 # Used in number_to_currency()
21 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
24 # These three are to override number.format and are optional
29 strip_insignificant_zeros: false
31 # Used in number_to_percentage()
34 # These three are to override number.format and are optional
39 # Used in number_to_precision()
42 # These three are to override number.format and are optional
47 # Used in number_to_human_size()
50 # These three are to override number.format and are optional
55 strip_insignificant_zeros: true
57 # storage_units: [Bytes, KB, MB, GB, TB]
74 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
77 half_a_minute: "অার্ধেক মিনিট"
80 other: "%{count} সেকেন্ডের কম"
83 other: "%{count} সেকেন্ড"
86 other: "%{count} মিনিটের কম"
89 other: "%{count} মিনিট"
92 other: "প্রায় %{count} ঘন্টা"
98 other: "প্রায় %{count} মাস"
101 other: "%{count} মাস"
104 other: "প্রায় %{count} বছর"
107 other: "%{count} বছরের বেশি"
117 format: "%{attribute} %{message}"
118 messages: &errors_messages
119 inclusion: "লিস্টে অন্তর্ভুক্ত নয়"
120 exclusion: "রিসার্ভ করা অাছে"
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: "বেজোড় হতে হবে"
138 template: &errors_template
140 one: "১ টি ত্রুটির কারনে %{model} সংরক্ষন করা সম্ভব হয়নি"
141 other: "%{count} টি ত্রুটির কারনে %{model} সংরক্ষন করা সম্ভব হয়নি"
142 body: "এই ফিল্ডগুলোতে কিছু সমস্যা দেখা দিয়েছে:"
151 format: "%{attribute} %{message}"
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.
157 # Append your own errors here or at the model/attributes scope.
160 # Overrides default messages
163 # Overrides model and default messages.
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!
172 long: "%e de %B de %Y"
191 # Don't forget the nil at the beginning; there's no such thing as a 0th month
220 # Used in date_select and datime_select.
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"
234 # Used in array.to_sentence.
237 words_connector: ", "
238 two_words_connector: " এবং "
239 last_word_connector: ", এবং "