lo.po 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Martin Trigaux, 2023
  7. #
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: Odoo Server saas~14.4\n"
  11. "Report-Msgid-Bugs-To: \n"
  12. "POT-Creation-Date: 2021-07-12 07:50+0000\n"
  13. "PO-Revision-Date: 2022-09-22 05:44+0000\n"
  14. "Last-Translator: Martin Trigaux, 2023\n"
  15. "Language-Team: Lao (https://app.transifex.com/odoo/teams/41243/lo/)\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: \n"
  19. "Language: lo\n"
  20. "Plural-Forms: nplurals=1; plural=0;\n"
  21. #. module: account_tax_python
  22. #: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
  23. msgid ""
  24. "\n"
  25. " - Group of Taxes: The tax is a set of sub taxes.\n"
  26. " - Fixed: The tax amount stays the same whatever the price.\n"
  27. " - Percentage of Price: The tax amount is a % of the price:\n"
  28. " e.g 100 * (1 + 10%) = 110 (not price included)\n"
  29. " e.g 110 / (1 + 10%) = 100 (price included)\n"
  30. " - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
  31. " e.g 180 / (1 - 10%) = 200 (not price included)\n"
  32. " e.g 200 * (1 - 10%) = 180 (price included)\n"
  33. " "
  34. msgstr ""
  35. #. module: account_tax_python
  36. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  37. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  38. msgid "Applicable Code"
  39. msgstr ""
  40. #. module: account_tax_python
  41. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  42. msgid ""
  43. "Compute the amount of the tax by setting the variable 'result'.\n"
  44. "\n"
  45. ":param base_amount: float, actual amount on which the tax is applied\n"
  46. ":param price_unit: float\n"
  47. ":param quantity: float\n"
  48. ":param company: res.company recordset singleton\n"
  49. ":param product: product.product recordset singleton or None\n"
  50. ":param partner: res.partner recordset singleton or None"
  51. msgstr ""
  52. #. module: account_tax_python
  53. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__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 product: product.product recordset singleton or None\n"
  61. ":param partner: res.partner recordset singleton or None"
  62. msgstr ""
  63. #. module: account_tax_python
  64. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  65. msgid ""
  66. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  67. "\n"
  68. ":param price_unit: float\n"
  69. ":param quantity: float\n"
  70. ":param company: res.company recordset singleton\n"
  71. ":param product: product.product recordset singleton or None\n"
  72. ":param partner: res.partner recordset singleton or None"
  73. msgstr ""
  74. #. module: account_tax_python
  75. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
  76. msgid ""
  77. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  78. "\n"
  79. ":param price_unit: float\n"
  80. ":param quantity: float\n"
  81. ":param product: product.product recordset singleton or None\n"
  82. ":param partner: res.partner recordset singleton or None"
  83. msgstr ""
  84. #. module: account_tax_python
  85. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  86. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  87. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  88. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  89. msgid "Python Code"
  90. msgstr ""
  91. #. module: account_tax_python
  92. #: model:ir.model,name:account_tax_python.model_account_tax
  93. msgid "Tax"
  94. msgstr "ອາກອນ"
  95. #. module: account_tax_python
  96. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  97. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  98. msgid "Tax Computation"
  99. msgstr ""
  100. #. module: account_tax_python
  101. #: model:ir.model,name:account_tax_python.model_account_tax_template
  102. msgid "Templates for Taxes"
  103. msgstr ""
  104. #. module: account_tax_python
  105. #: code:addons/account_tax_python/models/account_tax.py:0
  106. #: code:addons/account_tax_python/models/account_tax.py:0
  107. #, python-format
  108. msgid ""
  109. "You entered invalid code %r in %r taxes\n"
  110. "\n"
  111. "Error : %s"
  112. msgstr ""