]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/vi.yml
Updated rails translations from http://github.com/svenfuchs/rails-i18n
[rails.git] / vendor / plugins / rails-i18n / locale / vi.yml
1 # Vietnamese translation for Ruby on Rails
2 # by
3 #   Do Hai Bac (dohaibac@gmail.com)
4 #   Dao Thanh Ngoc (ngocdaothanh@gmail.com, http://github.com/ngocdaothanh/rails-i18n/tree/master)
5
6 vi:
7   number:
8     # Used in number_with_delimiter()
9     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
10     format:
11       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
12       separator: ","
13       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
14       delimiter: "."
15       # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
16       precision: 3
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: "%n %u"
23         unit: "đồng"
24         # These three are to override number.format and are optional
25         separator: ","
26         delimiter: "."
27         precision: 2
28
29     # Used in number_to_percentage()
30     percentage:
31       format:
32         # These three are to override number.format and are optional
33         # separator:
34         delimiter: ""
35         # precision:
36
37     # Used in number_to_precision()
38     precision:
39       format:
40         # These three are to override number.format and are optional
41         # separator:
42         delimiter: ""
43         # precision:
44
45     # Used in number_to_human_size()
46     human:
47       format:
48         # These three are to override number.format and are optional
49         # separator:
50         delimiter: ""
51         precision: 1
52       storage_units:
53           # Storage units output formatting.
54           # %u is the storage unit, %n is the number (default: 2 MB)
55           format: "%n %u"
56           units:
57             byte:
58               one:   "Byte"
59               other: "Byte"
60             kb: "KB"
61             mb: "MB"
62             gb: "GB"
63             tb: "TB"
64
65   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
66   datetime:
67     distance_in_words:
68       half_a_minute: "30 giây"
69       less_than_x_seconds:
70         one:   "chưa tới 1 giây"
71         other: "chưa tới {{count}} giây"
72       x_seconds:
73         one:   "1 giây"
74         other: "{{count}} giây"
75       less_than_x_minutes:
76         one:   "chưa tới 1 phút"
77         other: "chưa tới {{count}} phút"
78       x_minutes:
79         one:   "1 phút"
80         other: "{{count}} phút"
81       about_x_hours:
82         one:   "khoảng 1 giờ"
83         other: "khoảng {{count}} giờ"
84       x_days:
85         one:   "1 ngày"
86         other: "{{count}} ngày"
87       about_x_months:
88         one:   "khoảng 1 tháng"
89         other: "khoảng {{count}} tháng"
90       x_months:
91         one:   "1 tháng"
92         other: "{{count}} tháng"
93       about_x_years:
94         one:   "khoảng 1 năm"
95         other: "khoảng {{count}} năm"
96       over_x_years:
97         one:   "hơn 1 năm"
98         other: "hơn {{count}} năm"
99     prompts:
100       year:   "Năm"
101       month:  "Tháng"
102       day:    "Ngày"
103       hour:   "Giờ"
104       minute: "Phút"
105       second: "Giây"
106
107   activerecord:
108     errors:
109       template:
110         header:
111           one:   "1 lỗi ngăn không cho lưu {{model}} này"
112           other: "{{count}} lỗi ngăn không cho lưu {{model}} này"
113         # The variable :count is also available
114         body: "Có lỗi với các mục sau:"
115
116       # The values :model, :attribute and :value are always available for interpolation
117       # The value :count is available when applicable. Can be used for pluralization.
118       messages:
119         inclusion: "không có trong danh sách"
120         exclusion: "đã được giành trước"
121         invalid: "không hợp lệ"
122         confirmation: "không khớp với xác nhận"
123         accepted: "phải được đồng ý"
124         empty: "không thể rỗng"
125         blank: "không thể để trắng"
126         too_long: "quá dài (tối đa {{count}} ký tự)"
127         too_short: "quá ngắn (tối thiểu {{count}} ký tự)"
128         wrong_length: "độ dài không đúng (phải là {{count}} ký tự)"
129         taken: "đã có"
130         not_a_number: "không phải là số"
131         greater_than: "phải lớn hơn {{count}}"
132         greater_than_or_equal_to: "phải lớn hơn hoặc bằng {{count}}"
133         equal_to: "phải bằng {{count}}"
134         less_than: "phải nhỏ hơn {{count}}"
135         less_than_or_equal_to: "phải nhỏ hơn hoặc bằng {{count}}"
136         odd: "phải là số chẵn"
137         even: "phải là số lẻ"
138         # Append your own errors here or at the model/attributes scope.
139
140       # You can define own errors for models or model attributes.
141       # The values :model, :attribute and :value are always available for interpolation.
142       #
143       # For example,
144       #   models:
145       #     user:
146       #       blank: "This is a custom blank message for {{model}}: {{attribute}}"
147       #       attributes:
148       #         login:
149       #           blank: "This is a custom blank message for User login"
150       # Will define custom blank validation message for User model and 
151       # custom blank validation message for login attribute of User model.
152       # models:
153         
154     # Translate model names. Used in Model.human_name().
155     #models:
156       # For example,
157       #   user: "Dude"
158       # will translate User model name to "Dude"
159     
160     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
161     #attributes:
162       # For example,
163       #   user:
164       #     login: "Handle"
165       # will translate User attribute "login" as "Handle"
166
167   date:
168     formats:
169       # Use the strftime parameters for formats.
170       # When no format has been given, it uses default.
171       # You can provide other formats here if you like!
172       default: "%d-%m-%Y"
173       short: "%d %b"
174       long: "%d %B, %Y"
175
176     day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
177     abbr_day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
178
179     # Don't forget the nil at the beginning; there's no such thing as a 0th month
180     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"]
181     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"]
182     # Used in date_select and datime_select.
183     order: [ :day, :month, :year ]
184
185   time:
186     formats:
187       default: "%a, %d %b %Y %H:%M:%S %z"
188       short: "%d %b %H:%M"
189       long: "%d %B, %Y %H:%M"
190     am: "sáng"
191     pm: "chiều"
192
193   # Used in array.to_sentence.
194   support:
195     array:
196       words_connector: ", "
197       two_words_connector: " và "
198       last_word_connector: ", và "