]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/vi.yml
First stage of i18n. Some migrations and extra plugins.
[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: [Bytes, KB, MB, GB, TB]
53
54   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
55   datetime:
56     distance_in_words:
57       half_a_minute: "30 giây"
58       less_than_x_seconds:
59         one:   "chưa tới 1 giây"
60         other: "chưa tới {{count}} giây"
61       x_seconds:
62         one:   "1 giây"
63         other: "{{count}} giây"
64       less_than_x_minutes:
65         one:   "chưa tới 1 phút"
66         other: "chưa tới {{count}} phút"
67       x_minutes:
68         one:   "1 phút"
69         other: "{{count}} phút"
70       about_x_hours:
71         one:   "khoảng 1 giờ"
72         other: "khoảng {{count}} giờ"
73       x_days:
74         one:   "1 ngày"
75         other: "{{count}} ngày"
76       about_x_months:
77         one:   "khoảng 1 tháng"
78         other: "khoảng {{count}} tháng"
79       x_months:
80         one:   "1 tháng"
81         other: "{{count}} tháng"
82       about_x_years:
83         one:   "khoảng 1 năm"
84         other: "khoảng {{count}} năm"
85       over_x_years:
86         one:   "hơn 1 năm"
87         other: "hơn {{count}} năm"
88     prompts:
89       year:   "Năm"
90       month:  "Tháng"
91       day:    "Ngày"
92       hour:   "Giờ"
93       minute: "Phút"
94       second: "Giây"
95
96   activerecord:
97     errors:
98       template:
99         header:
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:"
104
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.
107       messages:
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ự)"
118         taken: "đã có"
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.
128
129       # You can define own errors for models or model attributes.
130       # The values :model, :attribute and :value are always available for interpolation.
131       #
132       # For example,
133       #   models:
134       #     user:
135       #       blank: "This is a custom blank message for {{model}}: {{attribute}}"
136       #       attributes:
137       #         login:
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.
141       # models:
142         
143     # Translate model names. Used in Model.human_name().
144     #models:
145       # For example,
146       #   user: "Dude"
147       # will translate User model name to "Dude"
148     
149     # Translate model attribute names. Used in Model.human_attribute_name(attribute).
150     #attributes:
151       # For example,
152       #   user:
153       #     login: "Handle"
154       # will translate User attribute "login" as "Handle"
155
156   date:
157     formats:
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!
161       default: "%d-%m-%Y"
162       short: "%d %b"
163       long: "%d %B, %Y"
164
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"]
167
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 ]
173
174   time:
175     formats:
176       default: "%a, %d %b %Y %H:%M:%S %z"
177       short: "%d %b %H:%M"
178       long: "%d %B, %Y %H:%M"
179     am: "sáng"
180     pm: "chiều"
181
182   # Used in array.to_sentence.
183   support:
184     array:
185       words_connector: ", "
186       two_words_connector: " và "
187       last_word_connector: ", và "