1 # Vietnamese translation for Ruby on Rails
3 # Do Hai Bac (dohaibac@gmail.com)
4 # Dao Thanh Ngoc (ngocdaothanh@gmail.com, http://github.com/ngocdaothanh/rails-i18n/tree/master)
8 # Used in number_with_delimiter()
9 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
11 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
13 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
15 # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
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 # Used in number_to_percentage()
32 # These three are to override number.format and are optional
37 # Used in number_to_precision()
40 # These three are to override number.format and are optional
45 # Used in number_to_human_size()
48 # These three are to override number.format and are optional
52 storage_units: [Bytes, KB, MB, GB, TB]
54 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
57 half_a_minute: "30 giây"
59 one: "chưa tới 1 giây"
60 other: "chưa tới {{count}} giây"
63 other: "{{count}} giây"
65 one: "chưa tới 1 phút"
66 other: "chưa tới {{count}} phút"
69 other: "{{count}} phút"
72 other: "khoảng {{count}} giờ"
75 other: "{{count}} ngày"
78 other: "khoảng {{count}} tháng"
81 other: "{{count}} tháng"
84 other: "khoảng {{count}} năm"
87 other: "hơn {{count}} năm"
100 one: "1 lỗi ngăn không cho lưu {{model}} này"
101 other: "{{count}} lỗi ngăn không cho lưu {{model}} này"
102 # The variable :count is also available
103 body: "Có lỗi với các mục sau:"
105 # The values :model, :attribute and :value are always available for interpolation
106 # The value :count is available when applicable. Can be used for pluralization.
108 inclusion: "không có trong danh sách"
109 exclusion: "đã được giành trước"
110 invalid: "không hợp lệ"
111 confirmation: "không khớp với xác nhận"
112 accepted: "phải được đồng ý"
113 empty: "không thể rỗng"
114 blank: "không thể để trắng"
115 too_long: "quá dài (tối đa {{count}} ký tự)"
116 too_short: "quá ngắn (tối thiểu {{count}} ký tự)"
117 wrong_length: "độ dài không đúng (phải là {{count}} ký tự)"
119 not_a_number: "không phải là số"
120 greater_than: "phải lớn hơn {{count}}"
121 greater_than_or_equal_to: "phải lớn hơn hoặc bằng {{count}}"
122 equal_to: "phải bằng {{count}}"
123 less_than: "phải nhỏ hơn {{count}}"
124 less_than_or_equal_to: "phải nhỏ hơn hoặc bằng {{count}}"
125 odd: "phải là số chẵn"
126 even: "phải là số lẻ"
127 # Append your own errors here or at the model/attributes scope.
129 # You can define own errors for models or model attributes.
130 # The values :model, :attribute and :value are always available for interpolation.
135 # blank: "This is a custom blank message for {{model}}: {{attribute}}"
138 # blank: "This is a custom blank message for User login"
139 # Will define custom blank validation message for User model and
140 # custom blank validation message for login attribute of User model.
143 # Translate model names. Used in Model.human_name().
147 # will translate User model name to "Dude"
149 # Translate model attribute names. Used in Model.human_attribute_name(attribute).
154 # will translate User attribute "login" as "Handle"
158 # Use the strftime parameters for formats.
159 # When no format has been given, it uses default.
160 # You can provide other formats here if you like!
165 day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
166 abbr_day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
168 # Don't forget the nil at the beginning; there's no such thing as a 0th month
169 month_names: [~, "Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"]
170 abbr_month_names: [~, "Tháng một", "Tháng hai", "Tháng ba", "Tháng tư", "Tháng năm", "Tháng sáu", "Tháng bảy", "Tháng tám", "Tháng chín", "Tháng mười", "Tháng mười một", "Tháng mười hai"]
171 # Used in date_select and datime_select.
172 order: [ :day, :month, :year ]
176 default: "%a, %d %b %Y %H:%M:%S %z"
178 long: "%d %B, %Y %H:%M"
182 # Used in array.to_sentence.
185 words_connector: ", "
186 two_words_connector: " và "
187 last_word_connector: ", và "