Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Vietnamese #1001

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ <h1>jQuery QueryBuilder
<option value="es">Spanish</option>
<option value="tr">Turkish</option>
<option value="ua">Ukrainian</option>
<option value="vi">Tiếng Việt</option>
</select>
</div>

Expand Down
63 changes: 63 additions & 0 deletions src/i18n/vi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"__locale": "Tiếng Việt (vi)",
"__author": "Tanmv, https://github.com/mvtcode",

"add_rule": "Thêm Filter",
"add_group": "Thêm nhóm",
"delete_rule": "Xóa",
"delete_group": "Xóa",

"conditions": {
"AND": "Và",
"OR": "Hoặc"
},

"operators": {
"equal": "=",
"not_equal": "≠",
"in": "IN",
"not_in": "NOT IN",
"less": "<",
"less_or_equal": "≤",
"greater": ">",
"greater_or_equal": "≥",
"between": "BETWEEN",
"not_between": "NOT BETWEEN",
"begins_with": "Bắt đầu",
"not_begins_with": "Không bắt đầu",
"contains": "Có chứa",
"not_contains": "Không chứa",
"ends_with": "Kết thúc",
"not_ends_with": "Không kết thúc",
"is_empty": "IS EMPTY",
"is_not_empty": "NOT EMPTY",
"is_null": "IS NULL",
"is_not_null": "IS NOT NULL"
},

"errors": {
"no_filter": "Không filter được chọn",
"empty_group": "Nhóm không được rỗng",
"radio_empty": "Không có giá trị",
"checkbox_empty": "Không có giá trị",
"select_empty": "Không có giá trị",
"string_empty": "Không có giá trị",
"string_exceed_min_length": "Phải chứa ít nhất {0} ký tự",
"string_exceed_max_length": "Không được chứa nhiều hơn {0} ký tự",
"string_invalid_format": "Định dạng không đúng ({0})",
"number_nan": "Không phải là số",
"number_not_integer": "Không phải là số nguyên",
"number_not_double": "Không phải là số thực",
"number_exceed_min": "Phải lớn hơn {0}",
"number_exceed_max": "Phải nhỏ hơn {0}",
"number_wrong_step": "Phải là bội của {0}",
"number_between_invalid": "Không hợp lệ, {0} phải lớn hơn {1}",
"datetime_empty": "Giá trị rỗng",
"datetime_invalid": "Ngày tháng không hợp lệ ({0})",
"datetime_exceed_min": "Phải trước {0}",
"datetime_exceed_max": "Phải sau {0}",
"datetime_between_invalid": "Không hợp lệ, {0} phải sau {1}",
"boolean_not_valid": "Không phải boolean",
"operator_not_multiple": "Operator \"{1}\" không cho chọn nhiều giá trị"
}
}