You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vi.yml 59KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237
  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. # Nguyen Minh Thien (thiencdcn@gmail.com, http://www.eDesignLab.org)
  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. # Used in number_to_currency()
  18. currency:
  19. format:
  20. # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
  21. format: "%n %u"
  22. unit: "đồng"
  23. # These three are to override number.format and are optional
  24. separator: ","
  25. delimiter: "."
  26. precision: 2
  27. # Used in number_to_percentage()
  28. percentage:
  29. format:
  30. # These three are to override number.format and are optional
  31. # separator:
  32. delimiter: ""
  33. # precision:
  34. # Used in number_to_precision()
  35. precision:
  36. format:
  37. # These three are to override number.format and are optional
  38. # separator:
  39. delimiter: ""
  40. # precision:
  41. # Used in number_to_human_size()
  42. human:
  43. format:
  44. # These three are to override number.format and are optional
  45. # separator:
  46. delimiter: ""
  47. precision: 3
  48. storage_units:
  49. format: "%n %u"
  50. units:
  51. byte:
  52. one: "Byte"
  53. other: "Bytes"
  54. kb: "KB"
  55. mb: "MB"
  56. gb: "GB"
  57. tb: "TB"
  58. # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
  59. datetime:
  60. distance_in_words:
  61. half_a_minute: "30 giây"
  62. less_than_x_seconds:
  63. one: "chưa tới 1 giây"
  64. other: "chưa tới %{count} giây"
  65. x_seconds:
  66. one: "1 giây"
  67. other: "%{count} giây"
  68. less_than_x_minutes:
  69. one: "chưa tới 1 phút"
  70. other: "chưa tới %{count} phút"
  71. x_minutes:
  72. one: "1 phút"
  73. other: "%{count} phút"
  74. about_x_hours:
  75. one: "khoảng 1 giờ"
  76. other: "khoảng %{count} giờ"
  77. x_hours:
  78. one: "1 giờ"
  79. other: "%{count} giờ"
  80. x_days:
  81. one: "1 ngày"
  82. other: "%{count} ngày"
  83. about_x_months:
  84. one: "khoảng 1 tháng"
  85. other: "khoảng %{count} tháng"
  86. x_months:
  87. one: "1 tháng"
  88. other: "%{count} tháng"
  89. about_x_years:
  90. one: "khoảng 1 năm"
  91. other: "khoảng %{count} năm"
  92. over_x_years:
  93. one: "hơn 1 năm"
  94. other: "hơn %{count} năm"
  95. almost_x_years:
  96. one: "gần 1 năm"
  97. other: "gần %{count} năm"
  98. prompts:
  99. year: "Năm"
  100. month: "Tháng"
  101. day: "Ngày"
  102. hour: "Giờ"
  103. minute: "Phút"
  104. second: "Giây"
  105. activerecord:
  106. errors:
  107. template:
  108. header:
  109. one: "1 lỗi ngăn không cho lưu %{model} này"
  110. other: "%{count} lỗi ngăn không cho lưu %{model} này"
  111. # The variable :count is also available
  112. body: "Có lỗi với các mục sau:"
  113. # The values :model, :attribute and :value are always available for interpolation
  114. # The value :count is available when applicable. Can be used for pluralization.
  115. messages:
  116. inclusion: "không có trong danh sách"
  117. exclusion: "đã được giành trước"
  118. invalid: "không hợp lệ"
  119. confirmation: "không khớp với xác nhận"
  120. accepted: "phải được đồng ý"
  121. empty: "không thể rỗng"
  122. blank: "không thể để trắng"
  123. too_long: "quá dài (tối đa %{count} ký tự)"
  124. too_short: "quá ngắn (tối thiểu %{count} ký tự)"
  125. wrong_length: "độ dài không đúng (phải là %{count} ký tự)"
  126. taken: "đã có"
  127. not_a_number: "không phải là số"
  128. greater_than: "phải lớn hơn %{count}"
  129. greater_than_or_equal_to: "phải lớn hơn hoặc bằng %{count}"
  130. equal_to: "phải bằng %{count}"
  131. less_than: "phải nhỏ hơn %{count}"
  132. less_than_or_equal_to: "phải nhỏ hơn hoặc bằng %{count}"
  133. odd: "phải là số chẵn"
  134. even: "phải là số lẻ"
  135. greater_than_start_date: "phải đi sau ngày bắt đầu"
  136. not_same_project: "không thuộc cùng dự án"
  137. circular_dependency: "quan hệ có thể gây ra lặp vô tận"
  138. cant_link_an_issue_with_a_descendant: "Một vấn đề không thể liên kết tới một trong số những tác vụ con của nó"
  139. earlier_than_minimum_start_date: "cannot be earlier than %{date} because of preceding issues"
  140. direction: ltr
  141. date:
  142. formats:
  143. # Use the strftime parameters for formats.
  144. # When no format has been given, it uses default.
  145. # You can provide other formats here if you like!
  146. default: "%d-%m-%Y"
  147. short: "%d %b"
  148. long: "%d %B, %Y"
  149. day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
  150. abbr_day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
  151. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  152. 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"]
  153. 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"]
  154. # Used in date_select and datime_select.
  155. order:
  156. - :day
  157. - :month
  158. - :year
  159. time:
  160. formats:
  161. default: "%a, %d %b %Y %H:%M:%S %z"
  162. time: "%H:%M"
  163. short: "%d %b %H:%M"
  164. long: "%d %B, %Y %H:%M"
  165. am: "sáng"
  166. pm: "chiều"
  167. # Used in array.to_sentence.
  168. support:
  169. array:
  170. words_connector: ", "
  171. two_words_connector: " và "
  172. last_word_connector: ", và "
  173. actionview_instancetag_blank_option: Vui lòng chọn
  174. general_text_No: 'Không'
  175. general_text_Yes: 'Có'
  176. general_text_no: 'không'
  177. general_text_yes: 'có'
  178. general_lang_name: 'Vietnamese (Tiếng Việt)'
  179. general_csv_separator: ','
  180. general_csv_decimal_separator: '.'
  181. general_csv_encoding: UTF-8
  182. general_pdf_fontname: DejaVuSans
  183. general_first_day_of_week: '1'
  184. notice_account_updated: Cập nhật tài khoản thành công.
  185. notice_account_invalid_creditentials: Tài khoản hoặc mật mã không hợp lệ
  186. notice_account_password_updated: Cập nhật mật mã thành công.
  187. notice_account_wrong_password: Sai mật mã
  188. notice_account_register_done: Tài khoản được tạo thành công. Để kích hoạt vui lòng làm theo hướng dẫn trong email gửi đến bạn.
  189. notice_account_unknown_email: Không rõ tài khoản.
  190. notice_can_t_change_password: Tài khoản được chứng thực từ nguồn bên ngoài. Không thể đổi mật mã cho loại chứng thực này.
  191. notice_account_lost_email_sent: Thông tin để đổi mật mã mới đã gửi đến bạn qua email.
  192. notice_account_activated: Tài khoản vừa được kích hoạt. Bây giờ bạn có thể đăng nhập.
  193. notice_successful_create: Tạo thành công.
  194. notice_successful_update: Cập nhật thành công.
  195. notice_successful_delete: Xóa thành công.
  196. notice_successful_connection: Kết nối thành công.
  197. notice_file_not_found: Trang bạn cố xem không tồn tại hoặc đã chuyển.
  198. notice_locking_conflict: Thông tin đang được cập nhật bởi người khác. Hãy chép nội dung cập nhật của bạn vào clipboard.
  199. notice_not_authorized: Bạn không có quyền xem trang này.
  200. notice_email_sent: "Email đã được gửi tới %{value}"
  201. notice_email_error: "Lỗi xảy ra khi gửi email (%{value})"
  202. notice_feeds_access_key_reseted: Mã số chứng thực Atom đã được tạo lại.
  203. notice_failed_to_save_issues: "Thất bại khi lưu %{count} vấn đề trong %{total} lựa chọn: %{ids}."
  204. notice_no_issue_selected: "Không có vấn đề được chọn! Vui lòng kiểm tra các vấn đề bạn cần chỉnh sửa."
  205. notice_account_pending: "Thông tin tài khoản đã được tạo ra và đang chờ chứng thực từ ban quản trị."
  206. notice_default_data_loaded: Đã nạp cấu hình mặc định.
  207. notice_unable_delete_version: Không thể xóa phiên bản.
  208. error_can_t_load_default_data: "Không thể nạp cấu hình mặc định: %{value}"
  209. error_scm_not_found: "Không tìm thấy dữ liệu trong kho chứa."
  210. error_scm_command_failed: "Lỗi xảy ra khi truy cập vào kho lưu trữ: %{value}"
  211. error_scm_annotate: "Đầu vào không tồn tại hoặc không thể chú thích."
  212. error_issue_not_found_in_project: 'Vấn đề không tồn tại hoặc không thuộc dự án'
  213. mail_subject_lost_password: "%{value}: mật mã của bạn"
  214. mail_body_lost_password: "Để đổi mật mã, hãy click chuột vào liên kết sau:"
  215. mail_subject_register: "%{value}: kích hoạt tài khoản"
  216. mail_body_register: "Để kích hoạt tài khoản, hãy click chuột vào liên kết sau:"
  217. mail_body_account_information_external: " Bạn có thể dùng tài khoản %{value} để đăng nhập."
  218. mail_body_account_information: Thông tin về tài khoản
  219. mail_subject_account_activation_request: "%{value}: Yêu cầu chứng thực tài khoản"
  220. mail_body_account_activation_request: "Người dùng (%{value}) mới đăng ký và cần bạn xác nhận:"
  221. mail_subject_reminder: "%{count} vấn đề hết hạn trong các %{days} ngày tới"
  222. mail_body_reminder: "%{count} công việc bạn được phân công sẽ hết hạn trong %{days} ngày tới:"
  223. field_name: Tên dự án
  224. field_description: Mô tả
  225. field_summary: Tóm tắt
  226. field_is_required: Bắt buộc
  227. field_firstname: Tên đệm và Tên
  228. field_lastname: Họ
  229. field_mail: Email
  230. field_filename: Tập tin
  231. field_filesize: Cỡ
  232. field_downloads: Tải về
  233. field_author: Tác giả
  234. field_created_on: Tạo
  235. field_updated_on: Cập nhật
  236. field_field_format: Định dạng
  237. field_is_for_all: Cho mọi dự án
  238. field_possible_values: Giá trị hợp lệ
  239. field_regexp: Biểu thức chính quy
  240. field_min_length: Chiều dài tối thiểu
  241. field_max_length: Chiều dài tối đa
  242. field_value: Giá trị
  243. field_category: Chủ đề
  244. field_title: Tiêu đề
  245. field_project: Dự án
  246. field_issue: Vấn đề
  247. field_status: Trạng thái
  248. field_notes: Ghi chú
  249. field_is_closed: Vấn đề đóng
  250. field_is_default: Giá trị mặc định
  251. field_tracker: Kiểu vấn đề
  252. field_subject: Chủ đề
  253. field_due_date: Hết hạn
  254. field_assigned_to: Phân công cho
  255. field_priority: Mức ưu tiên
  256. field_fixed_version: Phiên bản
  257. field_user: Người dùng
  258. field_role: Quyền
  259. field_homepage: Trang chủ
  260. field_is_public: Công cộng
  261. field_parent: Dự án con của
  262. field_is_in_roadmap: Có thể thấy trong Kế hoạch
  263. field_login: Đăng nhập
  264. field_mail_notification: Thông báo qua email
  265. field_admin: Quản trị
  266. field_last_login_on: Kết nối cuối
  267. field_language: Ngôn ngữ
  268. field_effective_date: Ngày
  269. field_password: Mật khẩu
  270. field_new_password: Mật khẩu mới
  271. field_password_confirmation: Nhập lại mật khẩu
  272. field_version: Phiên bản
  273. field_type: Kiểu
  274. field_host: Host
  275. field_port: Cổng
  276. field_account: Tài khoản
  277. field_base_dn: Base DN
  278. field_attr_login: Thuộc tính đăng nhập
  279. field_attr_firstname: Thuộc tính tên đệm và Tên
  280. field_attr_lastname: Thuộc tính Họ
  281. field_attr_mail: Thuộc tính Email
  282. field_onthefly: Tạo người dùng tức thì
  283. field_start_date: Bắt đầu
  284. field_done_ratio: Tiến độ
  285. field_auth_source: Chế độ xác thực
  286. field_hide_mail: Không hiện email của tôi
  287. field_comments: Bình luận
  288. field_url: URL
  289. field_start_page: Trang bắt đầu
  290. field_subproject: Dự án con
  291. field_hours: Giờ
  292. field_activity: Hoạt động
  293. field_spent_on: Ngày
  294. field_identifier: Mã nhận dạng
  295. field_is_filter: Dùng như bộ lọc
  296. field_issue_to: Vấn đề liên quan
  297. field_delay: Độ trễ
  298. field_assignable: Vấn đề có thể gán cho vai trò này
  299. field_redirect_existing_links: Chuyển hướng trang đã có
  300. field_estimated_hours: Thời gian ước lượng
  301. field_column_names: Cột
  302. field_time_zone: Múi giờ
  303. field_searchable: Tìm kiếm được
  304. field_default_value: Giá trị mặc định
  305. field_comments_sorting: Liệt kê bình luận
  306. field_parent_title: Trang mẹ
  307. setting_app_title: Tựa đề ứng dụng
  308. setting_app_subtitle: Tựa đề nhỏ của ứng dụng
  309. setting_welcome_text: Thông điệp chào mừng
  310. setting_default_language: Ngôn ngữ mặc định
  311. setting_login_required: Cần đăng nhập
  312. setting_self_registration: Tự chứng thực
  313. setting_attachment_max_size: Cỡ tối đa của tập tin đính kèm
  314. setting_issues_export_limit: Giới hạn Export vấn đề
  315. setting_mail_from: Địa chỉ email gửi thông báo
  316. setting_bcc_recipients: Tạo bản CC bí mật (bcc)
  317. setting_host_name: Tên miền và đường dẫn
  318. setting_text_formatting: Định dạng bài viết
  319. setting_wiki_compression: Nén lịch sử Wiki
  320. setting_feeds_limit: Giới hạn nội dung của feed
  321. setting_default_projects_public: Dự án mặc định là public
  322. setting_autofetch_changesets: Tự động tìm nạp commits
  323. setting_sys_api_enabled: Cho phép WS quản lý kho chứa
  324. setting_commit_ref_keywords: Từ khóa tham khảo
  325. setting_commit_fix_keywords: Từ khóa chỉ vấn đề đã giải quyết
  326. setting_autologin: Tự động đăng nhập
  327. setting_date_format: Định dạng ngày
  328. setting_time_format: Định dạng giờ
  329. setting_cross_project_issue_relations: Cho phép quan hệ chéo giữa các dự án
  330. setting_issue_list_default_columns: Các cột mặc định hiển thị trong danh sách vấn đề
  331. setting_emails_footer: Chữ ký cuối thư
  332. setting_protocol: Giao thức
  333. setting_per_page_options: Tùy chọn đối tượng mỗi trang
  334. setting_user_format: Định dạng hiển thị người dùng
  335. setting_activity_days_default: Ngày hiển thị hoạt động của dự án
  336. setting_display_subprojects_issues: Hiển thị mặc định vấn đề của dự án con ở dự án chính
  337. setting_enabled_scm: Cho phép SCM
  338. setting_mail_handler_api_enabled: Cho phép WS cho các email tới
  339. setting_mail_handler_api_key: Mã số API
  340. setting_sequential_project_identifiers: Tự sinh chuỗi ID dự án
  341. project_module_issue_tracking: Theo dõi vấn đề
  342. project_module_time_tracking: Theo dõi thời gian
  343. project_module_news: Tin tức
  344. project_module_documents: Tài liệu
  345. project_module_files: Tập tin
  346. project_module_wiki: Wiki
  347. project_module_repository: Kho lưu trữ
  348. project_module_boards: Diễn đàn
  349. label_user: Tài khoản
  350. label_user_plural: Tài khoản
  351. label_user_new: Tài khoản mới
  352. label_project: Dự án
  353. label_project_new: Dự án mới
  354. label_project_plural: Dự án
  355. label_x_projects:
  356. zero: không có dự án
  357. one: một dự án
  358. other: "%{count} dự án"
  359. label_project_all: Mọi dự án
  360. label_project_latest: Dự án mới nhất
  361. label_issue: Vấn đề
  362. label_issue_new: Tạo vấn đề mới
  363. label_issue_plural: Vấn đề
  364. label_issue_view_all: Tất cả vấn đề
  365. label_issues_by: "Vấn đề của %{value}"
  366. label_issue_added: Đã thêm vấn đề
  367. label_issue_updated: Vấn đề được cập nhật
  368. label_document: Tài liệu
  369. label_document_new: Tài liệu mới
  370. label_document_plural: Tài liệu
  371. label_document_added: Đã thêm tài liệu
  372. label_role: Vai trò
  373. label_role_plural: Vai trò
  374. label_role_new: Vai trò mới
  375. label_role_and_permissions: Vai trò và Quyền hạn
  376. label_member: Thành viên
  377. label_member_new: Thành viên mới
  378. label_member_plural: Thành viên
  379. label_tracker: Kiểu vấn đề
  380. label_tracker_plural: Kiểu vấn đề
  381. label_tracker_new: Tạo kiểu vấn đề mới
  382. label_workflow: Quy trình làm việc
  383. label_issue_status: Trạng thái vấn đề
  384. label_issue_status_plural: Trạng thái vấn đề
  385. label_issue_status_new: Thêm trạng thái
  386. label_issue_category: Chủ đề
  387. label_issue_category_plural: Chủ đề
  388. label_issue_category_new: Chủ đề mới
  389. label_custom_field: Trường tùy biến
  390. label_custom_field_plural: Trường tùy biến
  391. label_custom_field_new: Thêm Trường tùy biến
  392. label_enumerations: Liệt kê
  393. label_enumeration_new: Thêm giá trị
  394. label_information: Thông tin
  395. label_information_plural: Thông tin
  396. label_please_login: Vui lòng đăng nhập
  397. label_register: Đăng ký
  398. label_password_lost: Phục hồi mật mã
  399. label_home: Trang chính
  400. label_my_page: Trang riêng
  401. label_my_account: Cá nhân
  402. label_my_projects: Dự án của bạn
  403. label_administration: Quản trị
  404. label_login: Đăng nhập
  405. label_logout: Thoát
  406. label_help: Giúp đỡ
  407. label_reported_issues: Công việc bạn phân công
  408. label_assigned_to_me_issues: Công việc được phân công
  409. label_last_login: Kết nối cuối
  410. label_registered_on: Ngày tham gia
  411. label_activity: Hoạt động
  412. label_overall_activity: Tất cả hoạt động
  413. label_new: Mới
  414. label_logged_as: Tài khoản »
  415. label_environment: Môi trường
  416. label_authentication: Xác thực
  417. label_auth_source: Chế độ xác thực
  418. label_auth_source_new: Chế độ xác thực mới
  419. label_auth_source_plural: Chế độ xác thực
  420. label_subproject_plural: Dự án con
  421. label_and_its_subprojects: "%{value} và dự án con"
  422. label_min_max_length: Độ dài nhỏ nhất - lớn nhất
  423. label_list: Danh sách
  424. label_date: Ngày
  425. label_integer: Số nguyên
  426. label_float: Số thực
  427. label_boolean: Boolean
  428. label_string: Văn bản
  429. label_text: Văn bản dài
  430. label_attribute: Thuộc tính
  431. label_attribute_plural: Các thuộc tính
  432. label_no_data: Chưa có thông tin gì
  433. label_change_status: Đổi trạng thái
  434. label_history: Lược sử
  435. label_attachment: Tập tin
  436. label_attachment_new: Thêm tập tin mới
  437. label_attachment_delete: Xóa tập tin
  438. label_attachment_plural: Tập tin
  439. label_file_added: Đã thêm tập tin
  440. label_report: Báo cáo
  441. label_report_plural: Báo cáo
  442. label_news: Tin tức
  443. label_news_new: Thêm tin
  444. label_news_plural: Tin tức
  445. label_news_latest: Tin mới
  446. label_news_view_all: Xem mọi tin
  447. label_news_added: Đã thêm tin
  448. label_settings: Thiết lập
  449. label_overview: Tóm tắt
  450. label_version: Phiên bản
  451. label_version_new: Phiên bản mới
  452. label_version_plural: Phiên bản
  453. label_confirmation: Khẳng định
  454. label_export_to: 'Định dạng khác của trang này:'
  455. label_read: Đọc...
  456. label_public_projects: Các dự án công cộng
  457. label_open_issues: mở
  458. label_open_issues_plural: mở
  459. label_closed_issues: đóng
  460. label_closed_issues_plural: đóng
  461. label_x_open_issues_abbr:
  462. zero: 0 mở
  463. one: 1 mở
  464. other: "%{count} mở"
  465. label_x_closed_issues_abbr:
  466. zero: 0 đóng
  467. one: 1 đóng
  468. other: "%{count} đóng"
  469. label_total: Tổng cộng
  470. label_permissions: Quyền
  471. label_current_status: Trạng thái hiện tại
  472. label_new_statuses_allowed: Trạng thái mới được phép
  473. label_all: Tất cả
  474. label_none: không
  475. label_nobody: Chẳng ai
  476. label_next: Sau
  477. label_previous: Trước
  478. label_used_by: Được dùng bởi
  479. label_details: Chi tiết
  480. label_add_note: Thêm ghi chú
  481. label_calendar: Lịch
  482. label_months_from: tháng từ
  483. label_gantt: Biểu đồ sự kiện
  484. label_internal: Nội bộ
  485. label_last_changes: "%{count} thay đổi cuối"
  486. label_change_view_all: Xem mọi thay đổi
  487. label_personalize_page: Điều chỉnh trang này
  488. label_comment: Bình luận
  489. label_comment_plural: Bình luận
  490. label_x_comments:
  491. zero: không có bình luận
  492. one: 1 bình luận
  493. other: "%{count} bình luận"
  494. label_comment_add: Thêm bình luận
  495. label_comment_added: Đã thêm bình luận
  496. label_comment_delete: Xóa bình luận
  497. label_query: Truy vấn riêng
  498. label_query_plural: Truy vấn riêng
  499. label_query_new: Truy vấn mới
  500. label_filter_add: Thêm lọc
  501. label_filter_plural: Bộ lọc
  502. label_equals: là
  503. label_not_equals: không là
  504. label_in_less_than: ít hơn
  505. label_in_more_than: nhiều hơn
  506. label_in: trong
  507. label_today: hôm nay
  508. label_all_time: mọi thời gian
  509. label_yesterday: hôm qua
  510. label_this_week: tuần này
  511. label_last_week: tuần trước
  512. label_last_n_days: "%{count} ngày cuối"
  513. label_this_month: tháng này
  514. label_last_month: tháng cuối
  515. label_this_year: năm này
  516. label_date_range: Thời gian
  517. label_less_than_ago: cách đây dưới
  518. label_more_than_ago: cách đây hơn
  519. label_ago: cách đây
  520. label_contains: chứa
  521. label_not_contains: không chứa
  522. label_day_plural: ngày
  523. label_repository: Kho lưu trữ
  524. label_repository_plural: Kho lưu trữ
  525. label_browse: Duyệt
  526. label_revision: Bản điều chỉnh
  527. label_revision_plural: Bản điều chỉnh
  528. label_associated_revisions: Các bản điều chỉnh được ghép
  529. label_added: thêm
  530. label_modified: đổi
  531. label_copied: chép
  532. label_renamed: đổi tên
  533. label_deleted: xóa
  534. label_latest_revision: Bản điều chỉnh cuối cùng
  535. label_latest_revision_plural: Bản điều chỉnh cuối cùng
  536. label_view_revisions: Xem các bản điều chỉnh
  537. label_max_size: Dung lượng tối đa
  538. label_sort_highest: Lên trên cùng
  539. label_sort_higher: Dịch lên
  540. label_sort_lower: Dịch xuống
  541. label_sort_lowest: Xuống dưới cùng
  542. label_roadmap: Kế hoạch
  543. label_roadmap_due_in: "Hết hạn trong %{value}"
  544. label_roadmap_overdue: "Trễ %{value}"
  545. label_roadmap_no_issues: Không có vấn đề cho phiên bản này
  546. label_search: Tìm
  547. label_result_plural: Kết quả
  548. label_all_words: Mọi từ
  549. label_wiki: Wiki
  550. label_wiki_edit: Sửa Wiki
  551. label_wiki_edit_plural: Thay đổi wiki
  552. label_wiki_page: Trang wiki
  553. label_wiki_page_plural: Trang wiki
  554. label_index_by_title: Danh sách theo tên
  555. label_index_by_date: Danh sách theo ngày
  556. label_current_version: Bản hiện tại
  557. label_preview: Xem trước
  558. label_feed_plural: Nguồn cấp tin
  559. label_changes_details: Chi tiết của mọi thay đổi
  560. label_issue_tracking: Vấn đề
  561. label_spent_time: Thời gian
  562. label_f_hour: "%{value} giờ"
  563. label_f_hour_plural: "%{value} giờ"
  564. label_time_tracking: Theo dõi thời gian
  565. label_change_plural: Thay đổi
  566. label_statistics: Thống kê
  567. label_commits_per_month: Commits mỗi tháng
  568. label_commits_per_author: Commits mỗi tác giả
  569. label_view_diff: So sánh
  570. label_diff_inline: inline
  571. label_diff_side_by_side: bên cạnh nhau
  572. label_options: Tùy chọn
  573. label_copy_workflow_from: Sao chép quy trình từ
  574. label_permissions_report: Thống kê các quyền
  575. label_watched_issues: Chủ đề đang theo dõi
  576. label_related_issues: Liên quan
  577. label_applied_status: Trạng thái áp dụng
  578. label_loading: Đang xử lý...
  579. label_relation_new: Quan hệ mới
  580. label_relation_delete: Xóa quan hệ
  581. label_relates_to: liên quan
  582. label_duplicates: trùng với
  583. label_duplicated_by: bị trùng bởi
  584. label_blocks: chặn
  585. label_blocked_by: chặn bởi
  586. label_precedes: đi trước
  587. label_follows: đi sau
  588. label_end_to_start: cuối tới đầu
  589. label_end_to_end: cuối tới cuối
  590. label_start_to_start: đầu tớ đầu
  591. label_start_to_end: đầu tới cuối
  592. label_stay_logged_in: Lưu thông tin đăng nhập
  593. label_disabled: Bị vô hiệu
  594. label_show_completed_versions: Xem phiên bản đã hoàn thành
  595. label_me: tôi
  596. label_board: Diễn đàn
  597. label_board_new: Tạo diễn đàn mới
  598. label_board_plural: Diễn đàn
  599. label_topic_plural: Chủ đề
  600. label_message_plural: Diễn đàn
  601. label_message_last: Bài cuối
  602. label_message_new: Tạo bài mới
  603. label_message_posted: Đã thêm bài viết
  604. label_reply_plural: Hồi âm
  605. label_send_information: Gửi thông tin đến người dùng qua email
  606. label_year: Năm
  607. label_month: Tháng
  608. label_week: Tuần
  609. label_date_from: Từ
  610. label_date_to: Đến
  611. label_language_based: Theo ngôn ngữ người dùng
  612. label_sort_by: "Sắp xếp theo %{value}"
  613. label_send_test_email: Gửi một email kiểm tra
  614. label_feeds_access_key_created_on: "Mã chứng thực Atom được tạo ra cách đây %{value}"
  615. label_module_plural: Module
  616. label_added_time_by: "Thêm bởi %{author} cách đây %{age}"
  617. label_updated_time: "Cập nhật cách đây %{value}"
  618. label_jump_to_a_project: Nhảy đến dự án...
  619. label_file_plural: Tập tin
  620. label_changeset_plural: Thay đổi
  621. label_default_columns: Cột mặc định
  622. label_no_change_option: (không đổi)
  623. label_bulk_edit_selected_issues: Sửa nhiều vấn đề
  624. label_theme: Giao diện
  625. label_default: Mặc định
  626. label_search_titles_only: Chỉ tìm trong tựa đề
  627. label_user_mail_option_all: "Mọi sự kiện trên mọi dự án của tôi"
  628. label_user_mail_option_selected: "Mọi sự kiện trên các dự án được chọn..."
  629. label_user_mail_no_self_notified: "Đừng gửi email về các thay đổi do chính tôi thực hiện"
  630. label_registration_activation_by_email: kích hoạt tài khoản qua email
  631. label_registration_manual_activation: kích hoạt tài khoản thủ công
  632. label_registration_automatic_activation: kích hoạt tài khoản tự động
  633. label_display_per_page: "mỗi trang: %{value}"
  634. label_age: Thời gian
  635. label_change_properties: Thay đổi thuộc tính
  636. label_general: Tổng quan
  637. label_more: Chi tiết
  638. label_scm: SCM
  639. label_plugins: Module
  640. label_ldap_authentication: Chứng thực LDAP
  641. label_downloads_abbr: Số lượng Download
  642. label_optional_description: Mô tả bổ sung
  643. label_add_another_file: Thêm tập tin khác
  644. label_preferences: Cấu hình
  645. label_chronological_order: Bài cũ xếp trước
  646. label_reverse_chronological_order: Bài mới xếp trước
  647. label_planning: Kế hoạch
  648. label_incoming_emails: Nhận mail
  649. label_generate_key: Tạo mã
  650. label_issue_watchers: Theo dõi
  651. button_login: Đăng nhập
  652. button_submit: Gửi
  653. button_save: Lưu
  654. button_check_all: Đánh dấu tất cả
  655. button_uncheck_all: Bỏ dấu tất cả
  656. button_delete: Xóa
  657. button_create: Tạo
  658. button_test: Kiểm tra
  659. button_edit: Sửa
  660. button_add: Thêm
  661. button_change: Đổi
  662. button_apply: Áp dụng
  663. button_clear: Xóa
  664. button_lock: Khóa
  665. button_unlock: Mở khóa
  666. button_download: Tải về
  667. button_list: Liệt kê
  668. button_view: Xem
  669. button_move: Chuyển
  670. button_back: Quay lại
  671. button_cancel: Bỏ qua
  672. button_activate: Kích hoạt
  673. button_sort: Sắp xếp
  674. button_log_time: Thêm thời gian
  675. button_rollback: Quay trở lại phiên bản này
  676. button_watch: Theo dõi
  677. button_unwatch: Bỏ theo dõi
  678. button_reply: Trả lời
  679. button_archive: Đóng băng
  680. button_unarchive: Xả băng
  681. button_reset: Tạo lại
  682. button_rename: Đổi tên
  683. button_change_password: Đổi mật mã
  684. button_copy: Sao chép
  685. button_annotate: Chú giải
  686. button_update: Cập nhật
  687. button_configure: Cấu hình
  688. button_quote: Trích dẫn
  689. status_active: Đang hoạt động
  690. status_registered: Mới đăng ký
  691. status_locked: Đã khóa
  692. text_select_mail_notifications: Chọn hành động đối với mỗi email sẽ gửi.
  693. text_regexp_info: eg. ^[A-Z0-9]+$
  694. text_min_max_length_info: 0 để chỉ không hạn chế
  695. text_project_destroy_confirmation: Bạn có chắc chắn muốn xóa dự án này và các dữ liệu liên quan ?
  696. text_subprojects_destroy_warning: "Dự án con của : %{value} cũng sẽ bị xóa."
  697. text_workflow_edit: Chọn một vai trò và một vấn đề để sửa quy trình
  698. text_are_you_sure: Bạn chắc chứ?
  699. text_tip_issue_begin_day: ngày bắt đầu
  700. text_tip_issue_end_day: ngày kết thúc
  701. text_tip_issue_begin_end_day: bắt đầu và kết thúc cùng ngày
  702. text_caracters_maximum: "Tối đa %{count} ký tự."
  703. text_caracters_minimum: "Phải gồm ít nhất %{count} ký tự."
  704. text_length_between: "Chiều dài giữa %{min} và %{max} ký tự."
  705. text_tracker_no_workflow: Không có quy trình được định nghĩa cho theo dõi này
  706. text_unallowed_characters: Ký tự không hợp lệ
  707. text_comma_separated: Nhiều giá trị được phép (cách nhau bởi dấu phẩy).
  708. text_issues_ref_in_commit_messages: Vấn đề tham khảo và cố định trong ghi chú commit
  709. text_issue_added: "Vấn đề %{id} đã được báo cáo bởi %{author}."
  710. text_issue_updated: "Vấn đề %{id} đã được cập nhật bởi %{author}."
  711. text_wiki_destroy_confirmation: Bạn có chắc chắn muốn xóa trang wiki này và tất cả nội dung của nó ?
  712. text_issue_category_destroy_question: "Một số vấn đề (%{count}) được gán cho danh mục này. Bạn muốn làm gì ?"
  713. text_issue_category_destroy_assignments: Gỡ bỏ danh mục được phân công
  714. text_issue_category_reassign_to: Gán lại vấn đề cho danh mục này
  715. text_user_mail_option: "Với các dự án không được chọn, bạn chỉ có thể nhận được thông báo về các vấn đề bạn đăng ký theo dõi hoặc có liên quan đến bạn (chẳng hạn, vấn đề được gán cho bạn)."
  716. text_no_configuration_data: "Quyền, theo dõi, tình trạng vấn đề và quy trình chưa được cấu hình.\nBắt buộc phải nạp cấu hình mặc định. Bạn sẽ thay đổi nó được sau khi đã nạp."
  717. text_load_default_configuration: Nạp lại cấu hình mặc định
  718. text_status_changed_by_changeset: "Áp dụng trong changeset : %{value}."
  719. text_issues_destroy_confirmation: 'Bạn có chắc chắn muốn xóa các vấn đề đã chọn ?'
  720. text_select_project_modules: 'Chọn các module cho dự án:'
  721. text_default_administrator_account_changed: Thay đổi tài khoản quản trị mặc định
  722. text_file_repository_writable: Cho phép ghi thư mục đính kèm
  723. text_rmagick_available: Trạng thái RMagick
  724. text_destroy_time_entries_question: "Thời gian %{hours} giờ đã báo cáo trong vấn đề bạn định xóa. Bạn muốn làm gì tiếp ?"
  725. text_destroy_time_entries: Xóa thời gian báo cáo
  726. text_assign_time_entries_to_project: Gán thời gian báo cáo cho dự án
  727. text_reassign_time_entries: 'Gán lại thời gian báo cáo cho Vấn đề này:'
  728. text_user_wrote: "%{value} đã viết:"
  729. text_enumeration_destroy_question: "%{count} đối tượng được gán giá trị này."
  730. text_enumeration_category_reassign_to: 'Gán lại giá trị này:'
  731. text_email_delivery_not_configured: "Cấu hình gửi Email chưa được đặt, và chức năng thông báo bị loại bỏ.\nCấu hình máy chủ SMTP của bạn ở file config/configuration.yml và khởi động lại để kích hoạt chúng."
  732. default_role_manager: 'Điều hành '
  733. default_role_developer: 'Phát triển '
  734. default_role_reporter: Báo cáo
  735. default_tracker_bug: Lỗi
  736. default_tracker_feature: Tính năng
  737. default_tracker_support: Hỗ trợ
  738. default_issue_status_new: Mới
  739. default_issue_status_in_progress: Đang tiến hành
  740. default_issue_status_resolved: Đã được giải quyết
  741. default_issue_status_feedback: Phản hồi
  742. default_issue_status_closed: Đã đóng
  743. default_issue_status_rejected: Từ chối
  744. default_doc_category_user: Tài liệu người dùng
  745. default_doc_category_tech: Tài liệu kỹ thuật
  746. default_priority_low: Thấp
  747. default_priority_normal: Bình thường
  748. default_priority_high: Cao
  749. default_priority_urgent: Khẩn cấp
  750. default_priority_immediate: Trung bình
  751. default_activity_design: Thiết kế
  752. default_activity_development: Phát triển
  753. enumeration_issue_priorities: Mức độ ưu tiên vấn đề
  754. enumeration_doc_categories: Danh mục tài liệu
  755. enumeration_activities: Hoạt động
  756. setting_plain_text_mail: Mail dạng text đơn giản (không dùng HTML)
  757. setting_gravatar_enabled: Dùng biểu tượng Gravatar
  758. permission_edit_project: Chỉnh dự án
  759. permission_select_project_modules: Chọn Module
  760. permission_manage_members: Quản lý thành viên
  761. permission_manage_versions: Quản lý phiên bản
  762. permission_manage_categories: Quản lý chủ đề
  763. permission_add_issues: Thêm vấn đề
  764. permission_edit_issues: Sửa vấn đề
  765. permission_manage_issue_relations: Quản lý quan hệ vấn đề
  766. permission_add_issue_notes: Thêm chú thích
  767. permission_edit_issue_notes: Sửa chú thích
  768. permission_edit_own_issue_notes: Sửa chú thích cá nhân
  769. permission_move_issues: Chuyển vấn đề
  770. permission_delete_issues: Xóa vấn đề
  771. permission_manage_public_queries: Quản lý truy vấn công cộng
  772. permission_save_queries: Lưu truy vấn
  773. permission_view_gantt: Xem biểu đồ sự kiện
  774. permission_view_calendar: Xem lịch
  775. permission_view_issue_watchers: Xem những người theo dõi
  776. permission_add_issue_watchers: Thêm người theo dõi
  777. permission_log_time: Lưu thời gian đã qua
  778. permission_view_time_entries: Xem thời gian đã qua
  779. permission_edit_time_entries: Xem nhật ký thời gian
  780. permission_edit_own_time_entries: Sửa thời gian đã lưu
  781. permission_manage_news: Quản lý tin mới
  782. permission_comment_news: Chú thích vào tin mới
  783. permission_view_documents: Xem tài liệu
  784. permission_manage_files: Quản lý tập tin
  785. permission_view_files: Xem tập tin
  786. permission_manage_wiki: Quản lý wiki
  787. permission_rename_wiki_pages: Đổi tên trang wiki
  788. permission_delete_wiki_pages: Xóa trang wiki
  789. permission_view_wiki_pages: Xem wiki
  790. permission_view_wiki_edits: Xem lược sử trang wiki
  791. permission_edit_wiki_pages: Sửa trang wiki
  792. permission_delete_wiki_pages_attachments: Xóa tệp đính kèm
  793. permission_protect_wiki_pages: Bảo vệ trang wiki
  794. permission_manage_repository: Quản lý kho lưu trữ
  795. permission_browse_repository: Duyệt kho lưu trữ
  796. permission_view_changesets: Xem các thay đổi
  797. permission_commit_access: Truy cập commit
  798. permission_manage_boards: Quản lý diễn đàn
  799. permission_view_messages: Xem bài viết
  800. permission_add_messages: Gửi bài viết
  801. permission_edit_messages: Sửa bài viết
  802. permission_edit_own_messages: Sửa bài viết cá nhân
  803. permission_delete_messages: Xóa bài viết
  804. permission_delete_own_messages: Xóa bài viết cá nhân
  805. label_example: Ví dụ
  806. text_repository_usernames_mapping: "Lựa chọn hoặc cập nhật ánh xạ người dùng hệ thống với người dùng trong kho lưu trữ.\nKhi người dùng trùng hợp về tên và email sẽ được tự động ánh xạ."
  807. permission_delete_own_messages: Xóa thông điệp
  808. label_user_activity: "%{value} hoạt động"
  809. label_updated_time_by: "Cập nhật bởi %{author} cách đây %{age}"
  810. text_diff_truncated: '... Thay đổi này đã được cắt bớt do nó vượt qua giới hạn kích thước có thể hiển thị.'
  811. setting_diff_max_lines_displayed: Số dòng thay đổi tối đa được hiển thị
  812. text_plugin_assets_writable: Cho phép ghi thư mục Plugin
  813. warning_attachments_not_saved: "%{count} file không được lưu."
  814. button_create_and_continue: Tạo và tiếp tục
  815. text_custom_field_possible_values_info: 'Một dòng cho mỗi giá trị'
  816. label_display: Hiển thị
  817. field_editable: Có thể sửa được
  818. setting_repository_log_display_limit: Số lượng tối đa các bản điều chỉnh hiển thị trong file log
  819. setting_file_max_size_displayed: Kích thước tối đa của tệp tin văn bản
  820. field_watcher: Người quan sát
  821. setting_openid: Cho phép đăng nhập và đăng ký dùng OpenID
  822. field_identity_url: OpenID URL
  823. label_login_with_open_id_option: hoặc đăng nhập với OpenID
  824. field_content: Nội dung
  825. label_descending: Giảm dần
  826. label_sort: Sắp xếp
  827. label_ascending: Tăng dần
  828. label_date_from_to: "Từ %{start} tới %{end}"
  829. label_greater_or_equal: ">="
  830. label_less_or_equal: "<="
  831. text_wiki_page_destroy_question: "Trang này có %{descendants} trang con và trang cháu. Bạn muốn làm gì tiếp?"
  832. text_wiki_page_reassign_children: Gán lại trang con vào trang mẹ này
  833. text_wiki_page_nullify_children: Giữ trang con như trang gốc
  834. text_wiki_page_destroy_children: Xóa trang con và tất cả trang con cháu của nó
  835. setting_password_min_length: Chiều dài tối thiểu của mật khẩu
  836. field_group_by: Nhóm kết quả bởi
  837. mail_subject_wiki_content_updated: "%{id} trang wiki đã được cập nhật"
  838. label_wiki_content_added: Đã thêm trang Wiki
  839. mail_subject_wiki_content_added: "%{id} trang wiki đã được thêm vào"
  840. mail_body_wiki_content_added: "Có %{id} trang wiki đã được thêm vào bởi %{author}."
  841. label_wiki_content_updated: Trang Wiki đã được cập nhật
  842. mail_body_wiki_content_updated: "Có %{id} trang wiki đã được cập nhật bởi %{author}."
  843. permission_add_project: Tạo dự án
  844. setting_new_project_user_role_id: Quyền được gán cho người dùng không phải quản trị viên khi tạo dự án mới
  845. label_view_all_revisions: Xem tất cả bản điều chỉnh
  846. label_tag: Thẻ
  847. label_branch: Nhánh
  848. error_no_tracker_in_project: Không có ai theo dõi dự án này. Hãy kiểm tra lại phần thiết lập cho dự án.
  849. error_no_default_issue_status: Không có vấn đề mặc định được định nghĩa. Vui lòng kiểm tra cấu hình của bạn (Vào "Quản trị -> Trạng thái vấn đề").
  850. text_journal_changed: "%{label} thay đổi từ %{old} tới %{new}"
  851. text_journal_set_to: "%{label} gán cho %{value}"
  852. text_journal_deleted: "%{label} xóa (%{old})"
  853. label_group_plural: Các nhóm
  854. label_group: Nhóm
  855. label_group_new: Thêm nhóm
  856. label_time_entry_plural: Thời gian đã sử dụng
  857. text_journal_added: "%{label} %{value} được thêm"
  858. field_active: Tích cực
  859. enumeration_system_activity: Hoạt động hệ thống
  860. permission_delete_issue_watchers: Xóa người quan sát
  861. version_status_closed: đóng
  862. version_status_locked: khóa
  863. version_status_open: mở
  864. error_can_not_reopen_issue_on_closed_version: Một vấn đề được gán cho phiên bản đã đóng không thể mở lại được
  865. label_user_anonymous: Ẩn danh
  866. button_move_and_follow: Di chuyển và theo
  867. setting_default_projects_modules: Các Module được kích hoạt mặc định cho dự án mới
  868. setting_gravatar_default: Ảnh Gravatar mặc định
  869. field_sharing: Chia sẻ
  870. label_version_sharing_hierarchy: Với thứ bậc dự án
  871. label_version_sharing_system: Với tất cả dự án
  872. label_version_sharing_descendants: Với dự án con
  873. label_version_sharing_tree: Với cây dự án
  874. label_version_sharing_none: Không chia sẻ
  875. error_can_not_archive_project: Dựa án này không thể lưu trữ được
  876. button_duplicate: Nhân đôi
  877. button_copy_and_follow: Sao chép và theo
  878. label_copy_source: Nguồn
  879. setting_issue_done_ratio: Tính toán tỷ lệ hoàn thành vấn đề với
  880. setting_issue_done_ratio_issue_status: Sử dụng trạng thái của vấn đề
  881. error_issue_done_ratios_not_updated: Tỷ lệ hoàn thành vấn đề không được cập nhật.
  882. error_workflow_copy_target: Vui lòng lựa chọn đích của theo dấu và quyền
  883. setting_issue_done_ratio_issue_field: Dùng trường vấn đề
  884. label_copy_same_as_target: Tương tự như đích
  885. label_copy_target: Đích
  886. notice_issue_done_ratios_updated: Tỷ lệ hoàn thành vấn đề được cập nhật.
  887. error_workflow_copy_source: Vui lòng lựa chọn nguồn của theo dấu hoặc quyền
  888. label_update_issue_done_ratios: Cập nhật tỷ lệ hoàn thành vấn đề
  889. setting_start_of_week: Định dạng lịch
  890. permission_view_issues: Xem Vấn đề
  891. label_display_used_statuses_only: Chỉ hiển thị trạng thái đã được dùng bởi theo dõi này
  892. label_revision_id: "Bản điều chỉnh %{value}"
  893. label_api_access_key: Khoá truy cập API
  894. label_api_access_key_created_on: "Khoá truy cập API đựơc tạo cách đây %{value}. Khóa này được dùng cho eDesignLab Client."
  895. label_feeds_access_key: Khoá truy cập Atom
  896. notice_api_access_key_reseted: Khoá truy cập API của bạn đã được đặt lại.
  897. setting_rest_api_enabled: Cho phép dịch vụ web REST
  898. label_missing_api_access_key: Mất Khoá truy cập API
  899. label_missing_feeds_access_key: Mất Khoá truy cập Atom
  900. button_show: Hiện
  901. text_line_separated: Nhiều giá trị được phép(mỗi dòng một giá trị).
  902. setting_mail_handler_body_delimiters: "Cắt bớt email sau những dòng :"
  903. permission_add_subprojects: Tạo Dự án con
  904. label_subproject_new: Thêm dự án con
  905. text_own_membership_delete_confirmation: |-
  906. Bạn đang cố gỡ bỏ một số hoặc tất cả quyền của bạn với dự án này và có thể sẽ mất quyền thay đổi nó sau đó.
  907. Bạn có muốn tiếp tục?
  908. label_close_versions: Đóng phiên bản đã hoàn thành
  909. label_board_sticky: Chú ý
  910. label_board_locked: Đã khóa
  911. permission_export_wiki_pages: Xuất trang wiki
  912. setting_cache_formatted_text: Cache định dạng các ký tự
  913. permission_manage_project_activities: Quản lý hoạt động của dự án
  914. error_unable_delete_issue_status: Không thể xóa trạng thái vấn đề
  915. label_profile: Hồ sơ
  916. permission_manage_subtasks: Quản lý tác vụ con
  917. field_parent_issue: Tác vụ cha
  918. label_subtask_plural: Tác vụ con
  919. label_project_copy_notifications: Gửi email thông báo trong khi dự án được sao chép
  920. error_can_not_delete_custom_field: Không thể xóa trường tùy biến
  921. error_unable_to_connect: "Không thể kết nối (%{value})"
  922. error_can_not_remove_role: Quyền này đang được dùng và không thể xóa được.
  923. error_can_not_delete_tracker: Theo dõi này chứa vấn đề và không thể xóa được.
  924. field_principal: Chủ yếu
  925. label_my_page_block: Block trang của tôi
  926. notice_failed_to_save_members: "Thất bại khi lưu thành viên : %{errors}."
  927. text_zoom_out: Thu nhỏ
  928. text_zoom_in: Phóng to
  929. notice_unable_delete_time_entry: Không thể xóa mục time log.
  930. label_overall_spent_time: Tổng thời gian sử dụng
  931. field_time_entries: Log time
  932. project_module_gantt: Biểu đồ Gantt
  933. project_module_calendar: Lịch
  934. button_edit_associated_wikipage: "Chỉnh sửa trang Wiki liên quan: %{page_title}"
  935. text_are_you_sure_with_children: Xóa vấn đề và tất cả vấn đề con?
  936. field_text: Trường văn bản
  937. label_user_mail_option_only_owner: Chỉ những thứ tôi sở hữu
  938. setting_default_notification_option: Tuỳ chọn thông báo mặc định
  939. label_user_mail_option_only_my_events: Chỉ những thứ tôi theo dõi hoặc liên quan
  940. label_user_mail_option_only_assigned: Chỉ những thứ tôi được phân công
  941. label_user_mail_option_none: Không có sự kiện
  942. field_member_of_group: Nhóm thụ hưởng
  943. field_assigned_to_role: Quyền thụ hưởng
  944. notice_not_authorized_archived_project: Dự án bạn đang có truy cập đã được lưu trữ.
  945. label_principal_search: "Tìm kiếm người dùng hoặc nhóm:"
  946. label_user_search: "Tìm kiếm người dùng:"
  947. field_visible: Nhìn thấy
  948. setting_emails_header: Tiêu đề Email
  949. setting_commit_logtime_activity_id: Cho phép ghi lại thời gian
  950. text_time_logged_by_changeset: "Áp dụng trong changeset : %{value}."
  951. setting_commit_logtime_enabled: Cho phép time logging
  952. notice_gantt_chart_truncated: "Đồ thị đã được cắt bớt bởi vì nó đã vượt qua lượng thông tin tối đa có thể hiển thị :(%{max})"
  953. setting_gantt_items_limit: Lượng thông tin tối đa trên đồ thị gantt
  954. description_selected_columns: Các cột được lựa chọn
  955. field_warn_on_leaving_unsaved: Cảnh báo tôi khi rời một trang có các nội dung chưa lưu
  956. text_warn_on_leaving_unsaved: Trang hiện tại chứa nội dung chưa lưu và sẽ bị mất nếu bạn rời trang này.
  957. label_my_queries: Các truy vấn tùy biến
  958. text_journal_changed_no_detail: "%{label} cập nhật"
  959. label_news_comment_added: Bình luận đã được thêm cho một tin tức
  960. button_expand_all: Mở rộng tất cả
  961. button_collapse_all: Thu gọn tất cả
  962. label_additional_workflow_transitions_for_assignee: Chuyển đổi bổ sung cho phép khi người sử dụng là người nhận chuyển nhượng
  963. label_additional_workflow_transitions_for_author: Các chuyển đổi bổ xung được phép khi người dùng là tác giả
  964. label_bulk_edit_selected_time_entries: Sửa nhiều mục đã chọn
  965. text_time_entries_destroy_confirmation: Bạn có chắc chắn muốn xóa bỏ các mục đã chọn?
  966. label_role_anonymous: Ẩn danh
  967. label_role_non_member: Không là thành viên
  968. label_issue_note_added: Ghi chú được thêm
  969. label_issue_status_updated: Trạng thái cập nhật
  970. label_issue_priority_updated: Cập nhật ưu tiên
  971. label_issues_visibility_own: Vấn đề tạo bởi hoặc gán cho người dùng
  972. field_issues_visibility: Vấn đề được nhìn thấy
  973. label_issues_visibility_all: Tất cả vấn đề
  974. permission_set_own_issues_private: Đặt vấn đề sở hữu là riêng tư hoặc công cộng
  975. field_is_private: Riêng tư
  976. permission_set_issues_private: Gán vấn đề là riêng tư hoặc công cộng
  977. label_issues_visibility_public: Tất cả vấn đề không riêng tư
  978. text_issues_destroy_descendants_confirmation: "Hành động này sẽ xóa %{count} tác vụ con."
  979. field_commit_logs_encoding: Mã hóa ghi chú Commit
  980. field_scm_path_encoding: Mã hóa đường dẫn
  981. text_scm_path_encoding_note: "Mặc định: UTF-8"
  982. field_path_to_repository: Đường dẫn tới kho chứa
  983. field_root_directory: Thư mục gốc
  984. field_cvs_module: Module
  985. field_cvsroot: CVSROOT
  986. text_mercurial_repository_note: Kho chứa cục bộ (vd. /hgrepo, c:\hgrepo)
  987. text_scm_command: Lệnh
  988. text_scm_command_version: Phiên bản
  989. label_git_report_last_commit: Báo cáo lần Commit cuối cùng cho file và thư mục
  990. text_scm_config: Bạn có thể cấu hình lệnh Scm trong file config/configuration.yml. Vui lòng khởi động lại ứng dụng sau khi chỉnh sửa nó.
  991. text_scm_command_not_available: Lệnh Scm không có sẵn. Vui lòng kiểm tra lại thiết đặt trong phần Quản trị.
  992. notice_issue_successful_create: "Vấn đề %{id} đã được tạo."
  993. label_between: Ở giữa
  994. setting_issue_group_assignment: Cho phép gán vấn đề đến các nhóm
  995. label_diff: Sự khác nhau
  996. text_git_repository_note: Kho chứa cục bộ và công cộng (vd. /gitrepo, c:\gitrepo)
  997. description_query_sort_criteria_direction: Chiều sắp xếp
  998. description_project_scope: Phạm vi tìm kiếm
  999. description_filter: Lọc
  1000. description_user_mail_notification: Thiết lập email thông báo
  1001. description_date_from: Nhập ngày bắt đầu
  1002. description_message_content: Nội dung thông điệp
  1003. description_available_columns: Các cột có sẵn
  1004. description_date_range_interval: Chọn khoảng thời gian giữa ngày bắt đầu và kết thúc
  1005. description_issue_category_reassign: Chọn danh mục vấn đề
  1006. description_search: Trường tìm kiếm
  1007. description_notes: Các chú ý
  1008. description_date_range_list: Chọn khoảng từ danh sách
  1009. description_choose_project: Các dự án
  1010. description_date_to: Nhập ngày kết thúc
  1011. description_query_sort_criteria_attribute: Sắp xếp thuộc tính
  1012. description_wiki_subpages_reassign: Chọn một trang cấp trên
  1013. label_parent_revision: Cha
  1014. label_child_revision: Con
  1015. error_scm_annotate_big_text_file: Các mục không được chú thích, vì nó vượt quá kích thước tập tin văn bản tối đa.
  1016. setting_default_issue_start_date_to_creation_date: Sử dụng thời gian hiện tại khi tạo vấn đề mới
  1017. button_edit_section: Soạn thảo sự lựa chọn này
  1018. setting_repositories_encodings: Mã hóa kho chứa
  1019. description_all_columns: Các cột
  1020. button_export: Export
  1021. label_export_options: "%{export_format} tùy chọn Export"
  1022. error_attachment_too_big: "File này không thể tải lên vì nó vượt quá kích thước cho phép : (%{max_size})"
  1023. notice_failed_to_save_time_entries: "Lỗi khi lưu %{count} lần trên %{total} sự lựa chọn : %{ids}."
  1024. label_x_issues:
  1025. zero: 0 vấn đề
  1026. one: 1 vấn đề
  1027. other: "%{count} vấn đề"
  1028. label_repository_new: Kho lưu trữ mới
  1029. field_repository_is_default: Kho lưu trữ chính
  1030. label_copy_attachments: Copy các file đính kèm
  1031. label_item_position: "%{position}/%{count}"
  1032. label_completed_versions: Các phiên bản hoàn thành
  1033. text_project_identifier_info: Chỉ cho phép chữ cái thường (a-z), con số và dấu gạch ngang.<br />Sau khi lưu, chỉ số ID không thể thay đổi.
  1034. field_multiple: Nhiều giá trị
  1035. setting_commit_cross_project_ref: Sử dụng thời gian hiện tại khi tạo vấn đề mới
  1036. text_issue_conflict_resolution_add_notes: Thêm ghi chú của tôi và loại bỏ các thay đổi khác
  1037. text_issue_conflict_resolution_overwrite: Áp dụng thay đổi bằng bất cứ giá nào, ghi chú trước đó có thể bị ghi đè
  1038. notice_issue_update_conflict: Vấn đề này đã được cập nhật bởi một người dùng khác trong khi bạn đang chỉnh sửa nó.
  1039. text_issue_conflict_resolution_cancel: "Loại bỏ tất cả các thay đổi và hiển thị lại %{link}"
  1040. permission_manage_related_issues: Quản lý các vấn đề liên quan
  1041. field_auth_source_ldap_filter: Bộ lọc LDAP
  1042. label_search_for_watchers: Tìm kiếm người theo dõi để thêm
  1043. notice_account_deleted: Tài khoản của bạn đã được xóa vĩnh viễn.
  1044. button_delete_my_account: Xóa tài khoản của tôi
  1045. setting_unsubscribe: Cho phép người dùng xóa Account
  1046. text_account_destroy_confirmation: |-
  1047. Bạn đồng ý không ?
  1048. Tài khoản của bạn sẽ bị xóa vĩnh viễn, không thể khôi phục lại!
  1049. error_session_expired: Phiên làm việc của bạn bị quá hạn, hãy đăng nhập lại
  1050. text_session_expiration_settings: "Chú ý : Thay đổi các thiết lập này có thể gây vô hiệu hóa Session hiện tại"
  1051. setting_session_lifetime: Thời gian tồn tại lớn nhất của Session
  1052. setting_session_timeout: Thời gian vô hiệu hóa Session
  1053. label_session_expiration: Phiên làm việc bị quá hạn
  1054. permission_close_project: Đóng / Mở lại dự án
  1055. label_show_closed_projects: Xem các dự án đã đóng
  1056. button_close: Đóng
  1057. button_reopen: Mở lại
  1058. project_status_active: Kích hoạt
  1059. project_status_closed: Đã đóng
  1060. project_status_archived: Lưu trữ
  1061. text_project_closed: Dự án này đã đóng và chỉ đọc
  1062. notice_user_successful_create: "Người dùng %{id} đã được tạo."
  1063. field_core_fields: Các trường tiêu chuẩn
  1064. field_timeout: Quá hạn
  1065. setting_thumbnails_enabled: Hiển thị các thumbnail đính kèm
  1066. setting_thumbnails_size: Kích thước Thumbnails(pixel)
  1067. setting_session_lifetime: Thời gian tồn tại lớn nhất của Session
  1068. setting_session_timeout: Thời gian vô hiệu hóa Session
  1069. label_status_transitions: Trạng thái chuyển tiếp
  1070. label_fields_permissions: Cho phép các trường
  1071. label_readonly: Chỉ đọc
  1072. label_required: Yêu cầu
  1073. text_repository_identifier_info: Chỉ có các chữ thường (a-z), các số (0-9), dấu gạch ngang và gạch dưới là hợp lệ.<br />Khi đã lưu, tên định danh sẽ không thể thay đổi.
  1074. field_board_parent: Diễn đàn cha
  1075. label_attribute_of_project: "Của dự án : %{name}"
  1076. label_attribute_of_author: "Của tác giả : %{name}"
  1077. label_attribute_of_assigned_to: "Được phân công bởi %{name}"
  1078. label_attribute_of_fixed_version: "Phiên bản mục tiêu của %{name}"
  1079. label_copy_subtasks: Sao chép các nhiệm vụ con
  1080. label_copied_to: Sao chép đến
  1081. label_copied_from: Sao chép từ
  1082. label_any_issues_in_project: Bất kỳ vấn đề nào trong dự án
  1083. label_any_issues_not_in_project: Bất kỳ vấn đề nào không thuộc dự án
  1084. field_private_notes: Ghi chú riêng tư
  1085. permission_view_private_notes: Xem ghi chú riêng tư
  1086. permission_set_notes_private: Đặt ghi chú thành riêng tư
  1087. label_no_issues_in_project: Không có vấn đề nào trong dự án
  1088. label_any: tất cả
  1089. label_last_n_weeks: "%{count} tuần qua"
  1090. setting_cross_project_subtasks: Cho phép các nhiệm vụ con liên dự án
  1091. label_cross_project_descendants: Trong các dự án con
  1092. label_cross_project_tree: Trong cùng cây dự án
  1093. label_cross_project_hierarchy: Trong dự án cùng cấp bậc
  1094. label_cross_project_system: Trong tất cả các dự án
  1095. button_hide: Ẩn
  1096. setting_non_working_week_days: Các ngày không làm việc
  1097. label_in_the_next_days: Trong tương lai
  1098. label_in_the_past_days: Trong quá khứ
  1099. label_attribute_of_user: "Của người dùng %{name}"
  1100. text_turning_multiple_off: Nếu bạn vô hiệu hóa nhiều giá trị, chúng sẽ bị loại bỏ để duy trì chỉ có một giá trị cho mỗi mục.
  1101. label_attribute_of_issue: "Vấn đề của %{name}"
  1102. permission_add_documents: Thêm tài liệu
  1103. permission_edit_documents: Soạn thảo tài liệu
  1104. permission_delete_documents: Xóa tài liệu
  1105. label_gantt_progress_line: Tiến độ
  1106. setting_jsonp_enabled: Cho phép trợ giúp JSONP
  1107. field_inherit_members: Các thành viên kế thừa
  1108. field_closed_on: Đã đóng
  1109. field_generate_password: Generate password
  1110. setting_default_projects_tracker_ids: Default trackers for new projects
  1111. label_total_time: Tổng cộng
  1112. notice_account_not_activated_yet: You haven't activated your account yet. If you want
  1113. to receive a new activation email, please <a href="%{url}">click this link</a>.
  1114. notice_account_locked: Your account is locked.
  1115. label_hidden: Hidden
  1116. label_visibility_private: to me only
  1117. label_visibility_roles: to these roles only
  1118. label_visibility_public: to any users
  1119. field_must_change_passwd: Must change password at next logon
  1120. notice_new_password_must_be_different: The new password must be different from the
  1121. current password
  1122. setting_mail_handler_excluded_filenames: Exclude attachments by name
  1123. text_convert_available: ImageMagick convert available (optional)
  1124. label_link: Link
  1125. label_only: only
  1126. label_drop_down_list: drop-down list
  1127. label_checkboxes: checkboxes
  1128. label_link_values_to: Link values to URL
  1129. setting_force_default_language_for_anonymous: Force default language for anonymous
  1130. users
  1131. setting_force_default_language_for_loggedin: Force default language for logged-in
  1132. users
  1133. label_custom_field_select_type: Select the type of object to which the custom field
  1134. is to be attached
  1135. label_issue_assigned_to_updated: Assignee updated
  1136. label_check_for_updates: Check for updates
  1137. label_latest_compatible_version: Latest compatible version
  1138. label_unknown_plugin: Unknown plugin
  1139. label_radio_buttons: radio buttons
  1140. label_group_anonymous: Anonymous users
  1141. label_group_non_member: Non member users
  1142. label_add_projects: Add projects
  1143. field_default_status: Default status
  1144. text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1145. field_users_visibility: Users visibility
  1146. label_users_visibility_all: All active users
  1147. label_users_visibility_members_of_visible_projects: Members of visible projects
  1148. label_edit_attachments: Edit attached files
  1149. setting_link_copied_issue: Link issues on copy
  1150. label_link_copied_issue: Link copied issue
  1151. label_ask: Ask
  1152. label_search_attachments_yes: Search attachment filenames and descriptions
  1153. label_search_attachments_no: Do not search attachments
  1154. label_search_attachments_only: Search attachments only
  1155. label_search_open_issues_only: Open issues only
  1156. field_address: Email
  1157. setting_max_additional_emails: Maximum number of additional email addresses
  1158. label_email_address_plural: Emails
  1159. label_email_address_add: Add email address
  1160. label_enable_notifications: Enable notifications
  1161. label_disable_notifications: Disable notifications
  1162. setting_search_results_per_page: Search results per page
  1163. label_blank_value: blank
  1164. permission_copy_issues: Copy issues
  1165. error_password_expired: Your password has expired or the administrator requires you
  1166. to change it.
  1167. field_time_entries_visibility: Time logs visibility
  1168. setting_password_max_age: Require password change after
  1169. label_parent_task_attributes: Parent tasks attributes
  1170. label_parent_task_attributes_derived: Calculated from subtasks
  1171. label_parent_task_attributes_independent: Independent of subtasks
  1172. label_time_entries_visibility_all: All time entries
  1173. label_time_entries_visibility_own: Time entries created by the user
  1174. label_member_management: Member management
  1175. label_member_management_all_roles: All roles
  1176. label_member_management_selected_roles_only: Only these roles
  1177. label_password_required: Confirm your password to continue
  1178. label_total_spent_time: Tổng thời gian sử dụng
  1179. notice_import_finished: All %{count} items have been imported.
  1180. notice_import_finished_with_errors: ! '%{count} out of %{total} items could not be
  1181. imported.'
  1182. error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
  1183. error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
  1184. settings below
  1185. error_can_not_read_import_file: An error occurred while reading the file to import
  1186. permission_import_issues: Import issues
  1187. label_import_issues: Import issues
  1188. label_select_file_to_import: Select the file to import
  1189. label_fields_separator: Field separator
  1190. label_fields_wrapper: Field wrapper
  1191. label_encoding: Encoding
  1192. label_comma_char: Comma
  1193. label_semi_colon_char: Semi colon
  1194. label_quote_char: Quote
  1195. label_double_quote_char: Double quote
  1196. label_fields_mapping: Fields mapping
  1197. label_file_content_preview: File content preview
  1198. label_create_missing_values: Create missing values
  1199. button_import: Import
  1200. field_total_estimated_hours: Total estimated time
  1201. label_api: API
  1202. label_total_plural: Totals
  1203. label_assigned_issues: Assigned issues
  1204. label_field_format_enumeration: Key/value list
  1205. label_f_hour_short: '%{value} h'
  1206. field_default_version: Default version
  1207. error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
  1208. setting_attachment_extensions_allowed: Allowed extensions
  1209. setting_attachment_extensions_denied: Disallowed extensions