-
-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed search results not loading until stopped (#391) * Add Vietnamese Co-authored-by: Ulaş Özgüler <ulasozguler@users.noreply.github.com>
- Loading branch information
1 parent
8b126d8
commit 6019759
Showing
1 changed file
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
const locale = { | ||
/** General */ | ||
category: 'thể loại', | ||
settings: 'cài đặt', | ||
pause: 'tạm dừng', | ||
delete: 'xóa', | ||
save: 'lưu', | ||
cancel: 'dừng', | ||
confirm: 'xác nhận', | ||
|
||
/** Torrent */ | ||
torrent: { | ||
title: 'tên', | ||
added: 'added on', | ||
availability: 'khả dụng', | ||
size: 'kích thước', | ||
progress: 'thực hiện', | ||
directory: 'đường dẫn', | ||
downloaded: 'tải xuống', | ||
uploaded: 'tải lên', | ||
created: 'tạo ra bởi', | ||
comments: 'đánh giá' | ||
}, | ||
/** Navbar */ | ||
navbar: { | ||
currentSpeed: 'tốc độ hiện tại', | ||
freeSpace: 'bộ nhớ trống', | ||
topActions: { | ||
addTorrent: 'thêm torrent', | ||
resumeSelected: 'tiếp tục các torrent đã chọn', | ||
pauseSelected: 'dừng các torrent đã chọn', | ||
removeSelected: 'gỡ các torrent đã chọn', | ||
openSettings: 'mở cài đặt', | ||
searchNew: 'tìm torrent mới' | ||
}, | ||
sessionStats: { | ||
tooltip: 'Kể từ lần cuối qBittorent được khởi động lại' | ||
} | ||
}, | ||
|
||
/** Modals */ | ||
modals: { | ||
add: { | ||
title: 'Thêm một torrent mới', | ||
selectFiles: 'Chọn tệp của bạn' | ||
}, | ||
delete: { | ||
check: 'Đồng thời xóa luôn tệp dưới bộ nhớ' | ||
} | ||
}, | ||
|
||
/** Toast */ | ||
toast: { | ||
loginSuccess: 'Đăng nhập thành công! 🎉', | ||
loginFailed: 'Đăng nhập thất bại 😕', | ||
settingsSaved: 'Cài đặt đã lưu thành công!', | ||
categorySaved: 'Thể loại đã chỉnh sửa thành công!' | ||
}, | ||
|
||
/** RightClick **/ | ||
rightClick: { | ||
resume: 'tiếp tục', | ||
forceResume: 'bắt tiếp tục', | ||
advanced: { | ||
advanced: 'nâng cao', | ||
changeLocation: 'thay đổi vị trí', | ||
rename: 'thay đổi tên' | ||
}, | ||
prio: { | ||
prio: 'xét sự ưu tiên', | ||
top: 'trên cùng', | ||
bottom: 'dưới cùng', | ||
increase: 'tăng', | ||
decrease: 'giảm' | ||
}, | ||
category: 'thiết lập thể loại', | ||
limit: 'thiết lập giới hạn', | ||
copy: 'sao chép', | ||
info: 'xem thông tin' | ||
} | ||
} | ||
|
||
export default locale |