Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939
  1. th:
  2. direction: ltr
  3. date:
  4. formats:
  5. # Use the strftime parameters for formats.
  6. # When no format has been given, it uses default.
  7. # You can provide other formats here if you like!
  8. default: "%Y-%m-%d"
  9. short: "%b %d"
  10. long: "%B %d, %Y"
  11. day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
  12. abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
  13. # Don't forget the nil at the beginning; there's no such thing as a 0th month
  14. month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
  15. abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
  16. # Used in date_select and datime_select.
  17. order: [ :year, :month, :day ]
  18. time:
  19. formats:
  20. default: "%a, %d %b %Y %H:%M:%S %z"
  21. time: "%H:%M"
  22. short: "%d %b %H:%M"
  23. long: "%B %d, %Y %H:%M"
  24. am: "am"
  25. pm: "pm"
  26. datetime:
  27. distance_in_words:
  28. half_a_minute: "half a minute"
  29. less_than_x_seconds:
  30. one: "less than 1 second"
  31. other: "less than %{count} seconds"
  32. x_seconds:
  33. one: "1 second"
  34. other: "%{count} seconds"
  35. less_than_x_minutes:
  36. one: "less than a minute"
  37. other: "less than %{count} minutes"
  38. x_minutes:
  39. one: "1 minute"
  40. other: "%{count} minutes"
  41. about_x_hours:
  42. one: "about 1 hour"
  43. other: "about %{count} hours"
  44. x_days:
  45. one: "1 day"
  46. other: "%{count} days"
  47. about_x_months:
  48. one: "about 1 month"
  49. other: "about %{count} months"
  50. x_months:
  51. one: "1 month"
  52. other: "%{count} months"
  53. about_x_years:
  54. one: "about 1 year"
  55. other: "about %{count} years"
  56. over_x_years:
  57. one: "over 1 year"
  58. other: "over %{count} years"
  59. almost_x_years:
  60. one: "almost 1 year"
  61. other: "almost %{count} years"
  62. number:
  63. format:
  64. separator: "."
  65. delimiter: ""
  66. precision: 3
  67. human:
  68. format:
  69. precision: 1
  70. delimiter: ""
  71. storage_units:
  72. format: "%n %u"
  73. units:
  74. kb: KB
  75. tb: TB
  76. gb: GB
  77. byte:
  78. one: Byte
  79. other: Bytes
  80. mb: MB
  81. # Used in array.to_sentence.
  82. support:
  83. array:
  84. sentence_connector: "and"
  85. skip_last_comma: false
  86. activerecord:
  87. errors:
  88. template:
  89. header:
  90. one: "1 error prohibited this %{model} from being saved"
  91. other: "%{count} errors prohibited this %{model} from being saved"
  92. messages:
  93. inclusion: "ไม่อยู่ในรายการ"
  94. exclusion: "ถูกสงวนไว้"
  95. invalid: "ไม่ถูกต้อง"
  96. confirmation: "พิมพ์ไม่เหมือนเดิม"
  97. accepted: "ต้องยอมรับ"
  98. empty: "ต้องเติม"
  99. blank: "ต้องเติม"
  100. too_long: "ยาวเกินไป"
  101. too_short: "สั้นเกินไป"
  102. wrong_length: "ความยาวไม่ถูกต้อง"
  103. taken: "ถูกใช้ไปแล้ว"
  104. not_a_number: "ไม่ใช่ตัวเลข"
  105. not_a_date: "ไม่ใช่วันที่ ที่ถูกต้อง"
  106. greater_than: "must be greater than %{count}"
  107. greater_than_or_equal_to: "must be greater than or equal to %{count}"
  108. equal_to: "must be equal to %{count}"
  109. less_than: "must be less than %{count}"
  110. less_than_or_equal_to: "must be less than or equal to %{count}"
  111. odd: "must be odd"
  112. even: "must be even"
  113. greater_than_start_date: "ต้องมากกว่าวันเริ่ม"
  114. not_same_project: "ไม่ได้อยู่ในโครงการเดียวกัน"
  115. circular_dependency: "ความสัมพันธ์อ้างอิงเป็นวงกลม"
  116. cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks"
  117. actionview_instancetag_blank_option: กรุณาเลือก
  118. general_text_No: 'ไม่'
  119. general_text_Yes: 'ใช่'
  120. general_text_no: 'ไม่'
  121. general_text_yes: 'ใช่'
  122. general_lang_name: 'Thai (ไทย)'
  123. general_csv_separator: ','
  124. general_csv_decimal_separator: '.'
  125. general_csv_encoding: Windows-874
  126. general_pdf_encoding: cp874
  127. general_first_day_of_week: '1'
  128. notice_account_updated: บัญชีได้ถูกปรับปรุงแล้ว.
  129. notice_account_invalid_creditentials: ชื้ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง
  130. notice_account_password_updated: รหัสได้ถูกปรับปรุงแล้ว.
  131. notice_account_wrong_password: รหัสผ่านไม่ถูกต้อง
  132. notice_account_register_done: บัญชีถูกสร้างแล้ว. กรุณาเช็คเมล์ แล้วคลิ๊กที่ลิงค์ในอีเมล์เพื่อเปิดใช้บัญชี
  133. notice_account_unknown_email: ไม่มีผู้ใช้ที่ใช้อีเมล์นี้.
  134. notice_can_t_change_password: บัญชีนี้ใช้การยืนยันตัวตนจากแหล่งภายนอก. ไม่สามารถปลี่ยนรหัสผ่านได้.
  135. notice_account_lost_email_sent: เราได้ส่งอีเมล์พร้อมวิธีการสร้างรหัีสผ่านใหม่ให้คุณแล้ว กรุณาเช็คเมล์.
  136. notice_account_activated: บัญชีของคุณได้เปิดใช้แล้ว. ตอนนี้คุณสามารถเข้าสู่ระบบได้แล้ว.
  137. notice_successful_create: สร้างเสร็จแล้ว.
  138. notice_successful_update: ปรับปรุงเสร็จแล้ว.
  139. notice_successful_delete: ลบเสร็จแล้ว.
  140. notice_successful_connection: ติดต่อสำเร็จแล้ว.
  141. notice_file_not_found: หน้าที่คุณต้องการดูไม่มีอยู่จริง หรือถูกลบไปแล้ว.
  142. notice_locking_conflict: ข้อมูลถูกปรับปรุงโดยผู้ใช้คนอื่น.
  143. notice_not_authorized: คุณไม่มีสิทธิเข้าถึงหน้านี้.
  144. notice_email_sent: "อีเมล์ได้ถูกส่งถึง %{value}"
  145. notice_email_error: "เกิดความผิดพลาดขณะกำส่งอีเมล์ (%{value})"
  146. notice_feeds_access_key_reseted: RSS access key ของคุณถูก reset แล้ว.
  147. notice_failed_to_save_issues: "%{count} ปัญหาจาก %{total} ปัญหาที่ถูกเลือกไม่สามารถจัดเก็บ: %{ids}."
  148. notice_no_issue_selected: "ไม่มีปัญหาที่ถูกเลือก! กรุณาเลือกปัญหาที่คุณต้องการแก้ไข."
  149. notice_account_pending: "บัญชีของคุณสร้างเสร็จแล้ว ขณะนี้รอการอนุมัติจากผู้บริหารจัดการ."
  150. notice_default_data_loaded: ค่าเริ่มต้นโหลดเสร็จแล้ว.
  151. error_can_t_load_default_data: "ค่าเริ่มต้นโหลดไม่สำเร็จ: %{value}"
  152. error_scm_not_found: "ไม่พบรุ่นที่ต้องการในแหล่งเก็บต้นฉบับ."
  153. error_scm_command_failed: "เกิดความผิดพลาดในการเข้าถึงแหล่งเก็บต้นฉบับ: %{value}"
  154. error_scm_annotate: "entry ไม่มีอยู่จริง หรือไม่สามารถเขียนหมายเหตุประกอบ."
  155. error_issue_not_found_in_project: 'ไม่พบปัญหานี้ หรือปัญหาไม่ได้อยู่ในโครงการนี้'
  156. mail_subject_lost_password: "รหัสผ่าน %{value} ของคุณ"
  157. mail_body_lost_password: 'คลิ๊กที่ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่าน:'
  158. mail_subject_register: "เปิดบัญชี %{value} ของคุณ"
  159. mail_body_register: 'คลิ๊กที่ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่าน:'
  160. mail_body_account_information_external: "คุณสามารถใช้บัญชี %{value} เพื่อเข้าสู่ระบบ."
  161. mail_body_account_information: ข้อมูลบัญชีของคุณ
  162. mail_subject_account_activation_request: "กรุณาเปิดบัญชี %{value}"
  163. mail_body_account_activation_request: "ผู้ใช้ใหม่ (%{value}) ได้ลงทะเบียน. บัญชีของเขากำลังรออนุมัติ:"
  164. gui_validation_error: 1 ข้อผิดพลาด
  165. gui_validation_error_plural: "%{count} ข้อผิดพลาด"
  166. field_name: ชื่อ
  167. field_description: รายละเอียด
  168. field_summary: สรุปย่อ
  169. field_is_required: ต้องใส่
  170. field_firstname: ชื่อ
  171. field_lastname: นามสกุล
  172. field_mail: อีเมล์
  173. field_filename: แฟ้ม
  174. field_filesize: ขนาด
  175. field_downloads: ดาวน์โหลด
  176. field_author: ผู้แต่ง
  177. field_created_on: สร้าง
  178. field_updated_on: ปรับปรุง
  179. field_field_format: รูปแบบ
  180. field_is_for_all: สำหรับทุกโครงการ
  181. field_possible_values: ค่าที่เป็นไปได้
  182. field_regexp: Regular expression
  183. field_min_length: สั้นสุด
  184. field_max_length: ยาวสุด
  185. field_value: ค่า
  186. field_category: ประเภท
  187. field_title: ชื่อเรื่อง
  188. field_project: โครงการ
  189. field_issue: ปัญหา
  190. field_status: สถานะ
  191. field_notes: บันทึก
  192. field_is_closed: ปัญหาจบ
  193. field_is_default: ค่าเริ่มต้น
  194. field_tracker: การติดตาม
  195. field_subject: เรื่อง
  196. field_due_date: วันครบกำหนด
  197. field_assigned_to: มอบหมายให้
  198. field_priority: ความสำคัญ
  199. field_fixed_version: รุ่น
  200. field_user: ผู้ใช้
  201. field_role: บทบาท
  202. field_homepage: หน้าแรก
  203. field_is_public: สาธารณะ
  204. field_parent: โครงการย่อยของ
  205. field_is_in_roadmap: ปัญหาแสดงใน แผนงาน
  206. field_login: ชื่อที่ใช้เข้าระบบ
  207. field_mail_notification: การแจ้งเตือนทางอีเมล์
  208. field_admin: ผู้บริหารจัดการ
  209. field_last_login_on: เข้าระบบครั้งสุดท้าย
  210. field_language: ภาษา
  211. field_effective_date: วันที่
  212. field_password: รหัสผ่าน
  213. field_new_password: รหัสผ่านใหม่
  214. field_password_confirmation: ยืนยันรหัสผ่าน
  215. field_version: รุ่น
  216. field_type: ชนิด
  217. field_host: โฮสต์
  218. field_port: พอร์ต
  219. field_account: บัญชี
  220. field_base_dn: Base DN
  221. field_attr_login: เข้าระบบ attribute
  222. field_attr_firstname: ชื่อ attribute
  223. field_attr_lastname: นามสกุล attribute
  224. field_attr_mail: อีเมล์ attribute
  225. field_onthefly: สร้างผู้ใช้ทันที
  226. field_start_date: เริ่ม
  227. field_done_ratio: % สำเร็จ
  228. field_auth_source: วิธีการยืนยันตัวตน
  229. field_hide_mail: ซ่อนอีเมล์ของฉัน
  230. field_comments: ความเห็น
  231. field_url: URL
  232. field_start_page: หน้าเริ่มต้น
  233. field_subproject: โครงการย่อย
  234. field_hours: ชั่วโมง
  235. field_activity: กิจกรรม
  236. field_spent_on: วันที่
  237. field_identifier: ชื่อเฉพาะ
  238. field_is_filter: ใช้เป็นตัวกรอง
  239. field_issue_to: ปัญหาที่เกี่ยวข้อง
  240. field_delay: เลื่อน
  241. field_assignable: ปัญหาสามารถมอบหมายให้คนที่ทำบทบาทนี้
  242. field_redirect_existing_links: ย้ายจุดเชื่อมโยงนี้
  243. field_estimated_hours: เวลาที่ใช้โดยประมาณ
  244. field_column_names: สดมภ์
  245. field_time_zone: ย่านเวลา
  246. field_searchable: ค้นหาได้
  247. field_default_value: ค่าเริ่มต้น
  248. field_comments_sorting: แสดงความเห็น
  249. setting_app_title: ชื่อโปรแกรม
  250. setting_app_subtitle: ชื่อโปรแกรมรอง
  251. setting_welcome_text: ข้อความต้อนรับ
  252. setting_default_language: ภาษาเริ่มต้น
  253. setting_login_required: ต้องป้อนผู้ใช้-รหัสผ่าน
  254. setting_self_registration: ลงทะเบียนด้วยตนเอง
  255. setting_attachment_max_size: ขนาดแฟ้มแนบสูงสุด
  256. setting_issues_export_limit: การส่งออกปัญหาสูงสุด
  257. setting_mail_from: อีเมล์ที่ใช้ส่ง
  258. setting_bcc_recipients: ไม่ระบุชื่อผู้รับ (bcc)
  259. setting_host_name: ชื่อโฮสต์
  260. setting_text_formatting: การจัดรูปแบบข้อความ
  261. setting_wiki_compression: บีบอัดประวัติ Wiki
  262. setting_feeds_limit: จำนวน Feed
  263. setting_default_projects_public: โครงการใหม่มีค่าเริ่มต้นเป็น สาธารณะ
  264. setting_autofetch_changesets: ดึง commits อัตโนมัติ
  265. setting_sys_api_enabled: เปิดใช้ WS สำหรับการจัดการที่เก็บต้นฉบับ
  266. setting_commit_ref_keywords: คำสำคัญ Referencing
  267. setting_commit_fix_keywords: คำสำคัญ Fixing
  268. setting_autologin: เข้าระบบอัตโนมัติ
  269. setting_date_format: รูปแบบวันที่
  270. setting_time_format: รูปแบบเวลา
  271. setting_cross_project_issue_relations: อนุญาตให้ระบุปัญหาข้ามโครงการ
  272. setting_issue_list_default_columns: สดมภ์เริ่มต้นแสดงในรายการปัญหา
  273. setting_repositories_encodings: การเข้ารหัสที่เก็บต้นฉบับ
  274. setting_emails_footer: คำลงท้ายอีเมล์
  275. setting_protocol: Protocol
  276. setting_per_page_options: ตัวเลือกจำนวนต่อหน้า
  277. setting_user_format: รูปแบบการแสดงชื่อผู้ใช้
  278. setting_activity_days_default: จำนวนวันที่แสดงในกิจกรรมของโครงการ
  279. setting_display_subprojects_issues: แสดงปัญหาของโครงการย่อยในโครงการหลัก
  280. project_module_issue_tracking: การติดตามปัญหา
  281. project_module_time_tracking: การใช้เวลา
  282. project_module_news: ข่าว
  283. project_module_documents: เอกสาร
  284. project_module_files: แฟ้ม
  285. project_module_wiki: Wiki
  286. project_module_repository: ที่เก็บต้นฉบับ
  287. project_module_boards: กระดานข้อความ
  288. label_user: ผู้ใช้
  289. label_user_plural: ผู้ใช้
  290. label_user_new: ผู้ใช้ใหม่
  291. label_project: โครงการ
  292. label_project_new: โครงการใหม่
  293. label_project_plural: โครงการ
  294. label_x_projects:
  295. zero: no projects
  296. one: 1 project
  297. other: "%{count} projects"
  298. label_project_all: โครงการทั้งหมด
  299. label_project_latest: โครงการล่าสุด
  300. label_issue: ปัญหา
  301. label_issue_new: ปัญหาใหม่
  302. label_issue_plural: ปัญหา
  303. label_issue_view_all: ดูปัญหาทั้งหมด
  304. label_issues_by: "ปัญหาโดย %{value}"
  305. label_issue_added: ปัญหาถูกเพิ่ม
  306. label_issue_updated: ปัญหาถูกปรับปรุง
  307. label_document: เอกสาร
  308. label_document_new: เอกสารใหม่
  309. label_document_plural: เอกสาร
  310. label_document_added: เอกสารถูกเพิ่ม
  311. label_role: บทบาท
  312. label_role_plural: บทบาท
  313. label_role_new: บทบาทใหม่
  314. label_role_and_permissions: บทบาทและสิทธิ
  315. label_member: สมาชิก
  316. label_member_new: สมาชิกใหม่
  317. label_member_plural: สมาชิก
  318. label_tracker: การติดตาม
  319. label_tracker_plural: การติดตาม
  320. label_tracker_new: การติดตามใหม่
  321. label_workflow: ลำดับงาน
  322. label_issue_status: สถานะของปัญหา
  323. label_issue_status_plural: สถานะของปัญหา
  324. label_issue_status_new: สถานะใหม
  325. label_issue_category: ประเภทของปัญหา
  326. label_issue_category_plural: ประเภทของปัญหา
  327. label_issue_category_new: ประเภทใหม่
  328. label_custom_field: เขตข้อมูลแบบระบุเอง
  329. label_custom_field_plural: เขตข้อมูลแบบระบุเอง
  330. label_custom_field_new: สร้างเขตข้อมูลแบบระบุเอง
  331. label_enumerations: รายการ
  332. label_enumeration_new: สร้างใหม่
  333. label_information: ข้อมูล
  334. label_information_plural: ข้อมูล
  335. label_please_login: กรุณาเข้าระบบก่อน
  336. label_register: ลงทะเบียน
  337. label_password_lost: ลืมรหัสผ่าน
  338. label_home: หน้าแรก
  339. label_my_page: หน้าของฉัน
  340. label_my_account: บัญชีของฉัน
  341. label_my_projects: โครงการของฉัน
  342. label_administration: บริหารจัดการ
  343. label_login: เข้าระบบ
  344. label_logout: ออกระบบ
  345. label_help: ช่วยเหลือ
  346. label_reported_issues: ปัญหาที่แจ้งไว้
  347. label_assigned_to_me_issues: ปัญหาที่มอบหมายให้ฉัน
  348. label_last_login: ติดต่อครั้งสุดท้าย
  349. label_registered_on: ลงทะเบียนเมื่อ
  350. label_activity: กิจกรรม
  351. label_activity_plural: กิจกรรม
  352. label_activity_latest: กิจกรรมล่าสุด
  353. label_overall_activity: กิจกรรมโดยรวม
  354. label_new: ใหม่
  355. label_logged_as: เข้าระบบในชื่อ
  356. label_environment: สภาพแวดล้อม
  357. label_authentication: การยืนยันตัวตน
  358. label_auth_source: วิธีการการยืนยันตัวตน
  359. label_auth_source_new: สร้างวิธีการยืนยันตัวตนใหม่
  360. label_auth_source_plural: วิธีการ Authentication
  361. label_subproject_plural: โครงการย่อย
  362. label_min_max_length: สั้น-ยาว สุดที่
  363. label_list: รายการ
  364. label_date: วันที่
  365. label_integer: จำนวนเต็ม
  366. label_float: จำนวนจริง
  367. label_boolean: ถูกผิด
  368. label_string: ข้อความ
  369. label_text: ข้อความขนาดยาว
  370. label_attribute: คุณลักษณะ
  371. label_attribute_plural: คุณลักษณะ
  372. label_download: "%{count} ดาวน์โหลด"
  373. label_download_plural: "%{count} ดาวน์โหลด"
  374. label_no_data: จำนวนข้อมูลที่แสดง
  375. label_change_status: เปลี่ยนสถานะ
  376. label_history: ประวัติ
  377. label_attachment: แฟ้ม
  378. label_attachment_new: แฟ้มใหม่
  379. label_attachment_delete: ลบแฟ้ม
  380. label_attachment_plural: แฟ้ม
  381. label_file_added: แฟ้มถูกเพิ่ม
  382. label_report: รายงาน
  383. label_report_plural: รายงาน
  384. label_news: ข่าว
  385. label_news_new: เพิ่มข่าว
  386. label_news_plural: ข่าว
  387. label_news_latest: ข่าวล่าสุด
  388. label_news_view_all: ดูข่าวทั้งหมด
  389. label_news_added: ข่าวถูกเพิ่ม
  390. label_settings: ปรับแต่ง
  391. label_overview: ภาพรวม
  392. label_version: รุ่น
  393. label_version_new: รุ่นใหม่
  394. label_version_plural: รุ่น
  395. label_confirmation: ยืนยัน
  396. label_export_to: 'รูปแบบอื่นๆ :'
  397. label_read: อ่าน...
  398. label_public_projects: โครงการสาธารณะ
  399. label_open_issues: เปิด
  400. label_open_issues_plural: เปิด
  401. label_closed_issues: ปิด
  402. label_closed_issues_plural: ปิด
  403. label_x_open_issues_abbr_on_total:
  404. zero: 0 open / %{total}
  405. one: 1 open / %{total}
  406. other: "%{count} open / %{total}"
  407. label_x_open_issues_abbr:
  408. zero: 0 open
  409. one: 1 open
  410. other: "%{count} open"
  411. label_x_closed_issues_abbr:
  412. zero: 0 closed
  413. one: 1 closed
  414. other: "%{count} closed"
  415. label_total: จำนวนรวม
  416. label_permissions: สิทธิ
  417. label_current_status: สถานะปัจจุบัน
  418. label_new_statuses_allowed: อนุญาตให้มีสถานะใหม่
  419. label_all: ทั้งหมด
  420. label_none: ไม่มี
  421. label_nobody: ไม่มีใคร
  422. label_next: ต่อไป
  423. label_previous: ก่อนหน้า
  424. label_used_by: ถูกใช้โดย
  425. label_details: รายละเอียด
  426. label_add_note: เพิ่มบันทึก
  427. label_per_page: ต่อหน้า
  428. label_calendar: ปฏิทิน
  429. label_months_from: เดือนจาก
  430. label_gantt: Gantt
  431. label_internal: ภายใน
  432. label_last_changes: "last %{count} เปลี่ยนแปลง"
  433. label_change_view_all: ดูการเปลี่ยนแปลงทั้งหมด
  434. label_personalize_page: ปรับแต่งหน้านี้
  435. label_comment: ความเห็น
  436. label_comment_plural: ความเห็น
  437. label_x_comments:
  438. zero: no comments
  439. one: 1 comment
  440. other: "%{count} comments"
  441. label_comment_add: เพิ่มความเห็น
  442. label_comment_added: ความเห็นถูกเพิ่ม
  443. label_comment_delete: ลบความเห็น
  444. label_query: แบบสอบถามแบบกำหนดเอง
  445. label_query_plural: แบบสอบถามแบบกำหนดเอง
  446. label_query_new: แบบสอบถามใหม่
  447. label_filter_add: เพิ่มตัวกรอง
  448. label_filter_plural: ตัวกรอง
  449. label_equals: คือ
  450. label_not_equals: ไม่ใช่
  451. label_in_less_than: น้อยกว่า
  452. label_in_more_than: มากกว่า
  453. label_in: ในช่วง
  454. label_today: วันนี้
  455. label_all_time: ตลอดเวลา
  456. label_yesterday: เมื่อวาน
  457. label_this_week: อาทิตย์นี้
  458. label_last_week: อาทิตย์ที่แล้ว
  459. label_last_n_days: "%{count} วันย้อนหลัง"
  460. label_this_month: เดือนนี้
  461. label_last_month: เดือนที่แล้ว
  462. label_this_year: ปีนี้
  463. label_date_range: ช่วงวันที่
  464. label_less_than_ago: น้อยกว่าหนึ่งวัน
  465. label_more_than_ago: มากกว่าหนึ่งวัน
  466. label_ago: วันผ่านมาแล้ว
  467. label_contains: มี...
  468. label_not_contains: ไม่มี...
  469. label_day_plural: วัน
  470. label_repository: ที่เก็บต้นฉบับ
  471. label_repository_plural: ที่เก็บต้นฉบับ
  472. label_browse: เปิดหา
  473. label_modification: "%{count} เปลี่ยนแปลง"
  474. label_modification_plural: "%{count} เปลี่ยนแปลง"
  475. label_revision: การแก้ไข
  476. label_revision_plural: การแก้ไข
  477. label_associated_revisions: การแก้ไขที่เกี่ยวข้อง
  478. label_added: ถูกเพิ่ม
  479. label_modified: ถูกแก้ไข
  480. label_deleted: ถูกลบ
  481. label_latest_revision: รุ่นการแก้ไขล่าสุด
  482. label_latest_revision_plural: รุ่นการแก้ไขล่าสุด
  483. label_view_revisions: ดูการแก้ไข
  484. label_max_size: ขนาดใหญ่สุด
  485. label_sort_highest: ย้ายไปบนสุด
  486. label_sort_higher: ย้ายขึ้น
  487. label_sort_lower: ย้ายลง
  488. label_sort_lowest: ย้ายไปล่างสุด
  489. label_roadmap: แผนงาน
  490. label_roadmap_due_in: "ถึงกำหนดใน %{value}"
  491. label_roadmap_overdue: "%{value} ช้ากว่ากำหนด"
  492. label_roadmap_no_issues: ไม่มีปัญหาสำหรับรุ่นนี้
  493. label_search: ค้นหา
  494. label_result_plural: ผลการค้นหา
  495. label_all_words: ทุกคำ
  496. label_wiki: Wiki
  497. label_wiki_edit: แก้ไข Wiki
  498. label_wiki_edit_plural: แก้ไข Wiki
  499. label_wiki_page: หน้า Wiki
  500. label_wiki_page_plural: หน้า Wiki
  501. label_index_by_title: เรียงตามชื่อเรื่อง
  502. label_index_by_date: เรียงตามวัน
  503. label_current_version: รุ่นปัจจุบัน
  504. label_preview: ตัวอย่างก่อนจัดเก็บ
  505. label_feed_plural: Feeds
  506. label_changes_details: รายละเอียดการเปลี่ยนแปลงทั้งหมด
  507. label_issue_tracking: ติดตามปัญหา
  508. label_spent_time: เวลาที่ใช้
  509. label_f_hour: "%{value} ชั่วโมง"
  510. label_f_hour_plural: "%{value} ชั่วโมง"
  511. label_time_tracking: ติดตามการใช้เวลา
  512. label_change_plural: เปลี่ยนแปลง
  513. label_statistics: สถิติ
  514. label_commits_per_month: Commits ต่อเดือน
  515. label_commits_per_author: Commits ต่อผู้แต่ง
  516. label_view_diff: ดูความแตกต่าง
  517. label_diff_inline: inline
  518. label_diff_side_by_side: side by side
  519. label_options: ตัวเลือก
  520. label_copy_workflow_from: คัดลอกลำดับงานจาก
  521. label_permissions_report: รายงานสิทธิ
  522. label_watched_issues: เฝ้าดูปัญหา
  523. label_related_issues: ปัญหาที่เกี่ยวข้อง
  524. label_applied_status: จัดเก็บสถานะ
  525. label_loading: กำลังโหลด...
  526. label_relation_new: ความสัมพันธ์ใหม่
  527. label_relation_delete: ลบความสัมพันธ์
  528. label_relates_to: สัมพันธ์กับ
  529. label_duplicates: ซ้ำ
  530. label_blocks: กีดกัน
  531. label_blocked_by: กีดกันโดย
  532. label_precedes: นำหน้า
  533. label_follows: ตามหลัง
  534. label_end_to_start: จบ-เริ่ม
  535. label_end_to_end: จบ-จบ
  536. label_start_to_start: เริ่ม-เริ่ม
  537. label_start_to_end: เริ่ม-จบ
  538. label_stay_logged_in: อยู่ในระบบต่อ
  539. label_disabled: ไม่ใช้งาน
  540. label_show_completed_versions: แสดงรุ่นที่สมบูรณ์
  541. label_me: ฉัน
  542. label_board: สภากาแฟ
  543. label_board_new: สร้างสภากาแฟ
  544. label_board_plural: สภากาแฟ
  545. label_topic_plural: หัวข้อ
  546. label_message_plural: ข้อความ
  547. label_message_last: ข้อความล่าสุด
  548. label_message_new: เขียนข้อความใหม่
  549. label_message_posted: ข้อความถูกเพิ่มแล้ว
  550. label_reply_plural: ตอบกลับ
  551. label_send_information: ส่งรายละเอียดของบัญชีให้ผู้ใช้
  552. label_year: ปี
  553. label_month: เดือน
  554. label_week: สัปดาห์
  555. label_date_from: จาก
  556. label_date_to: ถึง
  557. label_language_based: ขึ้นอยู่กับภาษาของผู้ใช้
  558. label_sort_by: "เรียงโดย %{value}"
  559. label_send_test_email: ส่งจดหมายทดสอบ
  560. label_feeds_access_key_created_on: "RSS access key สร้างเมื่อ %{value} ที่ผ่านมา"
  561. label_module_plural: ส่วนประกอบ
  562. label_added_time_by: "เพิ่มโดย %{author} %{age} ที่ผ่านมา"
  563. label_updated_time: "ปรับปรุง %{value} ที่ผ่านมา"
  564. label_jump_to_a_project: ไปที่โครงการ...
  565. label_file_plural: แฟ้ม
  566. label_changeset_plural: กลุ่มการเปลี่ยนแปลง
  567. label_default_columns: สดมภ์เริ่มต้น
  568. label_no_change_option: (ไม่เปลี่ยนแปลง)
  569. label_bulk_edit_selected_issues: แก้ไขปัญหาที่เลือกทั้งหมด
  570. label_theme: ชุดรูปแบบ
  571. label_default: ค่าเริ่มต้น
  572. label_search_titles_only: ค้นหาจากชื่อเรื่องเท่านั้น
  573. label_user_mail_option_all: "ทุกๆ เหตุการณ์ในโครงการของฉัน"
  574. label_user_mail_option_selected: "ทุกๆ เหตุการณ์ในโครงการที่เลือก..."
  575. label_user_mail_no_self_notified: "ฉันไม่ต้องการได้รับการแจ้งเตือนในสิ่งที่ฉันทำเอง"
  576. label_registration_activation_by_email: เปิดบัญชีผ่านอีเมล์
  577. label_registration_manual_activation: อนุมัติโดยผู้บริหารจัดการ
  578. label_registration_automatic_activation: เปิดบัญชีอัตโนมัติ
  579. label_display_per_page: "ต่อหน้า: %{value}"
  580. label_age: อายุ
  581. label_change_properties: เปลี่ยนคุณสมบัติ
  582. label_general: ทั่วๆ ไป
  583. label_more: อื่น ๆ
  584. label_scm: ตัวจัดการต้นฉบับ
  585. label_plugins: ส่วนเสริม
  586. label_ldap_authentication: การยืนยันตัวตนโดยใช้ LDAP
  587. label_downloads_abbr: D/L
  588. label_optional_description: รายละเอียดเพิ่มเติม
  589. label_add_another_file: เพิ่มแฟ้มอื่นๆ
  590. label_preferences: ค่าที่ชอบใจ
  591. label_chronological_order: เรียงจากเก่าไปใหม่
  592. label_reverse_chronological_order: เรียงจากใหม่ไปเก่า
  593. label_planning: การวางแผน
  594. button_login: เข้าระบบ
  595. button_submit: จัดส่งข้อมูล
  596. button_save: จัดเก็บ
  597. button_check_all: เลือกทั้งหมด
  598. button_uncheck_all: ไม่เลือกทั้งหมด
  599. button_delete: ลบ
  600. button_create: สร้าง
  601. button_test: ทดสอบ
  602. button_edit: แก้ไข
  603. button_add: เพิ่ม
  604. button_change: เปลี่ยนแปลง
  605. button_apply: ประยุกต์ใช้
  606. button_clear: ล้างข้อความ
  607. button_lock: ล็อค
  608. button_unlock: ยกเลิกการล็อค
  609. button_download: ดาวน์โหลด
  610. button_list: รายการ
  611. button_view: มุมมอง
  612. button_move: ย้าย
  613. button_back: กลับ
  614. button_cancel: ยกเลิก
  615. button_activate: เปิดใช้
  616. button_sort: จัดเรียง
  617. button_log_time: บันทึกเวลา
  618. button_rollback: ถอยกลับมาที่รุ่นนี้
  619. button_watch: เฝ้าดู
  620. button_unwatch: เลิกเฝ้าดู
  621. button_reply: ตอบกลับ
  622. button_archive: เก็บเข้าโกดัง
  623. button_unarchive: เอาออกจากโกดัง
  624. button_reset: เริ่มใหมท
  625. button_rename: เปลี่ยนชื่อ
  626. button_change_password: เปลี่ยนรหัสผ่าน
  627. button_copy: คัดลอก
  628. button_annotate: หมายเหตุประกอบ
  629. button_update: ปรับปรุง
  630. button_configure: ปรับแต่ง
  631. status_active: เปิดใช้งานแล้ว
  632. status_registered: รอการอนุมัติ
  633. status_locked: ล็อค
  634. text_select_mail_notifications: เลือกการกระทำที่ต้องการให้ส่งอีเมล์แจ้ง.
  635. text_regexp_info: ตัวอย่าง ^[A-Z0-9]+$
  636. text_min_max_length_info: 0 หมายถึงไม่จำกัด
  637. text_project_destroy_confirmation: คุณแน่ใจไหมว่าต้องการลบโครงการและข้อมูลที่เกี่ยวข้่อง ?
  638. text_subprojects_destroy_warning: "โครงการย่อย: %{value} จะถูกลบด้วย."
  639. text_workflow_edit: เลือกบทบาทและการติดตาม เพื่อแก้ไขลำดับงาน
  640. text_are_you_sure: คุณแน่ใจไหม ?
  641. text_tip_issue_begin_day: งานที่เริ่มวันนี้
  642. text_tip_issue_end_day: งานที่จบวันนี้
  643. text_tip_issue_begin_end_day: งานที่เริ่มและจบวันนี้
  644. text_project_identifier_info: 'ภาษาอังกฤษตัวเล็ก(a-z), ตัวเลข(0-9) และขีด (-) เท่านั้น.<br />เมื่อจัดเก็บแล้ว, ชื่อเฉพาะไม่สามารถเปลี่ยนแปลงได้'
  645. text_caracters_maximum: "สูงสุด %{count} ตัวอักษร."
  646. text_caracters_minimum: "ต้องยาวอย่างน้อย %{count} ตัวอักษร."
  647. text_length_between: "ความยาวระหว่าง %{min} ถึง %{max} ตัวอักษร."
  648. text_tracker_no_workflow: ไม่ได้บัญญัติลำดับงานสำหรับการติดตามนี้
  649. text_unallowed_characters: ตัวอักษรต้องห้าม
  650. text_comma_separated: ใส่ได้หลายค่า โดยคั่นด้วยลูกน้ำ( ,).
  651. text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages
  652. text_issue_added: "ปัญหา %{id} ถูกแจ้งโดย %{author}."
  653. text_issue_updated: "ปัญหา %{id} ถูกปรับปรุงโดย %{author}."
  654. text_wiki_destroy_confirmation: คุณแน่ใจหรือว่าต้องการลบ wiki นี้พร้อมทั้งเนี้อหา?
  655. text_issue_category_destroy_question: "บางปัญหา (%{count}) อยู่ในประเภทนี้. คุณต้องการทำอย่างไร ?"
  656. text_issue_category_destroy_assignments: ลบประเภทนี้
  657. text_issue_category_reassign_to: ระบุปัญหาในประเภทนี้
  658. text_user_mail_option: "ในโครงการที่ไม่ได้เลือก, คุณจะได้รับการแจ้งเกี่ยวกับสิ่งที่คุณเฝ้าดูหรือมีส่วนเกี่ยวข้อง (เช่นปัญหาที่คุณแจ้งไว้หรือได้รับมอบหมาย)."
  659. text_no_configuration_data: "บทบาท, การติดตาม, สถานะปัญหา และลำดับงานยังไม่ได้ถูกตั้งค่า.\nขอแนะนำให้โหลดค่าเริ่มต้น. คุณสามารถแก้ไขค่าได้หลังจากโหลดแล้ว."
  660. text_load_default_configuration: โหลดค่าเริ่มต้น
  661. text_status_changed_by_changeset: "ประยุกต์ใช้ในกลุ่มการเปลี่ยนแปลง %{value}."
  662. text_issues_destroy_confirmation: 'คุณแน่ใจไหมว่าต้องการลบปัญหา(ทั้งหลาย)ที่เลือกไว้?'
  663. text_select_project_modules: 'เลือกส่วนประกอบที่ต้องการใช้งานสำหรับโครงการนี้:'
  664. text_default_administrator_account_changed: ค่าเริ่มต้นของบัญชีผู้บริหารจัดการถูกเปลี่ยนแปลง
  665. text_file_repository_writable: ที่เก็บต้นฉบับสามารถเขียนได้
  666. text_rmagick_available: RMagick มีให้ใช้ (เป็นตัวเลือก)
  667. text_destroy_time_entries_question: "%{hours} ชั่วโมงที่ถูกแจ้งในปัญหานี้จะโดนลบ. คุณต้องการทำอย่างไร?"
  668. text_destroy_time_entries: ลบเวลาที่รายงานไว้
  669. text_assign_time_entries_to_project: ระบุเวลาที่ใช้ในโครงการนี้
  670. text_reassign_time_entries: 'ระบุเวลาที่ใช้ในโครงการนี่อีกครั้ง:'
  671. default_role_manager: ผู้จัดการ
  672. default_role_developer: ผู้พัฒนา
  673. default_role_reporter: ผู้รายงาน
  674. default_tracker_bug: บั๊ก
  675. default_tracker_feature: ลักษณะเด่น
  676. default_tracker_support: สนับสนุน
  677. default_issue_status_new: เกิดขึ้น
  678. default_issue_status_in_progress: In Progress
  679. default_issue_status_resolved: ดำเนินการ
  680. default_issue_status_feedback: รอคำตอบ
  681. default_issue_status_closed: จบ
  682. default_issue_status_rejected: ยกเลิก
  683. default_doc_category_user: เอกสารของผู้ใช้
  684. default_doc_category_tech: เอกสารทางเทคนิค
  685. default_priority_low: ต่ำ
  686. default_priority_normal: ปกติ
  687. default_priority_high: สูง
  688. default_priority_urgent: เร่งด่วน
  689. default_priority_immediate: ด่วนมาก
  690. default_activity_design: ออกแบบ
  691. default_activity_development: พัฒนา
  692. enumeration_issue_priorities: ความสำคัญของปัญหา
  693. enumeration_doc_categories: ประเภทเอกสาร
  694. enumeration_activities: กิจกรรม (ใช้ในการติดตามเวลา)
  695. label_and_its_subprojects: "%{value} and its subprojects"
  696. mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:"
  697. mail_subject_reminder: "%{count} issue(s) due in the next %{days} days"
  698. text_user_wrote: "%{value} wrote:"
  699. label_duplicated_by: duplicated by
  700. setting_enabled_scm: Enabled SCM
  701. text_enumeration_category_reassign_to: 'Reassign them to this value:'
  702. text_enumeration_destroy_question: "%{count} objects are assigned to this value."
  703. label_incoming_emails: Incoming emails
  704. label_generate_key: Generate a key
  705. setting_mail_handler_api_enabled: Enable WS for incoming emails
  706. setting_mail_handler_api_key: API key
  707. text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/configuration.yml and restart the application to enable them."
  708. field_parent_title: Parent page
  709. label_issue_watchers: Watchers
  710. setting_commit_logs_encoding: Commit messages encoding
  711. button_quote: Quote
  712. setting_sequential_project_identifiers: Generate sequential project identifiers
  713. notice_unable_delete_version: Unable to delete version
  714. label_renamed: renamed
  715. label_copied: copied
  716. setting_plain_text_mail: plain text only (no HTML)
  717. permission_view_files: View files
  718. permission_edit_issues: Edit issues
  719. permission_edit_own_time_entries: Edit own time logs
  720. permission_manage_public_queries: Manage public queries
  721. permission_add_issues: Add issues
  722. permission_log_time: Log spent time
  723. permission_view_changesets: View changesets
  724. permission_view_time_entries: View spent time
  725. permission_manage_versions: Manage versions
  726. permission_manage_wiki: Manage wiki
  727. permission_manage_categories: Manage issue categories
  728. permission_protect_wiki_pages: Protect wiki pages
  729. permission_comment_news: Comment news
  730. permission_delete_messages: Delete messages
  731. permission_select_project_modules: Select project modules
  732. permission_manage_documents: Manage documents
  733. permission_edit_wiki_pages: Edit wiki pages
  734. permission_add_issue_watchers: Add watchers
  735. permission_view_gantt: View gantt chart
  736. permission_move_issues: Move issues
  737. permission_manage_issue_relations: Manage issue relations
  738. permission_delete_wiki_pages: Delete wiki pages
  739. permission_manage_boards: Manage boards
  740. permission_delete_wiki_pages_attachments: Delete attachments
  741. permission_view_wiki_edits: View wiki history
  742. permission_add_messages: Post messages
  743. permission_view_messages: View messages
  744. permission_manage_files: Manage files
  745. permission_edit_issue_notes: Edit notes
  746. permission_manage_news: Manage news
  747. permission_view_calendar: View calendrier
  748. permission_manage_members: Manage members
  749. permission_edit_messages: Edit messages
  750. permission_delete_issues: Delete issues
  751. permission_view_issue_watchers: View watchers list
  752. permission_manage_repository: Manage repository
  753. permission_commit_access: Commit access
  754. permission_browse_repository: Browse repository
  755. permission_view_documents: View documents
  756. permission_edit_project: Edit project
  757. permission_add_issue_notes: Add notes
  758. permission_save_queries: Save queries
  759. permission_view_wiki_pages: View wiki
  760. permission_rename_wiki_pages: Rename wiki pages
  761. permission_edit_time_entries: Edit time logs
  762. permission_edit_own_issue_notes: Edit own notes
  763. setting_gravatar_enabled: Use Gravatar user icons
  764. label_example: Example
  765. text_repository_usernames_mapping: "Select ou update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped."
  766. permission_edit_own_messages: Edit own messages
  767. permission_delete_own_messages: Delete own messages
  768. label_user_activity: "%{value}'s activity"
  769. label_updated_time_by: "Updated by %{author} %{age} ago"
  770. text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.'
  771. setting_diff_max_lines_displayed: Max number of diff lines displayed
  772. text_plugin_assets_writable: Plugin assets directory writable
  773. warning_attachments_not_saved: "%{count} file(s) could not be saved."
  774. button_create_and_continue: Create and continue
  775. text_custom_field_possible_values_info: 'One line for each value'
  776. label_display: Display
  777. field_editable: Editable
  778. setting_repository_log_display_limit: Maximum number of revisions displayed on file log
  779. setting_file_max_size_displayed: Max size of text files displayed inline
  780. field_watcher: Watcher
  781. setting_openid: Allow OpenID login and registration
  782. field_identity_url: OpenID URL
  783. label_login_with_open_id_option: or login with OpenID
  784. field_content: Content
  785. label_descending: Descending
  786. label_sort: Sort
  787. label_ascending: Ascending
  788. label_date_from_to: From %{start} to %{end}
  789. label_greater_or_equal: ">="
  790. label_less_or_equal: <=
  791. text_wiki_page_destroy_question: This page has %{descendants} child page(s) and descendant(s). What do you want to do?
  792. text_wiki_page_reassign_children: Reassign child pages to this parent page
  793. text_wiki_page_nullify_children: Keep child pages as root pages
  794. text_wiki_page_destroy_children: Delete child pages and all their descendants
  795. setting_password_min_length: Minimum password length
  796. field_group_by: Group results by
  797. mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated"
  798. label_wiki_content_added: Wiki page added
  799. mail_subject_wiki_content_added: "'%{id}' wiki page has been added"
  800. mail_body_wiki_content_added: The '%{id}' wiki page has been added by %{author}.
  801. label_wiki_content_updated: Wiki page updated
  802. mail_body_wiki_content_updated: The '%{id}' wiki page has been updated by %{author}.
  803. permission_add_project: Create project
  804. setting_new_project_user_role_id: Role given to a non-admin user who creates a project
  805. label_view_all_revisions: View all revisions
  806. label_tag: Tag
  807. label_branch: Branch
  808. error_no_tracker_in_project: No tracker is associated to this project. Please check the Project settings.
  809. error_no_default_issue_status: No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").
  810. text_journal_changed: "%{label} changed from %{old} to %{new}"
  811. text_journal_set_to: "%{label} set to %{value}"
  812. text_journal_deleted: "%{label} deleted (%{old})"
  813. label_group_plural: Groups
  814. label_group: Group
  815. label_group_new: New group
  816. label_time_entry_plural: Spent time
  817. text_journal_added: "%{label} %{value} added"
  818. field_active: Active
  819. enumeration_system_activity: System Activity
  820. permission_delete_issue_watchers: Delete watchers
  821. version_status_closed: closed
  822. version_status_locked: locked
  823. version_status_open: open
  824. error_can_not_reopen_issue_on_closed_version: An issue assigned to a closed version can not be reopened
  825. label_user_anonymous: Anonymous
  826. button_move_and_follow: Move and follow
  827. setting_default_projects_modules: Default enabled modules for new projects
  828. setting_gravatar_default: Default Gravatar image
  829. field_sharing: Sharing
  830. label_version_sharing_hierarchy: With project hierarchy
  831. label_version_sharing_system: With all projects
  832. label_version_sharing_descendants: With subprojects
  833. label_version_sharing_tree: With project tree
  834. label_version_sharing_none: Not shared
  835. error_can_not_archive_project: This project can not be archived
  836. button_duplicate: Duplicate
  837. button_copy_and_follow: Copy and follow
  838. label_copy_source: Source
  839. setting_issue_done_ratio: Calculate the issue done ratio with
  840. setting_issue_done_ratio_issue_status: Use the issue status
  841. error_issue_done_ratios_not_updated: Issue done ratios not updated.
  842. error_workflow_copy_target: Please select target tracker(s) and role(s)
  843. setting_issue_done_ratio_issue_field: Use the issue field
  844. label_copy_same_as_target: Same as target
  845. label_copy_target: Target
  846. notice_issue_done_ratios_updated: Issue done ratios updated.
  847. error_workflow_copy_source: Please select a source tracker or role
  848. label_update_issue_done_ratios: Update issue done ratios
  849. setting_start_of_week: Start calendars on
  850. permission_view_issues: View Issues
  851. label_display_used_statuses_only: Only display statuses that are used by this tracker
  852. label_revision_id: Revision %{value}
  853. label_api_access_key: API access key
  854. label_api_access_key_created_on: API access key created %{value} ago
  855. label_feeds_access_key: RSS access key
  856. notice_api_access_key_reseted: Your API access key was reset.
  857. setting_rest_api_enabled: Enable REST web service
  858. label_missing_api_access_key: Missing an API access key
  859. label_missing_feeds_access_key: Missing a RSS access key
  860. button_show: Show
  861. text_line_separated: Multiple values allowed (one line for each value).
  862. setting_mail_handler_body_delimiters: Truncate emails after one of these lines
  863. permission_add_subprojects: Create subprojects
  864. label_subproject_new: New subproject
  865. text_own_membership_delete_confirmation: |-
  866. You are about to remove some or all of your permissions and may no longer be able to edit this project after that.
  867. Are you sure you want to continue?
  868. label_close_versions: Close completed versions
  869. label_board_sticky: Sticky
  870. label_board_locked: Locked
  871. permission_export_wiki_pages: Export wiki pages
  872. setting_cache_formatted_text: Cache formatted text
  873. permission_manage_project_activities: Manage project activities
  874. error_unable_delete_issue_status: Unable to delete issue status
  875. label_profile: Profile
  876. permission_manage_subtasks: Manage subtasks
  877. field_parent_issue: Parent task
  878. label_subtask_plural: Subtasks
  879. label_project_copy_notifications: Send email notifications during the project copy
  880. error_can_not_delete_custom_field: Unable to delete custom field
  881. error_unable_to_connect: Unable to connect (%{value})
  882. error_can_not_remove_role: This role is in use and can not be deleted.
  883. error_can_not_delete_tracker: This tracker contains issues and can't be deleted.
  884. field_principal: Principal
  885. label_my_page_block: My page block
  886. notice_failed_to_save_members: "Failed to save member(s): %{errors}."
  887. text_zoom_out: Zoom out
  888. text_zoom_in: Zoom in
  889. notice_unable_delete_time_entry: Unable to delete time log entry.
  890. label_overall_spent_time: Overall spent time
  891. field_time_entries: Log time
  892. project_module_gantt: Gantt
  893. project_module_calendar: Calendar
  894. button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}"
  895. text_are_you_sure_with_children: Delete issue and all child issues?
  896. field_text: Text field
  897. label_user_mail_option_only_owner: Only for things I am the owner of
  898. setting_default_notification_option: Default notification option
  899. label_user_mail_option_only_my_events: Only for things I watch or I'm involved in
  900. label_user_mail_option_only_assigned: Only for things I am assigned to
  901. label_user_mail_option_none: No events
  902. field_member_of_group: Assignee's group
  903. field_assigned_to_role: Assignee's role
  904. notice_not_authorized_archived_project: The project you're trying to access has been archived.
  905. label_principal_search: "Search for user or group:"
  906. label_user_search: "Search for user:"
  907. field_visible: Visible
  908. setting_emails_header: Emails header
  909. setting_commit_logtime_activity_id: Activity for logged time
  910. text_time_logged_by_changeset: Applied in changeset %{value}.
  911. setting_commit_logtime_enabled: Enable time logging
  912. notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max})
  913. setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
  914. field_warn_on_leaving_unsaved: Warn me when leaving a page with unsaved text
  915. text_warn_on_leaving_unsaved: The current page contains unsaved text that will be lost if you leave this page.
  916. label_my_queries: My custom queries
  917. text_journal_changed_no_detail: "%{label} updated"