es.po 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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, 2022
  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, 2022\n"
  15. "Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: \n"
  19. "Language: es\n"
  20. "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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. "\n"
  36. "Grupo de impuestos: el impuesto es un conjunto de sub impuestos.\n"
  37. "     - Fijo: el importe del impuesto permanece igual independientemente del precio.\n"
  38. "     - Porcentaje del precio: el monto del impuesto es un % del precio:\n"
  39. "         Por ejemplo, 100 * (1 + 10%) = 110 (sin precio incluido)\n"
  40. "         por ejemplo, 110 / (1 + 10%) = 100 (precio incluido)\n"
  41. "     - Porcentaje del precio impuesto incluido: El monto del impuesto es una división del precio:\n"
  42. "         Por ejemplo, 180 / (1 - 10%) = 200 (sin precio incluido)\n"
  43. "         Por ejemplo, 200 * (1-10%) = 180 (precio incluido)"
  44. #. module: account_tax_python
  45. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  46. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  47. msgid "Applicable Code"
  48. msgstr "Código aplicable"
  49. #. module: account_tax_python
  50. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  51. msgid ""
  52. "Compute the amount of the tax by setting the variable 'result'.\n"
  53. "\n"
  54. ":param base_amount: float, actual amount on which the tax is applied\n"
  55. ":param price_unit: float\n"
  56. ":param quantity: float\n"
  57. ":param company: res.company recordset singleton\n"
  58. ":param product: product.product recordset singleton or None\n"
  59. ":param partner: res.partner recordset singleton or None"
  60. msgstr ""
  61. "Calcula el importe del impuesto estableciendo la variable 'result'.\n"
  62. "\n"
  63. ":parámetro base_amount: número con decimales, importe real sobre el que el impuesto se aplica\n"
  64. ":parámetro price_unit: número con decimales\n"
  65. ":parámetro quantity: número con decimales\n"
  66. ":parámetro company: recordset unitario de res.company\n"
  67. ":parámetro product: recordset unitario de product.product o None\n"
  68. ":parámetro partner: recordset unitario de res.partner o None"
  69. #. module: account_tax_python
  70. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  71. msgid ""
  72. "Compute the amount of the tax by setting the variable 'result'.\n"
  73. "\n"
  74. ":param base_amount: float, actual amount on which the tax is applied\n"
  75. ":param price_unit: float\n"
  76. ":param quantity: float\n"
  77. ":param product: product.product recordset singleton or None\n"
  78. ":param partner: res.partner recordset singleton or None"
  79. msgstr ""
  80. "Calcule el importe del impuesto estableciendo la variable 'result'.\n"
  81. "\n"
  82. ":parámetro base_amount: número con decimales, importe real sobre el que el impuesto se aplica\n"
  83. ":parámetro price_unit: número con decimales\n"
  84. ":parámetro quantity: número con decimales\n"
  85. ":parámetro company: recordset unitario de res.company\n"
  86. ":parámetro product: recordset unitario de product.product o None\n"
  87. ":parámetro partner: recordset unitario de res.partner o None"
  88. #. module: account_tax_python
  89. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  90. msgid ""
  91. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  92. "\n"
  93. ":param price_unit: float\n"
  94. ":param quantity: float\n"
  95. ":param company: res.company recordset singleton\n"
  96. ":param product: product.product recordset singleton or None\n"
  97. ":param partner: res.partner recordset singleton or None"
  98. msgstr ""
  99. "Determina si el impuesto será aplicado estableciendo la variable 'result' a True o False.\n"
  100. "\n"
  101. ":parámetro price_unit: número con decimales\n"
  102. ":parámetro quantity: número con decimales\n"
  103. ":parámetro company: recordset unitario de res.company\n"
  104. ":parámetro product: recordset unitario de product.product o None\n"
  105. ":parámetro partner: recordset unitario de res.partner o None"
  106. #. module: account_tax_python
  107. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
  108. msgid ""
  109. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  110. "\n"
  111. ":param price_unit: float\n"
  112. ":param quantity: float\n"
  113. ":param product: product.product recordset singleton or None\n"
  114. ":param partner: res.partner recordset singleton or None"
  115. msgstr ""
  116. "Determina si el impuesto será aplicado estableciendo la variable 'result' a True o False.\n"
  117. "\n"
  118. ":parámetro price_unit: número con decimales\n"
  119. ":parámetro quantity: número con decimales\n"
  120. ":parámetro company: recordset unitario de res.company\n"
  121. ":parámetro product: recordset unitario de product.product o None\n"
  122. ":parámetro partner: recordset unitario de res.partner o None"
  123. #. module: account_tax_python
  124. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  125. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  126. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  127. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  128. msgid "Python Code"
  129. msgstr "Código Python"
  130. #. module: account_tax_python
  131. #: model:ir.model,name:account_tax_python.model_account_tax
  132. msgid "Tax"
  133. msgstr "Impuesto"
  134. #. module: account_tax_python
  135. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  136. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  137. msgid "Tax Computation"
  138. msgstr "Cálculo de impuestos"
  139. #. module: account_tax_python
  140. #: model:ir.model,name:account_tax_python.model_account_tax_template
  141. msgid "Templates for Taxes"
  142. msgstr "Plantilla de impuestos"