th.po 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Wichanon Jamwutthipreecha, 2022
  7. # Martin Trigaux, 2022
  8. # Rasareeyar Lappiam, 2023
  9. #
  10. msgid ""
  11. msgstr ""
  12. "Project-Id-Version: Odoo Server saas~14.4\n"
  13. "Report-Msgid-Bugs-To: \n"
  14. "POT-Creation-Date: 2021-07-12 07:50+0000\n"
  15. "PO-Revision-Date: 2022-09-22 05:44+0000\n"
  16. "Last-Translator: Rasareeyar Lappiam, 2023\n"
  17. "Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
  18. "MIME-Version: 1.0\n"
  19. "Content-Type: text/plain; charset=UTF-8\n"
  20. "Content-Transfer-Encoding: \n"
  21. "Language: th\n"
  22. "Plural-Forms: nplurals=1; plural=0;\n"
  23. #. module: account_tax_python
  24. #: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
  25. msgid ""
  26. "\n"
  27. " - Group of Taxes: The tax is a set of sub taxes.\n"
  28. " - Fixed: The tax amount stays the same whatever the price.\n"
  29. " - Percentage of Price: The tax amount is a % of the price:\n"
  30. " e.g 100 * (1 + 10%) = 110 (not price included)\n"
  31. " e.g 110 / (1 + 10%) = 100 (price included)\n"
  32. " - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
  33. " e.g 180 / (1 - 10%) = 200 (not price included)\n"
  34. " e.g 200 * (1 - 10%) = 180 (price included)\n"
  35. " "
  36. msgstr ""
  37. "\n"
  38. " - กลุ่มภาษี: ภาษีคือชุดของภาษีย่อย\n"
  39. " - คงที่: จำนวนภาษียังคงเท่าเดิมไม่ว่าจะมีราคาเท่าใดก็ตาม\n"
  40. " - เปอร์เซ็นต์ของราคา: จำนวนภาษีคือ % ของราคา:\n"
  41. " เช่น 100 * (1 + 10%) = 110 (ไม่รวมราคา)\n"
  42. " เช่น 110 / (1 + 10%) = 100 (ราคารวม)\n"
  43. " - เปอร์เซ็นต์ของภาษีราคารวม: จำนวนภาษีเป็นส่วนหนึ่งของราคา:\n"
  44. " เช่น 180 / (1 - 10%) = 200 (ไม่รวมราคา)\n"
  45. " เช่น 200 * (1 - 10%) = 180 (รวมราคา)\n"
  46. " "
  47. #. module: account_tax_python
  48. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  49. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  50. msgid "Applicable Code"
  51. msgstr "Applicable Code"
  52. #. module: account_tax_python
  53. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  54. msgid ""
  55. "Compute the amount of the tax by setting the variable 'result'.\n"
  56. "\n"
  57. ":param base_amount: float, actual amount on which the tax is applied\n"
  58. ":param price_unit: float\n"
  59. ":param quantity: float\n"
  60. ":param company: res.company recordset singleton\n"
  61. ":param product: product.product recordset singleton or None\n"
  62. ":param partner: res.partner recordset singleton or None"
  63. msgstr ""
  64. "คำนวณจำนวนภาษีโดยการตั้งค่าตัวแปร 'ผลลัพธ์'\n"
  65. "\n"
  66. ":param base_amount: ลอยตัว จำนวนเงินจริงที่ใช้ภาษี\n"
  67. ":param price_unit: ลอยตัว\n"
  68. ":param quantity: ลอยตัว\n"
  69. ":param company: res.company ชุดระเบียนซิงเกิลตัน\n"
  70. ":param product: product.product ชุดระเบียนซิงเกิลตัน หรือ ไม่มี\n"
  71. ":param Partner: res.partner ชุดระเบียนซิงเกิลตัน หรือ ไม่มี"
  72. #. module: account_tax_python
  73. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  74. msgid ""
  75. "Compute the amount of the tax by setting the variable 'result'.\n"
  76. "\n"
  77. ":param base_amount: float, actual amount on which the tax is applied\n"
  78. ":param price_unit: float\n"
  79. ":param quantity: float\n"
  80. ":param product: product.product recordset singleton or None\n"
  81. ":param partner: res.partner recordset singleton or None"
  82. msgstr ""
  83. #. module: account_tax_python
  84. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  85. msgid ""
  86. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  87. "\n"
  88. ":param price_unit: float\n"
  89. ":param quantity: float\n"
  90. ":param company: res.company recordset singleton\n"
  91. ":param product: product.product recordset singleton or None\n"
  92. ":param partner: res.partner recordset singleton or None"
  93. msgstr ""
  94. "ตรวจสอบว่าภาษีจะถูกนำไปใช้โดยการตั้งค่าตัวแปร 'ผลลัพธ์' เป็น True หรือ False\n"
  95. "\n"
  96. ":param price_unit: ลอยตัว\n"
  97. ":param quantity: ลอยตัว\n"
  98. ":param company: res.company ชุดระเบียนซิงเกิลตัน\n"
  99. ":param product: product.product ชุดระเบียนซิงเกิลตัน หรือ ไม่มี\n"
  100. ":param Partner: res.partner ชุดระเบียนซิงเกิลตัน หรือ ไม่มี"
  101. #. module: account_tax_python
  102. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
  103. msgid ""
  104. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  105. "\n"
  106. ":param price_unit: float\n"
  107. ":param quantity: float\n"
  108. ":param product: product.product recordset singleton or None\n"
  109. ":param partner: res.partner recordset singleton or None"
  110. msgstr ""
  111. #. module: account_tax_python
  112. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  113. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  114. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  115. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  116. msgid "Python Code"
  117. msgstr "โค้ด Python"
  118. #. module: account_tax_python
  119. #: model:ir.model,name:account_tax_python.model_account_tax
  120. msgid "Tax"
  121. msgstr "ภาษี"
  122. #. module: account_tax_python
  123. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  124. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  125. msgid "Tax Computation"
  126. msgstr "การคำนวนวันครบกำหนด"
  127. #. module: account_tax_python
  128. #: model:ir.model,name:account_tax_python.model_account_tax_template
  129. msgid "Templates for Taxes"
  130. msgstr "แม่แบบสำหรับภาษี"
  131. #. module: account_tax_python
  132. #: code:addons/account_tax_python/models/account_tax.py:0
  133. #: code:addons/account_tax_python/models/account_tax.py:0
  134. #, python-format
  135. msgid ""
  136. "You entered invalid code %r in %r taxes\n"
  137. "\n"
  138. "Error : %s"
  139. msgstr ""
  140. "คุณป้อนรหัส %r ไม่ถูกต้องในภาษี %r\n"
  141. "\n"
  142. "เกิดข้อผิดพลาด : %s"