es_MX.po 7.1 KB

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