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 74KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494
  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. not_a_regexp: "is not a valid regular expression"
  141. open_issue_with_closed_parent: "An open issue cannot be attached to a closed parent task"
  142. must_contain_uppercase: "must contain uppercase letters (A-Z)"
  143. must_contain_lowercase: "must contain lowercase letters (a-z)"
  144. must_contain_digits: "must contain digits (0-9)"
  145. must_contain_special_chars: "must contain special characters (!, $, %, ...)"
  146. direction: ltr
  147. date:
  148. formats:
  149. # Use the strftime parameters for formats.
  150. # When no format has been given, it uses default.
  151. # You can provide other formats here if you like!
  152. default: "%d-%m-%Y"
  153. short: "%d %b"
  154. long: "%d %B, %Y"
  155. day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
  156. abbr_day_names: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy"]
  157. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  158. 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"]
  159. 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"]
  160. # Used in date_select and datime_select.
  161. order:
  162. - :day
  163. - :month
  164. - :year
  165. time:
  166. formats:
  167. default: "%a, %d %b %Y %H:%M:%S %z"
  168. time: "%H:%M"
  169. short: "%d %b %H:%M"
  170. long: "%d %B, %Y %H:%M"
  171. am: "sáng"
  172. pm: "chiều"
  173. # Used in array.to_sentence.
  174. support:
  175. array:
  176. words_connector: ", "
  177. two_words_connector: " và "
  178. last_word_connector: ", và "
  179. actionview_instancetag_blank_option: Vui lòng chọn
  180. general_text_No: 'Không'
  181. general_text_Yes: 'Có'
  182. general_text_no: 'không'
  183. general_text_yes: 'có'
  184. general_lang_name: 'Vietnamese (Tiếng Việt)'
  185. general_csv_separator: ','
  186. general_csv_decimal_separator: '.'
  187. general_csv_encoding: UTF-8
  188. general_pdf_fontname: DejaVuSans
  189. general_pdf_monospaced_fontname: DejaVuSans
  190. general_first_day_of_week: '1'
  191. notice_account_updated: Cập nhật tài khoản thành công.
  192. notice_account_invalid_credentials: Tài khoản hoặc mật mã không hợp lệ
  193. notice_account_password_updated: Cập nhật mật mã thành công.
  194. notice_account_wrong_password: Sai mật mã
  195. 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.
  196. notice_account_unknown_email: Không rõ tài khoản.
  197. 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.
  198. notice_account_lost_email_sent: Thông tin để đổi mật mã mới đã gửi đến bạn qua email.
  199. notice_account_activated: Tài khoản vừa được kích hoạt. Bây giờ bạn có thể đăng nhập.
  200. notice_successful_create: Tạo thành công.
  201. notice_successful_update: Cập nhật thành công.
  202. notice_successful_delete: Xóa thành công.
  203. notice_successful_connection: Kết nối thành công.
  204. notice_file_not_found: Trang bạn cố xem không tồn tại hoặc đã chuyển.
  205. 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.
  206. notice_not_authorized: Bạn không có quyền xem trang này.
  207. notice_email_sent: "Email đã được gửi tới %{value}"
  208. notice_email_error: "Lỗi xảy ra khi gửi email (%{value})"
  209. notice_feeds_access_key_reseted: Mã số chứng thực Atom đã được tạo lại.
  210. notice_failed_to_save_issues: "Thất bại khi lưu %{count} vấn đề trong %{total} lựa chọn: %{ids}."
  211. 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ị."
  212. notice_default_data_loaded: Đã nạp cấu hình mặc định.
  213. notice_unable_delete_version: Không thể xóa phiên bản.
  214. error_can_t_load_default_data: "Không thể nạp cấu hình mặc định: %{value}"
  215. error_scm_not_found: "Không tìm thấy dữ liệu trong kho chứa."
  216. error_scm_command_failed: "Lỗi xảy ra khi truy cập vào kho lưu trữ: %{value}"
  217. error_scm_annotate: "Đầu vào không tồn tại hoặc không thể chú thích."
  218. error_issue_not_found_in_project: 'Vấn đề không tồn tại hoặc không thuộc dự án'
  219. mail_subject_lost_password: "%{value}: mật mã của bạn"
  220. mail_body_lost_password: "Để đổi mật mã, hãy click chuột vào liên kết sau:"
  221. mail_subject_register: "%{value}: kích hoạt tài khoản"
  222. mail_body_register: "Để kích hoạt tài khoản, hãy click chuột vào liên kết sau:"
  223. mail_body_account_information_external: " Bạn có thể dùng tài khoản %{value} để đăng nhập."
  224. mail_body_account_information: Thông tin về tài khoản
  225. mail_subject_account_activation_request: "%{value}: Yêu cầu chứng thực tài khoản"
  226. mail_body_account_activation_request: "Người dùng (%{value}) mới đăng ký và cần bạn xác nhận:"
  227. mail_subject_reminder: "%{count} vấn đề hết hạn trong các %{days} ngày tới"
  228. 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:"
  229. field_name: Tên dự án
  230. field_description: Mô tả
  231. field_summary: Tóm tắt
  232. field_is_required: Bắt buộc
  233. field_firstname: Tên đệm và Tên
  234. field_lastname: Họ
  235. field_mail: Email
  236. field_filename: Tập tin
  237. field_filesize: Cỡ
  238. field_downloads: Tải về
  239. field_author: Tác giả
  240. field_created_on: Tạo
  241. field_updated_on: Cập nhật
  242. field_field_format: Định dạng
  243. field_is_for_all: Cho mọi dự án
  244. field_possible_values: Giá trị hợp lệ
  245. field_regexp: Biểu thức chính quy
  246. field_min_length: Chiều dài tối thiểu
  247. field_max_length: Chiều dài tối đa
  248. field_value: Giá trị
  249. field_category: Chủ đề
  250. field_title: Tiêu đề
  251. field_project: Dự án
  252. field_issue: Vấn đề
  253. field_status: Trạng thái
  254. field_notes: Ghi chú
  255. field_is_closed: Vấn đề đóng
  256. field_is_default: Giá trị mặc định
  257. field_tracker: Kiểu vấn đề
  258. field_subject: Chủ đề
  259. field_due_date: Hết hạn
  260. field_assigned_to: Phân công cho
  261. field_priority: Mức ưu tiên
  262. field_fixed_version: Phiên bản
  263. field_user: Người dùng
  264. field_role: Quyền
  265. field_homepage: Trang chủ
  266. field_is_public: Công cộng
  267. field_parent: Dự án con của
  268. field_is_in_roadmap: Có thể thấy trong Kế hoạch
  269. field_login: Đăng nhập
  270. field_mail_notification: Thông báo qua email
  271. field_admin: Quản trị
  272. field_last_login_on: Kết nối cuối
  273. field_language: Ngôn ngữ
  274. field_effective_date: Ngày
  275. field_password: Mật khẩu
  276. field_new_password: Mật khẩu mới
  277. field_password_confirmation: Nhập lại mật khẩu
  278. field_version: Phiên bản
  279. field_type: Kiểu
  280. field_host: Host
  281. field_port: Cổng
  282. field_account: Tài khoản
  283. field_base_dn: Base DN
  284. field_attr_login: Thuộc tính đăng nhập
  285. field_attr_firstname: Thuộc tính tên đệm và Tên
  286. field_attr_lastname: Thuộc tính Họ
  287. field_attr_mail: Thuộc tính Email
  288. field_onthefly: Tạo người dùng tức thì
  289. field_start_date: Bắt đầu
  290. field_done_ratio: Tiến độ
  291. field_auth_source: Chế độ xác thực
  292. field_hide_mail: Không hiện email của tôi
  293. field_comments: Bình luận
  294. field_url: URL
  295. field_start_page: Trang bắt đầu
  296. field_subproject: Dự án con
  297. field_hours: Giờ
  298. field_activity: Hoạt động
  299. field_spent_on: Ngày
  300. field_identifier: Mã nhận dạng
  301. field_is_filter: Dùng như bộ lọc
  302. field_issue_to: Vấn đề liên quan
  303. field_delay: Độ trễ
  304. field_assignable: Vấn đề có thể gán cho vai trò này
  305. field_redirect_existing_links: Chuyển hướng trang đã có
  306. field_estimated_hours: Thời gian ước lượng
  307. field_column_names: Cột
  308. field_time_zone: Múi giờ
  309. field_searchable: Tìm kiếm được
  310. field_default_value: Giá trị mặc định
  311. field_comments_sorting: Liệt kê bình luận
  312. field_parent_title: Trang mẹ
  313. setting_app_title: Tựa đề ứng dụng
  314. setting_welcome_text: Thông điệp chào mừng
  315. setting_default_language: Ngôn ngữ mặc định
  316. setting_login_required: Cần đăng nhập
  317. setting_self_registration: Tự chứng thực
  318. setting_attachment_max_size: Cỡ tối đa của tập tin đính kèm
  319. setting_issues_export_limit: Giới hạn Export vấn đề
  320. setting_mail_from: Địa chỉ email gửi thông báo
  321. setting_host_name: Tên miền và đường dẫn
  322. setting_text_formatting: Định dạng bài viết
  323. setting_wiki_compression: Nén lịch sử Wiki
  324. setting_feeds_limit: Giới hạn nội dung của feed
  325. setting_default_projects_public: Dự án mặc định là public
  326. setting_autofetch_changesets: Tự động tìm nạp commits
  327. setting_sys_api_enabled: Cho phép WS quản lý kho chứa
  328. setting_commit_ref_keywords: Từ khóa tham khảo
  329. setting_commit_fix_keywords: Từ khóa chỉ vấn đề đã giải quyết
  330. setting_autologin: Tự động đăng nhập
  331. setting_date_format: Định dạng ngày
  332. setting_time_format: Định dạng giờ
  333. setting_cross_project_issue_relations: Cho phép quan hệ chéo giữa các dự án
  334. setting_issue_list_default_columns: Các cột mặc định hiển thị trong danh sách vấn đề
  335. setting_emails_footer: Chữ ký cuối thư
  336. setting_protocol: Giao thức
  337. setting_per_page_options: Tùy chọn đối tượng mỗi trang
  338. setting_user_format: Định dạng hiển thị người dùng
  339. setting_activity_days_default: Ngày hiển thị hoạt động của dự án
  340. setting_display_subprojects_issues: Hiển thị mặc định vấn đề của dự án con ở dự án chính
  341. setting_enabled_scm: Cho phép SCM
  342. setting_mail_handler_api_enabled: Cho phép WS cho các email tới
  343. setting_mail_handler_api_key: Mã số API
  344. setting_sequential_project_identifiers: Tự sinh chuỗi ID dự án
  345. project_module_issue_tracking: Theo dõi vấn đề
  346. project_module_time_tracking: Theo dõi thời gian
  347. project_module_news: Tin tức
  348. project_module_documents: Tài liệu
  349. project_module_files: Tập tin
  350. project_module_wiki: Wiki
  351. project_module_repository: Kho lưu trữ
  352. project_module_boards: Diễn đàn
  353. label_user: Tài khoản
  354. label_user_plural: Tài khoản
  355. label_user_new: Tài khoản mới
  356. label_project: Dự án
  357. label_project_new: Dự án mới
  358. label_project_plural: Dự án
  359. label_x_projects:
  360. zero: không có dự án
  361. one: một dự án
  362. other: "%{count} dự án"
  363. label_project_all: Mọi dự án
  364. label_project_latest: Dự án mới nhất
  365. label_issue: Vấn đề
  366. label_issue_new: Tạo vấn đề mới
  367. label_issue_plural: Vấn đề
  368. label_issue_view_all: Tất cả vấn đề
  369. label_issues_by: "Vấn đề của %{value}"
  370. label_issue_added: Đã thêm vấn đề
  371. label_issue_updated: Vấn đề được cập nhật
  372. label_document: Tài liệu
  373. label_document_new: Tài liệu mới
  374. label_document_plural: Tài liệu
  375. label_document_added: Đã thêm tài liệu
  376. label_role: Vai trò
  377. label_role_plural: Vai trò
  378. label_role_new: Vai trò mới
  379. label_role_and_permissions: Vai trò và Quyền hạn
  380. label_member: Thành viên
  381. label_member_new: Thành viên mới
  382. label_member_plural: Thành viên
  383. label_tracker: Kiểu vấn đề
  384. label_tracker_plural: Kiểu vấn đề
  385. label_tracker_new: Tạo kiểu vấn đề mới
  386. label_workflow: Quy trình làm việc
  387. label_issue_status: Trạng thái vấn đề
  388. label_issue_status_plural: Trạng thái vấn đề
  389. label_issue_status_new: Thêm trạng thái
  390. label_issue_category: Chủ đề
  391. label_issue_category_plural: Chủ đề
  392. label_issue_category_new: Chủ đề mới
  393. label_custom_field: Trường tùy biến
  394. label_custom_field_plural: Trường tùy biến
  395. label_custom_field_new: Thêm Trường tùy biến
  396. label_enumerations: Liệt kê
  397. label_enumeration_new: Thêm giá trị
  398. label_information: Thông tin
  399. label_information_plural: Thông tin
  400. label_register: Đăng ký
  401. label_password_lost: Phục hồi mật mã
  402. label_home: Trang chính
  403. label_my_page: Trang riêng
  404. label_my_account: Cá nhân
  405. label_my_projects: Dự án của bạn
  406. label_administration: Quản trị
  407. label_login: Đăng nhập
  408. label_logout: Thoát
  409. label_help: Giúp đỡ
  410. label_reported_issues: Công việc bạn phân công
  411. label_assigned_to_me_issues: Công việc được phân công
  412. label_last_login: Kết nối cuối
  413. label_registered_on: Ngày tham gia
  414. label_activity: Hoạt động
  415. label_new: Mới
  416. label_logged_as: Tài khoản »
  417. label_environment: Môi trường
  418. label_authentication: Xác thực
  419. label_auth_source: Chế độ xác thực
  420. label_auth_source_new: Chế độ xác thực mới
  421. label_auth_source_plural: Chế độ xác thực
  422. label_subproject_plural: Dự án con
  423. label_and_its_subprojects: "%{value} và dự án con"
  424. label_min_max_length: Độ dài nhỏ nhất - lớn nhất
  425. label_list: Danh sách
  426. label_date: Ngày
  427. label_integer: Số nguyên
  428. label_float: Số thực
  429. label_boolean: Boolean
  430. label_string: Văn bản
  431. label_text: Văn bản dài
  432. label_attribute: Thuộc tính
  433. label_attribute_plural: Các thuộc tính
  434. label_no_data: Chưa có thông tin gì
  435. label_change_status: Đổi trạng thái
  436. label_history: Lược sử
  437. label_attachment: Tập tin
  438. label_attachment_new: Thêm tập tin mới
  439. label_attachment_delete: Xóa tập tin
  440. label_attachment_plural: Tập tin
  441. label_file_added: Đã thêm tập tin
  442. label_report: Báo cáo
  443. label_report_plural: Báo cáo
  444. label_news: Tin tức
  445. label_news_new: Thêm tin
  446. label_news_plural: Tin tức
  447. label_news_latest: Tin mới
  448. label_news_view_all: Xem mọi tin
  449. label_news_added: Đã thêm tin
  450. label_settings: Thiết lập
  451. label_overview: Tóm tắt
  452. label_version: Phiên bản
  453. label_version_new: Phiên bản mới
  454. label_version_plural: Phiên bản
  455. label_confirmation: Khẳng định
  456. label_export_to: 'Định dạng khác của trang này:'
  457. label_read: Đọc...
  458. label_public_projects: Các dự án công cộng
  459. label_open_issues: mở
  460. label_open_issues_plural: mở
  461. label_closed_issues: đóng
  462. label_closed_issues_plural: đóng
  463. label_x_open_issues_abbr:
  464. zero: 0 mở
  465. one: 1 mở
  466. other: "%{count} mở"
  467. label_x_closed_issues_abbr:
  468. zero: 0 đóng
  469. one: 1 đóng
  470. other: "%{count} đóng"
  471. label_total: Tổng cộng
  472. label_permissions: Quyền
  473. label_current_status: Trạng thái hiện tại
  474. label_new_statuses_allowed: Trạng thái mới được phép
  475. label_all: Tất cả
  476. label_none: không
  477. label_nobody: Chẳng ai
  478. label_next: Sau
  479. label_previous: Trước
  480. label_used_by: Được dùng bởi
  481. label_details: Chi tiết
  482. label_add_note: Thêm ghi chú
  483. label_calendar: Lịch
  484. label_months_from: tháng từ
  485. label_gantt: Biểu đồ sự kiện
  486. label_internal: Nội bộ
  487. label_last_changes: "%{count} thay đổi cuối"
  488. label_change_view_all: Xem mọi thay đổi
  489. label_comment: Bình luận
  490. label_comment_plural: Bình luận
  491. label_x_comments:
  492. zero: không có bình luận
  493. one: 1 bình luận
  494. other: "%{count} bình luận"
  495. label_comment_add: Thêm bình luận
  496. label_comment_added: Đã thêm bình luận
  497. label_comment_delete: Xóa bình luận
  498. label_query: Truy vấn riêng
  499. label_query_plural: Truy vấn riêng
  500. label_query_new: Truy vấn mới
  501. label_filter_add: Thêm lọc
  502. label_filter_plural: Bộ lọc
  503. label_equals: là
  504. label_not_equals: không là
  505. label_in_less_than: ít hơn
  506. label_in_more_than: nhiều hơn
  507. label_in: trong
  508. label_today: hôm nay
  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_stay_logged_in: Lưu thông tin đăng nhập
  589. label_disabled: Bị vô hiệu
  590. label_show_completed_versions: Xem phiên bản đã hoàn thành
  591. label_me: tôi
  592. label_board: Diễn đàn
  593. label_board_new: Tạo diễn đàn mới
  594. label_board_plural: Diễn đàn
  595. label_topic_plural: Chủ đề
  596. label_message_plural: Diễn đàn
  597. label_message_last: Bài cuối
  598. label_message_new: Tạo bài mới
  599. label_message_posted: Đã thêm bài viết
  600. label_reply_plural: Hồi âm
  601. label_send_information: Gửi thông tin đến người dùng qua email
  602. label_year: Năm
  603. label_month: Tháng
  604. label_week: Tuần
  605. label_date_from: Từ
  606. label_date_to: Đến
  607. label_language_based: Theo ngôn ngữ người dùng
  608. label_sort_by: "Sắp xếp theo %{value}"
  609. label_send_test_email: Gửi một email kiểm tra
  610. label_feeds_access_key_created_on: "Mã chứng thực Atom được tạo ra cách đây %{value}"
  611. label_module_plural: Module
  612. label_added_time_by: "Thêm bởi %{author} cách đây %{age}"
  613. label_updated_time: "Cập nhật cách đây %{value}"
  614. label_jump_to_a_project: Nhảy đến dự án...
  615. label_file_plural: Tập tin
  616. label_changeset_plural: Thay đổi
  617. label_default_columns: Cột mặc định
  618. label_no_change_option: (không đổi)
  619. label_bulk_edit_selected_issues: Sửa nhiều vấn đề
  620. label_theme: Giao diện
  621. label_default: Mặc định
  622. label_search_titles_only: Chỉ tìm trong tựa đề
  623. label_user_mail_option_all: "Mọi sự kiện trên mọi dự án của tôi"
  624. label_user_mail_option_selected: "Mọi sự kiện trên các dự án được chọn..."
  625. label_user_mail_no_self_notified: "Đừng gửi email về các thay đổi do chính tôi thực hiện"
  626. label_registration_activation_by_email: kích hoạt tài khoản qua email
  627. label_registration_manual_activation: kích hoạt tài khoản thủ công
  628. label_registration_automatic_activation: kích hoạt tài khoản tự động
  629. label_display_per_page: "mỗi trang: %{value}"
  630. label_age: Thời gian
  631. label_change_properties: Thay đổi thuộc tính
  632. label_general: Tổng quan
  633. label_scm: SCM
  634. label_plugins: Module
  635. label_ldap_authentication: Chứng thực LDAP
  636. label_downloads_abbr: Số lượng Download
  637. label_optional_description: Mô tả bổ sung
  638. label_add_another_file: Thêm tập tin khác
  639. label_preferences: Cấu hình
  640. label_chronological_order: Bài cũ xếp trước
  641. label_reverse_chronological_order: Bài mới xếp trước
  642. label_incoming_emails: Nhận mail
  643. label_generate_key: Tạo mã
  644. label_issue_watchers: Theo dõi
  645. button_login: Đăng nhập
  646. button_submit: Gửi
  647. button_save: Lưu
  648. button_check_all: Đánh dấu tất cả
  649. button_uncheck_all: Bỏ dấu tất cả
  650. button_delete: Xóa
  651. button_create: Tạo
  652. button_test: Kiểm tra
  653. button_edit: Sửa
  654. button_add: Thêm
  655. button_change: Đổi
  656. button_apply: Áp dụng
  657. button_clear: Xóa
  658. button_lock: Khóa
  659. button_unlock: Mở khóa
  660. button_download: Tải về
  661. button_list: Liệt kê
  662. button_view: Xem
  663. button_move: Chuyển
  664. button_back: Quay lại
  665. button_cancel: Bỏ qua
  666. button_activate: Kích hoạt
  667. button_sort: Sắp xếp
  668. button_log_time: Thêm thời gian
  669. button_rollback: Quay trở lại phiên bản này
  670. button_watch: Theo dõi
  671. button_unwatch: Bỏ theo dõi
  672. button_reply: Trả lời
  673. button_archive: Đóng băng
  674. button_unarchive: Xả băng
  675. button_reset: Tạo lại
  676. button_rename: Đổi tên
  677. button_change_password: Đổi mật mã
  678. button_copy: Sao chép
  679. button_annotate: Chú giải
  680. button_update: Cập nhật
  681. button_configure: Cấu hình
  682. button_quote: Trích dẫn
  683. status_active: Đang hoạt động
  684. status_registered: Mới đăng ký
  685. status_locked: Đã khóa
  686. text_select_mail_notifications: Chọn hành động đối với mỗi email sẽ gửi.
  687. text_regexp_info: eg. ^[A-Z0-9]+$
  688. 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 ?
  689. text_subprojects_destroy_warning: "Dự án con của : %{value} cũng sẽ bị xóa."
  690. text_workflow_edit: Chọn một vai trò và một vấn đề để sửa quy trình
  691. text_are_you_sure: Bạn chắc chứ?
  692. text_tip_issue_begin_day: ngày bắt đầu
  693. text_tip_issue_end_day: ngày kết thúc
  694. text_tip_issue_begin_end_day: bắt đầu và kết thúc cùng ngày
  695. text_caracters_maximum: "Tối đa %{count} ký tự."
  696. text_caracters_minimum: "Phải gồm ít nhất %{count} ký tự."
  697. text_length_between: "Chiều dài giữa %{min} và %{max} ký tự."
  698. text_tracker_no_workflow: Không có quy trình được định nghĩa cho theo dõi này
  699. text_unallowed_characters: Ký tự không hợp lệ
  700. text_comma_separated: Nhiều giá trị được phép (cách nhau bởi dấu phẩy).
  701. text_issues_ref_in_commit_messages: Vấn đề tham khảo và cố định trong ghi chú commit
  702. text_issue_added: "Vấn đề %{id} đã được báo cáo bởi %{author}."
  703. text_issue_updated: "Vấn đề %{id} đã được cập nhật bởi %{author}."
  704. 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ó ?
  705. 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ì ?"
  706. text_issue_category_destroy_assignments: Gỡ bỏ danh mục được phân công
  707. text_issue_category_reassign_to: Gán lại vấn đề cho danh mục này
  708. 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)."
  709. 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."
  710. text_load_default_configuration: Nạp lại cấu hình mặc định
  711. text_status_changed_by_changeset: "Áp dụng trong changeset : %{value}."
  712. text_issues_destroy_confirmation: 'Bạn có chắc chắn muốn xóa các vấn đề đã chọn ?'
  713. text_select_project_modules: 'Chọn các module cho dự án:'
  714. text_default_administrator_account_changed: Thay đổi tài khoản quản trị mặc định
  715. text_file_repository_writable: Cho phép ghi thư mục đính kèm
  716. text_minimagick_available: Trạng thái MiniMagick
  717. 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 ?"
  718. text_destroy_time_entries: Xóa thời gian báo cáo
  719. text_assign_time_entries_to_project: Gán thời gian báo cáo cho dự án
  720. text_reassign_time_entries: 'Gán lại thời gian báo cáo cho Vấn đề này:'
  721. text_user_wrote: "%{value} đã viết:"
  722. text_user_wrote_in: "%{value} đã viết (%{link}):"
  723. text_enumeration_destroy_question: "%{count} đối tượng được gán giá trị này."
  724. text_enumeration_category_reassign_to: 'Gán lại giá trị này:'
  725. 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."
  726. default_role_manager: 'Điều hành '
  727. default_role_developer: 'Phát triển '
  728. default_role_reporter: Báo cáo
  729. default_tracker_bug: Lỗi
  730. default_tracker_feature: Tính năng
  731. default_tracker_support: Hỗ trợ
  732. default_issue_status_new: Mới
  733. default_issue_status_in_progress: Đang tiến hành
  734. default_issue_status_resolved: Đã được giải quyết
  735. default_issue_status_feedback: Phản hồi
  736. default_issue_status_closed: Đã đóng
  737. default_issue_status_rejected: Từ chối
  738. default_doc_category_user: Tài liệu người dùng
  739. default_doc_category_tech: Tài liệu kỹ thuật
  740. default_priority_low: Thấp
  741. default_priority_normal: Bình thường
  742. default_priority_high: Cao
  743. default_priority_urgent: Khẩn cấp
  744. default_priority_immediate: Trung bình
  745. default_activity_design: Thiết kế
  746. default_activity_development: Phát triển
  747. enumeration_issue_priorities: Mức độ ưu tiên vấn đề
  748. enumeration_doc_categories: Danh mục tài liệu
  749. enumeration_activities: Hoạt động
  750. setting_plain_text_mail: Mail dạng text đơn giản (không dùng HTML)
  751. setting_gravatar_enabled: Dùng biểu tượng Gravatar
  752. permission_edit_project: Chỉnh dự án
  753. permission_select_project_modules: Chọn Module
  754. permission_manage_members: Quản lý thành viên
  755. permission_manage_versions: Quản lý phiên bản
  756. permission_manage_categories: Quản lý chủ đề
  757. permission_add_issues: Thêm vấn đề
  758. permission_edit_issues: Sửa vấn đề
  759. permission_manage_issue_relations: Quản lý quan hệ vấn đề
  760. permission_add_issue_notes: Thêm chú thích
  761. permission_edit_issue_notes: Sửa chú thích
  762. permission_edit_own_issue_notes: Sửa chú thích cá nhân
  763. permission_delete_issues: Xóa vấn đề
  764. permission_manage_public_queries: Quản lý truy vấn công cộng
  765. permission_save_queries: Lưu truy vấn
  766. permission_view_gantt: Xem biểu đồ sự kiện
  767. permission_view_calendar: Xem lịch
  768. permission_view_issue_watchers: Xem những người theo dõi
  769. permission_add_issue_watchers: Thêm người theo dõi
  770. permission_log_time: Lưu thời gian đã qua
  771. permission_view_time_entries: Xem thời gian đã qua
  772. permission_edit_time_entries: Xem nhật ký thời gian
  773. permission_edit_own_time_entries: Sửa thời gian đã lưu
  774. permission_manage_news: Quản lý tin mới
  775. permission_comment_news: Chú thích vào tin mới
  776. permission_view_documents: Xem tài liệu
  777. permission_manage_files: Quản lý tập tin
  778. permission_view_files: Xem tập tin
  779. permission_manage_wiki: Quản lý wiki
  780. permission_rename_wiki_pages: Đổi tên trang wiki
  781. permission_delete_wiki_pages: Xóa trang wiki
  782. permission_view_wiki_pages: Xem wiki
  783. permission_view_wiki_edits: Xem lược sử trang wiki
  784. permission_edit_wiki_pages: Sửa trang wiki
  785. permission_delete_wiki_pages_attachments: Xóa tệp đính kèm
  786. permission_protect_wiki_pages: Bảo vệ trang wiki
  787. permission_manage_repository: Quản lý kho lưu trữ
  788. permission_browse_repository: Duyệt kho lưu trữ
  789. permission_view_changesets: Xem các thay đổi
  790. permission_commit_access: Truy cập commit
  791. permission_manage_boards: Quản lý diễn đàn
  792. permission_view_messages: Xem bài viết
  793. permission_add_messages: Gửi bài viết
  794. permission_edit_messages: Sửa bài viết
  795. permission_edit_own_messages: Sửa bài viết cá nhân
  796. permission_delete_messages: Xóa bài viết
  797. permission_delete_own_messages: Xóa bài viết cá nhân
  798. label_example: Ví dụ
  799. 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ạ."
  800. permission_delete_own_messages: Xóa thông điệp
  801. label_user_activity: "%{value} hoạt động"
  802. label_updated_time_by: "Cập nhật bởi %{author} cách đây %{age}"
  803. 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ị.'
  804. setting_diff_max_lines_displayed: Số dòng thay đổi tối đa được hiển thị
  805. text_plugin_assets_writable: Cho phép ghi thư mục Plugin
  806. warning_attachments_not_saved: "%{count} file không được lưu."
  807. button_create_and_continue: Tạo và tiếp tục
  808. text_custom_field_possible_values_info: 'Một dòng cho mỗi giá trị'
  809. label_display: Hiển thị
  810. field_editable: Có thể sửa được
  811. 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
  812. setting_file_max_size_displayed: Kích thước tối đa của tệp tin văn bản
  813. field_watcher: Người quan sát
  814. setting_openid: Cho phép đăng nhập và đăng ký dùng OpenID
  815. field_identity_url: OpenID URL
  816. label_login_with_open_id_option: hoặc đăng nhập với OpenID
  817. field_content: Nội dung
  818. label_descending: Giảm dần
  819. label_sort: Sắp xếp
  820. label_ascending: Tăng dần
  821. label_date_from_to: "Từ %{start} tới %{end}"
  822. label_greater_or_equal: ">="
  823. label_less_or_equal: "<="
  824. 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?"
  825. text_wiki_page_reassign_children: Gán lại trang con vào trang mẹ này
  826. text_wiki_page_nullify_children: Giữ trang con như trang gốc
  827. text_wiki_page_destroy_children: Xóa trang con và tất cả trang con cháu của nó
  828. setting_password_min_length: Chiều dài tối thiểu của mật khẩu
  829. field_group_by: Nhóm kết quả bởi
  830. mail_subject_wiki_content_updated: "%{id} trang wiki đã được cập nhật"
  831. label_wiki_content_added: Đã thêm trang Wiki
  832. mail_subject_wiki_content_added: "%{id} trang wiki đã được thêm vào"
  833. mail_body_wiki_content_added: "Có %{id} trang wiki đã được thêm vào bởi %{author}."
  834. label_wiki_content_updated: Trang Wiki đã được cập nhật
  835. mail_body_wiki_content_updated: "Có %{id} trang wiki đã được cập nhật bởi %{author}."
  836. permission_add_project: Tạo dự án
  837. 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
  838. label_view_all_revisions: Xem tất cả bản điều chỉnh
  839. label_tag: Thẻ
  840. label_branch: Nhánh
  841. 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.
  842. 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 đề").
  843. text_journal_changed: "%{label} thay đổi từ %{old} tới %{new}"
  844. text_journal_set_to: "%{label} gán cho %{value}"
  845. text_journal_deleted: "%{label} xóa (%{old})"
  846. label_group_plural: Các nhóm
  847. label_group: Nhóm
  848. label_group_new: Thêm nhóm
  849. label_time_entry_plural: Thời gian đã sử dụng
  850. text_journal_added: "%{label} %{value} được thêm"
  851. field_active: Tích cực
  852. enumeration_system_activity: Hoạt động hệ thống
  853. permission_delete_issue_watchers: Xóa người quan sát
  854. version_status_closed: đóng
  855. version_status_locked: khóa
  856. version_status_open: mở
  857. 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
  858. label_user_anonymous: Ẩn danh
  859. button_move_and_follow: Di chuyển và theo
  860. setting_default_projects_modules: Các Module được kích hoạt mặc định cho dự án mới
  861. setting_gravatar_default: Ảnh Gravatar mặc định
  862. field_sharing: Chia sẻ
  863. label_version_sharing_hierarchy: Với thứ bậc dự án
  864. label_version_sharing_system: Với tất cả dự án
  865. label_version_sharing_descendants: Với dự án con
  866. label_version_sharing_tree: Với cây dự án
  867. label_version_sharing_none: Không chia sẻ
  868. error_can_not_archive_project: Dựa án này không thể lưu trữ được
  869. button_copy_and_follow: Sao chép và theo
  870. label_copy_source: Nguồn
  871. setting_issue_done_ratio: Tính toán tỷ lệ hoàn thành vấn đề với
  872. setting_issue_done_ratio_issue_status: Sử dụng trạng thái của vấn đề
  873. error_issue_done_ratios_not_updated: Tỷ lệ hoàn thành vấn đề không được cập nhật.
  874. error_workflow_copy_target: Vui lòng lựa chọn đích của theo dấu và quyền
  875. setting_issue_done_ratio_issue_field: Dùng trường vấn đề
  876. label_copy_same_as_target: Tương tự như đích
  877. label_copy_target: Đích
  878. notice_issue_done_ratios_updated: Tỷ lệ hoàn thành vấn đề được cập nhật.
  879. error_workflow_copy_source: Vui lòng lựa chọn nguồn của theo dấu hoặc quyền
  880. label_update_issue_done_ratios: Cập nhật tỷ lệ hoàn thành vấn đề
  881. setting_start_of_week: Định dạng lịch
  882. permission_view_issues: Xem Vấn đề
  883. label_display_used_statuses_only: Chỉ hiển thị trạng thái đã được dùng bởi theo dõi này
  884. label_revision_id: "Bản điều chỉnh %{value}"
  885. label_api_access_key: Khoá truy cập API
  886. 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."
  887. label_feeds_access_key: Khoá truy cập Atom
  888. notice_api_access_key_reseted: Khoá truy cập API của bạn đã được đặt lại.
  889. setting_rest_api_enabled: Cho phép dịch vụ web REST
  890. label_missing_api_access_key: Mất Khoá truy cập API
  891. label_missing_feeds_access_key: Mất Khoá truy cập Atom
  892. button_show: Hiện
  893. text_line_separated: Nhiều giá trị được phép(mỗi dòng một giá trị).
  894. setting_mail_handler_body_delimiters: "Cắt bớt email sau những dòng :"
  895. permission_add_subprojects: Tạo Dự án con
  896. label_subproject_new: Thêm dự án con
  897. text_own_membership_delete_confirmation: |-
  898. 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 đó.
  899. Bạn có muốn tiếp tục?
  900. label_close_versions: Đóng phiên bản đã hoàn thành
  901. label_board_sticky: Chú ý
  902. label_board_locked: Đã khóa
  903. permission_export_wiki_pages: Xuất trang wiki
  904. setting_cache_formatted_text: Cache định dạng các ký tự
  905. permission_manage_project_activities: Quản lý hoạt động của dự án
  906. error_unable_delete_issue_status: Không thể xóa trạng thái vấn đề (%{value})
  907. label_profile: Hồ sơ
  908. permission_manage_subtasks: Quản lý tác vụ con
  909. field_parent_issue: Tác vụ cha
  910. label_subtask_plural: Tác vụ con
  911. label_project_copy_notifications: Gửi email thông báo trong khi dự án được sao chép
  912. error_can_not_delete_custom_field: Không thể xóa trường tùy biến
  913. error_unable_to_connect: "Không thể kết nối (%{value})"
  914. error_can_not_remove_role: Quyền này đang được dùng và không thể xóa được.
  915. error_can_not_delete_tracker: Theo dõi này chứa vấn đề và không thể xóa được.
  916. field_principal: Chủ yếu
  917. notice_failed_to_save_members: "Thất bại khi lưu thành viên : %{errors}."
  918. text_zoom_out: Thu nhỏ
  919. text_zoom_in: Phóng to
  920. notice_unable_delete_time_entry: Không thể xóa mục time log.
  921. field_time_entries: Log time
  922. project_module_gantt: Biểu đồ Gantt
  923. project_module_calendar: Lịch
  924. button_edit_associated_wikipage: "Chỉnh sửa trang Wiki liên quan: %{page_title}"
  925. field_text: Trường văn bản
  926. setting_default_notification_option: Tuỳ chọn thông báo mặc định
  927. label_user_mail_option_only_my_events: Chỉ những thứ tôi theo dõi hoặc liên quan
  928. label_user_mail_option_none: Không có sự kiện
  929. field_member_of_group: Nhóm thụ hưởng
  930. field_assigned_to_role: Quyền thụ hưởng
  931. notice_not_authorized_archived_project: Dự án bạn đang có truy cập đã được lưu trữ.
  932. label_principal_search: "Tìm kiếm người dùng hoặc nhóm:"
  933. label_user_search: "Tìm kiếm người dùng:"
  934. field_visible: Nhìn thấy
  935. setting_emails_header: Tiêu đề Email
  936. setting_commit_logtime_activity_id: Cho phép ghi lại thời gian
  937. text_time_logged_by_changeset: "Áp dụng trong changeset : %{value}."
  938. setting_commit_logtime_enabled: Cho phép time logging
  939. 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})"
  940. setting_gantt_items_limit: Lượng thông tin tối đa trên đồ thị gantt
  941. description_selected_columns: Các cột được lựa chọn
  942. 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
  943. 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.
  944. label_my_queries: Các truy vấn tùy biến
  945. text_journal_changed_no_detail: "%{label} cập nhật"
  946. label_news_comment_added: Bình luận đã được thêm cho một tin tức
  947. button_expand_all: Mở rộng tất cả
  948. button_collapse_all: Thu gọn tất cả
  949. 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
  950. 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ả
  951. label_bulk_edit_selected_time_entries: Sửa nhiều mục đã chọn
  952. text_time_entries_destroy_confirmation: Bạn có chắc chắn muốn xóa bỏ các mục đã chọn?
  953. label_role_anonymous: Ẩn danh
  954. label_role_non_member: Không là thành viên
  955. label_issue_note_added: Ghi chú được thêm
  956. label_issue_status_updated: Trạng thái cập nhật
  957. label_issue_priority_updated: Cập nhật ưu tiên
  958. label_issues_visibility_own: Vấn đề tạo bởi hoặc gán cho người dùng
  959. field_issues_visibility: Vấn đề được nhìn thấy
  960. label_issues_visibility_all: Tất cả vấn đề
  961. permission_set_own_issues_private: Đặt vấn đề sở hữu là riêng tư hoặc công cộng
  962. field_is_private: Riêng tư
  963. permission_set_issues_private: Gán vấn đề là riêng tư hoặc công cộng
  964. label_issues_visibility_public: Tất cả vấn đề không riêng tư
  965. text_issues_destroy_descendants_confirmation: "Hành động này sẽ xóa %{count} tác vụ con."
  966. field_commit_logs_encoding: Mã hóa ghi chú Commit
  967. field_scm_path_encoding: Mã hóa đường dẫn
  968. text_scm_path_encoding_note: "Mặc định: UTF-8"
  969. field_path_to_repository: Đường dẫn tới kho chứa
  970. field_root_directory: Thư mục gốc
  971. field_cvs_module: Module
  972. field_cvsroot: CVSROOT
  973. text_mercurial_repository_note: Kho chứa cục bộ (vd. /hgrepo, c:\hgrepo)
  974. text_scm_command: Lệnh
  975. text_scm_command_version: Phiên bản
  976. label_git_report_last_commit: Báo cáo lần Commit cuối cùng cho file và thư mục
  977. 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ó.
  978. 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ị.
  979. notice_issue_successful_create: "Vấn đề %{id} đã được tạo."
  980. label_between: Ở giữa
  981. setting_issue_group_assignment: Cho phép gán vấn đề đến các nhóm
  982. label_diff: Sự khác nhau
  983. text_git_repository_note: Kho chứa cục bộ và công cộng (vd. /gitrepo, c:\gitrepo)
  984. description_query_sort_criteria_direction: Chiều sắp xếp
  985. description_project_scope: Phạm vi tìm kiếm
  986. description_filter: Lọc
  987. description_user_mail_notification: Thiết lập email thông báo
  988. description_message_content: Nội dung thông điệp
  989. description_available_columns: Các cột có sẵn
  990. description_issue_category_reassign: Chọn danh mục vấn đề
  991. description_search: Trường tìm kiếm
  992. description_notes: Các chú ý
  993. description_choose_project: Các dự án
  994. description_query_sort_criteria_attribute: Sắp xếp thuộc tính
  995. description_wiki_subpages_reassign: Chọn một trang cấp trên
  996. label_parent_revision: Cha
  997. label_child_revision: Con
  998. 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.
  999. 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
  1000. button_edit_section: Soạn thảo sự lựa chọn này
  1001. setting_repositories_encodings: Mã hóa kho chứa
  1002. description_all_columns: Các cột
  1003. button_export: Export
  1004. label_export_options: "%{export_format} tùy chọn Export"
  1005. 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})"
  1006. notice_failed_to_save_time_entries: "Lỗi khi lưu %{count} lần trên %{total} sự lựa chọn : %{ids}."
  1007. label_x_issues:
  1008. zero: 0 vấn đề
  1009. one: 1 vấn đề
  1010. other: "%{count} vấn đề"
  1011. label_repository_new: Kho lưu trữ mới
  1012. field_repository_is_default: Kho lưu trữ chính
  1013. label_copy_attachments: Copy các file đính kèm
  1014. label_item_position: "%{position}/%{count}"
  1015. label_completed_versions: Các phiên bản hoàn thành
  1016. 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.
  1017. field_multiple: Nhiều giá trị
  1018. setting_commit_cross_project_ref: Sử dụng thời gian hiện tại khi tạo vấn đề mới
  1019. text_issue_conflict_resolution_add_notes: Thêm ghi chú của tôi và loại bỏ các thay đổi khác
  1020. 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 đè
  1021. 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ó.
  1022. text_issue_conflict_resolution_cancel: "Loại bỏ tất cả các thay đổi và hiển thị lại %{link}"
  1023. permission_manage_related_issues: Quản lý các vấn đề liên quan
  1024. field_auth_source_ldap_filter: Bộ lọc LDAP
  1025. label_search_for_watchers: Tìm kiếm người theo dõi để thêm
  1026. notice_account_deleted: Tài khoản của bạn đã được xóa vĩnh viễn.
  1027. button_delete_my_account: Xóa tài khoản của tôi
  1028. setting_unsubscribe: Cho phép người dùng xóa Account
  1029. text_account_destroy_confirmation: |-
  1030. Bạn đồng ý không ?
  1031. 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!
  1032. error_session_expired: Phiên làm việc của bạn bị quá hạn, hãy đăng nhập lại
  1033. 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"
  1034. setting_session_lifetime: Thời gian tồn tại lớn nhất của Session
  1035. setting_session_timeout: Thời gian vô hiệu hóa Session
  1036. label_session_expiration: Phiên làm việc bị quá hạn
  1037. permission_close_project: Đóng / Mở lại dự án
  1038. button_close: Đóng
  1039. button_reopen: Mở lại
  1040. project_status_active: Kích hoạt
  1041. project_status_closed: Đã đóng
  1042. project_status_archived: Lưu trữ
  1043. text_project_closed: Dự án này đã đóng và chỉ đọc
  1044. notice_user_successful_create: "Người dùng %{id} đã được tạo."
  1045. field_core_fields: Các trường tiêu chuẩn
  1046. field_timeout: Quá hạn
  1047. setting_thumbnails_enabled: Hiển thị các thumbnail đính kèm
  1048. setting_thumbnails_size: Kích thước Thumbnails(pixel)
  1049. setting_session_lifetime: Thời gian tồn tại lớn nhất của Session
  1050. setting_session_timeout: Thời gian vô hiệu hóa Session
  1051. label_status_transitions: Trạng thái chuyển tiếp
  1052. label_fields_permissions: Cho phép các trường
  1053. label_readonly: Chỉ đọc
  1054. label_required: Yêu cầu
  1055. 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.
  1056. field_board_parent: Diễn đàn cha
  1057. label_attribute_of_project: "Của dự án : %{name}"
  1058. label_attribute_of_author: "Của tác giả : %{name}"
  1059. label_attribute_of_assigned_to: "Được phân công bởi %{name}"
  1060. label_attribute_of_fixed_version: "Phiên bản mục tiêu của %{name}"
  1061. label_copy_subtasks: Sao chép các nhiệm vụ con
  1062. label_copied_to: Sao chép đến
  1063. label_copied_from: Sao chép từ
  1064. label_any_issues_in_project: Bất kỳ vấn đề nào trong dự án
  1065. label_any_issues_not_in_project: Bất kỳ vấn đề nào không thuộc dự án
  1066. field_private_notes: Ghi chú riêng tư
  1067. permission_view_private_notes: Xem ghi chú riêng tư
  1068. permission_set_notes_private: Đặt ghi chú thành riêng tư
  1069. label_no_issues_in_project: Không có vấn đề nào trong dự án
  1070. label_any: tất cả
  1071. label_last_n_weeks: "%{count} tuần qua"
  1072. setting_cross_project_subtasks: Cho phép các nhiệm vụ con liên dự án
  1073. label_cross_project_descendants: Trong các dự án con
  1074. label_cross_project_tree: Trong cùng cây dự án
  1075. label_cross_project_hierarchy: Trong dự án cùng cấp bậc
  1076. label_cross_project_system: Trong tất cả các dự án
  1077. button_hide: Ẩn
  1078. setting_non_working_week_days: Các ngày không làm việc
  1079. label_in_the_next_days: Trong tương lai
  1080. label_in_the_past_days: Trong quá khứ
  1081. label_attribute_of_user: "Của người dùng %{name}"
  1082. 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.
  1083. label_attribute_of_issue: "Vấn đề của %{name}"
  1084. permission_add_documents: Thêm tài liệu
  1085. permission_edit_documents: Soạn thảo tài liệu
  1086. permission_delete_documents: Xóa tài liệu
  1087. label_gantt_progress_line: Tiến độ
  1088. setting_jsonp_enabled: Cho phép trợ giúp JSONP
  1089. field_inherit_members: Các thành viên kế thừa
  1090. field_closed_on: Đã đóng
  1091. field_generate_password: Generate password
  1092. setting_default_projects_tracker_ids: Default trackers for new projects
  1093. label_total_time: Tổng cộng
  1094. notice_account_not_activated_yet: You haven't activated your account yet. If you want
  1095. to receive a new activation email, please <a href="%{url}">click this link</a>.
  1096. notice_account_locked: Your account is locked.
  1097. label_hidden: Hidden
  1098. label_visibility_private: to me only
  1099. label_visibility_roles: to these roles only
  1100. label_visibility_public: to any users
  1101. field_must_change_passwd: Must change password at next logon
  1102. notice_new_password_must_be_different: The new password must be different from the
  1103. current password
  1104. setting_mail_handler_excluded_filenames: Exclude attachments by name
  1105. text_convert_available: ImageMagick convert available (optional)
  1106. label_link: Link
  1107. label_only: only
  1108. label_drop_down_list: drop-down list
  1109. label_checkboxes: checkboxes
  1110. label_link_values_to: Link values to URL
  1111. setting_force_default_language_for_anonymous: Force default language for anonymous
  1112. users
  1113. setting_force_default_language_for_loggedin: Force default language for logged-in
  1114. users
  1115. label_custom_field_select_type: Select the type of object to which the custom field
  1116. is to be attached
  1117. label_issue_assigned_to_updated: Assignee updated
  1118. label_check_for_updates: Check for updates
  1119. label_latest_compatible_version: Latest compatible version
  1120. label_unknown_plugin: Unknown plugin
  1121. label_radio_buttons: radio buttons
  1122. label_group_anonymous: Anonymous users
  1123. label_group_non_member: Non member users
  1124. label_add_projects: Add projects
  1125. field_default_status: Default status
  1126. text_subversion_repository_note: 'Examples: file:///, http://, https://, svn://, svn+[tunnelscheme]://'
  1127. field_users_visibility: Users visibility
  1128. label_users_visibility_all: All active users
  1129. label_users_visibility_members_of_visible_projects: Members of visible projects
  1130. label_edit_attachments: Edit attached files
  1131. setting_link_copied_issue: Link issues on copy
  1132. label_link_copied_issue: Link copied issue
  1133. label_ask: Ask
  1134. label_search_attachments_yes: Search attachment filenames and descriptions
  1135. label_search_attachments_no: Do not search attachments
  1136. label_search_attachments_only: Search attachments only
  1137. label_search_open_issues_only: Open issues only
  1138. field_address: Email
  1139. setting_max_additional_emails: Maximum number of additional email addresses
  1140. label_email_address_plural: Emails
  1141. label_email_address_add: Add email address
  1142. label_enable_notifications: Enable notifications
  1143. label_disable_notifications: Disable notifications
  1144. setting_search_results_per_page: Search results per page
  1145. label_blank_value: blank
  1146. permission_copy_issues: Copy issues
  1147. error_password_expired: Your password has expired or the administrator requires you
  1148. to change it.
  1149. field_time_entries_visibility: Time logs visibility
  1150. setting_password_max_age: Require password change after
  1151. label_parent_task_attributes: Parent tasks attributes
  1152. label_parent_task_attributes_derived: Calculated from subtasks
  1153. label_parent_task_attributes_independent: Independent of subtasks
  1154. label_time_entries_visibility_all: All time entries
  1155. label_time_entries_visibility_own: Time entries created by the user
  1156. label_member_management: Member management
  1157. label_member_management_all_roles: All roles
  1158. label_member_management_selected_roles_only: Only these roles
  1159. label_password_required: Confirm your password to continue
  1160. label_total_spent_time: Tổng thời gian sử dụng
  1161. notice_import_finished: "%{count} items have been imported"
  1162. notice_import_finished_with_errors: "%{count} out of %{total} items could not be imported"
  1163. error_invalid_file_encoding: The file is not a valid %{encoding} encoded file
  1164. error_invalid_csv_file_or_settings: The file is not a CSV file or does not match the
  1165. settings below (%{value})
  1166. error_can_not_read_import_file: An error occurred while reading the file to import
  1167. permission_import_issues: Import issues
  1168. label_import_issues: Import issues
  1169. label_select_file_to_import: Select the file to import
  1170. label_fields_separator: Field separator
  1171. label_fields_wrapper: Field wrapper
  1172. label_encoding: Encoding
  1173. label_comma_char: Comma
  1174. label_semi_colon_char: Semicolon
  1175. label_quote_char: Quote
  1176. label_double_quote_char: Double quote
  1177. label_fields_mapping: Fields mapping
  1178. label_file_content_preview: File content preview
  1179. label_create_missing_values: Create missing values
  1180. button_import: Import
  1181. field_total_estimated_hours: Total estimated time
  1182. label_api: API
  1183. label_total_plural: Totals
  1184. label_assigned_issues: Assigned issues
  1185. label_field_format_enumeration: Key/value list
  1186. label_f_hour_short: '%{value} h'
  1187. field_default_version: Default version
  1188. error_attachment_extension_not_allowed: Attachment extension %{extension} is not allowed
  1189. setting_attachment_extensions_allowed: Allowed extensions
  1190. setting_attachment_extensions_denied: Disallowed extensions
  1191. label_any_open_issues: any open issues
  1192. label_no_open_issues: no open issues
  1193. label_default_values_for_new_users: Default values for new users
  1194. error_ldap_bind_credentials: Invalid LDAP Account/Password
  1195. setting_sys_api_key: Mã số API
  1196. setting_lost_password: Phục hồi mật mã
  1197. mail_subject_security_notification: Security notification
  1198. mail_body_security_notification_change: ! '%{field} was changed.'
  1199. mail_body_security_notification_change_to: ! '%{field} was changed to %{value}.'
  1200. mail_body_security_notification_add: ! '%{field} %{value} was added.'
  1201. mail_body_security_notification_remove: ! '%{field} %{value} was removed.'
  1202. mail_body_security_notification_notify_enabled: Email address %{value} now receives
  1203. notifications.
  1204. mail_body_security_notification_notify_disabled: Email address %{value} no longer
  1205. receives notifications.
  1206. mail_body_settings_updated: ! 'The following settings were changed:'
  1207. field_remote_ip: IP address
  1208. label_wiki_page_new: New wiki page
  1209. label_relations: Relations
  1210. button_filter: Filter
  1211. mail_body_password_updated: Your password has been changed.
  1212. label_no_preview: No preview available
  1213. error_no_tracker_allowed_for_new_issue_in_project: The project doesn't have any trackers
  1214. for which you can create an issue
  1215. label_tracker_all: All trackers
  1216. label_new_project_issue_tab_enabled: Display the "New issue" tab
  1217. setting_new_item_menu_tab: Project menu tab for creating new objects
  1218. label_new_object_tab_enabled: Display the "+" drop-down
  1219. error_no_projects_with_tracker_allowed_for_new_issue: There are no projects with trackers
  1220. for which you can create an issue
  1221. field_textarea_font: Font used for text areas
  1222. label_font_default: Default font
  1223. label_font_monospace: Monospaced font
  1224. label_font_proportional: Proportional font
  1225. setting_timespan_format: Time span format
  1226. label_table_of_contents: Table of contents
  1227. setting_commit_logs_formatting: Apply text formatting to commit messages
  1228. setting_mail_handler_enable_regex: Enable regular expressions
  1229. error_move_of_child_not_possible: 'Subtask %{child} could not be moved to the new
  1230. project: %{errors}'
  1231. error_cannot_reassign_time_entries_to_an_issue_about_to_be_deleted: Spent time cannot
  1232. be reassigned to an issue that is about to be deleted
  1233. setting_timelog_required_fields: Required fields for time logs
  1234. label_attribute_of_object: '%{object_name}''s %{name}'
  1235. label_user_mail_option_only_assigned: Only for things I watch or I am assigned to
  1236. label_user_mail_option_only_owner: Only for things I watch or I am the owner of
  1237. warning_fields_cleared_on_bulk_edit: Changes will result in the automatic deletion
  1238. of values from one or more fields on the selected objects
  1239. field_updated_by: Updated by
  1240. field_last_updated_by: Last updated by
  1241. field_full_width_layout: Full width layout
  1242. label_last_notes: Last notes
  1243. field_digest: Checksum
  1244. field_default_assigned_to: Default assignee
  1245. setting_show_custom_fields_on_registration: Show custom fields on registration
  1246. permission_view_news: View news
  1247. label_no_preview_alternative_html: No preview available. %{link} the file instead.
  1248. label_no_preview_download: Download
  1249. setting_close_duplicate_issues: Close duplicate issues automatically
  1250. error_exceeds_maximum_hours_per_day: Cannot log more than %{max_hours} hours on the
  1251. same day (%{logged_hours} hours have already been logged)
  1252. setting_time_entry_list_defaults: Timelog list defaults
  1253. setting_timelog_accept_0_hours: Accept time logs with 0 hours
  1254. setting_timelog_max_hours_per_day: Maximum hours that can be logged per day and user
  1255. label_x_revisions: "%{count} revisions"
  1256. error_can_not_delete_auth_source: This authentication mode is in use and cannot be
  1257. deleted.
  1258. button_actions: Actions
  1259. mail_body_lost_password_validity: Please be aware that you may change the password
  1260. only once using this link.
  1261. text_login_required_html: When not requiring authentication, public projects and their
  1262. contents are openly available on the network. You can <a href="%{anonymous_role_path}">edit
  1263. the applicable permissions</a>.
  1264. label_login_required_yes: 'Yes'
  1265. label_login_required_no: No, allow anonymous access to public projects
  1266. text_project_is_public_non_member: Public projects and their contents are available
  1267. to all logged-in users.
  1268. text_project_is_public_anonymous: Public projects and their contents are openly available
  1269. on the network.
  1270. label_version_and_files: Versions (%{count}) and Files
  1271. label_ldap: LDAP
  1272. label_ldaps_verify_none: LDAPS (without certificate check)
  1273. label_ldaps_verify_peer: LDAPS
  1274. label_ldaps_warning: It is recommended to use an encrypted LDAPS connection with certificate
  1275. check to prevent any manipulation during the authentication process.
  1276. label_nothing_to_preview: Nothing to preview
  1277. error_token_expired: This password recovery link has expired, please try again.
  1278. error_spent_on_future_date: Cannot log time on a future date
  1279. setting_timelog_accept_future_dates: Accept time logs on future dates
  1280. label_delete_link_to_subtask: Xóa quan hệ
  1281. error_not_allowed_to_log_time_for_other_users: You are not allowed to log time
  1282. for other users
  1283. permission_log_time_for_other_users: Log spent time for other users
  1284. label_tomorrow: tomorrow
  1285. label_next_week: next week
  1286. label_next_month: next month
  1287. text_role_no_workflow: No workflow defined for this role
  1288. text_status_no_workflow: No tracker uses this status in the workflows
  1289. setting_mail_handler_preferred_body_part: Preferred part of multipart (HTML) emails
  1290. setting_show_status_changes_in_mail_subject: Show status changes in issue mail notifications
  1291. subject
  1292. label_inherited_from_parent_project: Inherited from parent project
  1293. label_inherited_from_group: Inherited from group %{name}
  1294. label_trackers_description: Trackers description
  1295. label_open_trackers_description: View all trackers description
  1296. label_preferred_body_part_text: Text
  1297. label_preferred_body_part_html: HTML (experimental)
  1298. field_parent_issue_subject: Parent task subject
  1299. permission_edit_own_issues: Edit own issues
  1300. text_select_apply_tracker: Select tracker
  1301. label_updated_issues: Updated issues
  1302. text_avatar_server_config_html: The current avatar server is <a href="%{url}">%{url}</a>.
  1303. You can configure it in config/configuration.yml.
  1304. setting_gantt_months_limit: Maximum number of months displayed on the gantt chart
  1305. permission_import_time_entries: Import time entries
  1306. label_import_notifications: Send email notifications during the import
  1307. text_gs_available: ImageMagick PDF support available (optional)
  1308. field_recently_used_projects: Number of recently used projects in jump box
  1309. label_optgroup_bookmarks: Bookmarks
  1310. label_optgroup_others: Other projects
  1311. label_optgroup_recents: Recently used
  1312. button_project_bookmark: Add bookmark
  1313. button_project_bookmark_delete: Remove bookmark
  1314. field_history_default_tab: Issue's history default tab
  1315. label_issue_history_properties: Property changes
  1316. label_issue_history_notes: Notes
  1317. label_last_tab_visited: Last visited tab
  1318. field_unique_id: Unique ID
  1319. text_no_subject: no subject
  1320. setting_password_required_char_classes: Required character classes for passwords
  1321. label_password_char_class_uppercase: uppercase letters
  1322. label_password_char_class_lowercase: lowercase letters
  1323. label_password_char_class_digits: digits
  1324. label_password_char_class_special_chars: special characters
  1325. text_characters_must_contain: Must contain %{character_classes}.
  1326. label_starts_with: starts with
  1327. label_ends_with: ends with
  1328. label_issue_fixed_version_updated: Target version updated
  1329. setting_project_list_defaults: Projects list defaults
  1330. label_display_type: Display results as
  1331. label_display_type_list: List
  1332. label_display_type_board: Board
  1333. label_my_bookmarks: My bookmarks
  1334. label_import_time_entries: Import time entries
  1335. field_toolbar_language_options: Code highlighting toolbar languages
  1336. label_user_mail_notify_about_high_priority_issues_html: Also notify me about issues
  1337. with a priority of <em>%{prio}</em> or higher
  1338. label_assign_to_me: Assign to me
  1339. notice_issue_not_closable_by_open_tasks: This issue cannot be closed because it has
  1340. at least one open subtask.
  1341. notice_issue_not_closable_by_blocking_issue: This issue cannot be closed because it
  1342. is blocked by at least one open issue.
  1343. notice_issue_not_reopenable_by_closed_parent_issue: This issue cannot be reopened
  1344. because its parent issue is closed.
  1345. error_bulk_download_size_too_big: These attachments cannot be bulk downloaded because
  1346. the total file size exceeds the maximum allowed size (%{max_size})
  1347. setting_bulk_download_max_size: Maximum total size for bulk download
  1348. label_download_all_attachments: Download all files
  1349. error_attachments_too_many: This file cannot be uploaded because it exceeds the maximum
  1350. number of files that can be attached simultaneously (%{max_number_of_files})
  1351. setting_email_domains_allowed: Allowed email domains
  1352. setting_email_domains_denied: Disallowed email domains
  1353. field_passwd_changed_on: Password last changed
  1354. label_relations_mapping: Relations mapping
  1355. label_import_users: Import users
  1356. label_days_to_html: "%{days} days up to %{date}"
  1357. setting_twofa: Two-factor authentication
  1358. label_optional: optional
  1359. label_required_lower: required
  1360. button_disable: Disable
  1361. twofa__totp__name: Authenticator app
  1362. twofa__totp__text_pairing_info_html: Scan this QR code or enter the plain text key
  1363. into a TOTP app (e.g. <a href="https://support.google.com/accounts/answer/1066447">Google
  1364. Authenticator</a>, <a href="https://authy.com/download/">Authy</a>, <a href="https://guide.duo.com/third-party-accounts">Duo
  1365. Mobile</a>) and enter the code in the field below to activate two-factor authentication.
  1366. twofa__totp__label_plain_text_key: Plain text key
  1367. twofa__totp__label_activate: Enable authenticator app
  1368. twofa_currently_active: 'Currently active: %{twofa_scheme_name}'
  1369. twofa_not_active: Not activated
  1370. twofa_label_code: Code
  1371. twofa_hint_disabled_html: Setting <strong>%{label}</strong> will deactivate and unpair
  1372. two-factor authentication devices for all users.
  1373. twofa_hint_required_html: Setting <strong>%{label}</strong> will require all users
  1374. to set up two-factor authentication at their next login.
  1375. twofa_label_setup: Enable two-factor authentication
  1376. twofa_label_deactivation_confirmation: Disable two-factor authentication
  1377. twofa_notice_select: 'Please select the two-factor scheme you would like to use:'
  1378. twofa_warning_require: The administrator requires you to enable two-factor authentication.
  1379. twofa_activated: Two-factor authentication successfully enabled. It is recommended
  1380. to <a data-method="post" href="%{bc_path}">generate backup codes</a> for your account.
  1381. twofa_deactivated: Two-factor authentication disabled.
  1382. twofa_mail_body_security_notification_paired: Two-factor authentication successfully
  1383. enabled using %{field}.
  1384. twofa_mail_body_security_notification_unpaired: Two-factor authentication disabled
  1385. for your account.
  1386. twofa_mail_body_backup_codes_generated: New two-factor authentication backup codes
  1387. generated.
  1388. twofa_mail_body_backup_code_used: A two-factor authentication backup code has been
  1389. used.
  1390. twofa_invalid_code: Code is invalid or outdated.
  1391. twofa_label_enter_otp: Please enter your two-factor authentication code.
  1392. twofa_too_many_tries: Too many tries.
  1393. twofa_resend_code: Resend code
  1394. twofa_code_sent: An authentication code has been sent to you.
  1395. twofa_generate_backup_codes: Generate backup codes
  1396. twofa_text_generate_backup_codes_confirmation: This will invalidate all existing backup
  1397. codes and generate new ones. Would you like to continue?
  1398. twofa_notice_backup_codes_generated: Your backup codes have been generated.
  1399. twofa_warning_backup_codes_generated_invalidated: New backup codes have been generated.
  1400. Your existing codes from %{time} are now invalid.
  1401. twofa_label_backup_codes: Two-factor authentication backup codes
  1402. twofa_text_backup_codes_hint: Use these codes instead of a one-time password should
  1403. you not have access to your second factor. Each code can only be used once. It is
  1404. recommended to print and store them in a safe place.
  1405. twofa_text_backup_codes_created_at: Backup codes generated %{datetime}.
  1406. twofa_backup_codes_already_shown: Backup codes cannot be shown again, please <a data-method="post"
  1407. href="%{bc_path}">generate new backup codes</a> if required.
  1408. error_can_not_execute_macro_html: Error executing the <strong>%{name}</strong> macro
  1409. (%{error})
  1410. error_macro_does_not_accept_block: This macro does not accept a block of text
  1411. error_childpages_macro_no_argument: With no argument, this macro can be called from
  1412. wiki pages only
  1413. error_circular_inclusion: Circular inclusion detected
  1414. error_page_not_found: Page not found
  1415. error_filename_required: Filename required
  1416. error_invalid_size_parameter: Invalid size parameter
  1417. error_attachment_not_found: Attachment %{name} not found
  1418. permission_delete_project: Delete the project
  1419. field_twofa_scheme: Two-factor authentication scheme
  1420. text_user_destroy_confirmation: Are you sure you want to delete this user and remove
  1421. all references to them? This cannot be undone. Often, locking a user instead of
  1422. deleting them is the better solution. To confirm, please enter their login (%{login})
  1423. below.
  1424. text_project_destroy_enter_identifier: To confirm, please enter the project's identifier
  1425. (%{identifier}) below.
  1426. button_add_subtask: Add subtask
  1427. notice_invalid_watcher: 'Invalid watcher: User will not receive any notifications
  1428. because it does not have access to view this object.'
  1429. button_fetch_changesets: Fetch commits
  1430. permission_view_message_watchers: View message watchers list
  1431. permission_add_message_watchers: Add message watchers
  1432. permission_delete_message_watchers: Delete message watchers
  1433. label_message_watchers: Watchers
  1434. button_copy_link: Copy link
  1435. error_invalid_authenticity_token: Invalid form authenticity token.
  1436. error_query_statement_invalid: An error occurred while executing the query and has
  1437. been logged. Please report this error to your Redmine administrator.
  1438. permission_view_wiki_page_watchers: View wiki page watchers list
  1439. permission_add_wiki_page_watchers: Add wiki page watchers
  1440. permission_delete_wiki_page_watchers: Delete wiki page watchers
  1441. label_wiki_page_watchers: Watchers
  1442. label_attachment_description: File description
  1443. error_no_data_in_file: The file does not contain any data
  1444. field_twofa_required: Require two factor authentication
  1445. twofa_hint_optional_html: Setting <strong>%{label}</strong> will let users set up
  1446. two-factor authentication at will, unless it is required by one of their groups.
  1447. twofa_text_group_required: This setting is only effective when the global two factor
  1448. authentication setting is set to 'optional'. Currently, two factor authentication
  1449. is required for all users.
  1450. twofa_text_group_disabled: This setting is only effective when the global two factor
  1451. authentication setting is set to 'optional'. Currently, two factor authentication
  1452. is disabled.
  1453. field_default_issue_query: Default issue query
  1454. setting_default_issue_query: Default Query
  1455. label_default_queries:
  1456. for_all_projects: For all projects
  1457. for_current_project: For current project
  1458. for_all_users: For all users
  1459. text_allowed_queries_to_select: Public (to any users) queries only selectable
  1460. text_all_migrations_have_been_run: All database migrations have been run
  1461. button_save_object: Save %{object_name}
  1462. button_edit_object: Edit %{object_name}
  1463. button_delete_object: Delete %{object_name}
  1464. text_setting_config_change: You can configure the behaviour in config/configuration.yml.
  1465. Please restart the application after editing it.
  1466. label_bulk_edit: Bulk edit