de.po 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. # Larissa Manderfeld, 2023
  8. #
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: Odoo Server saas~14.4\n"
  12. "Report-Msgid-Bugs-To: \n"
  13. "POT-Creation-Date: 2021-07-12 07:50+0000\n"
  14. "PO-Revision-Date: 2022-09-22 05:44+0000\n"
  15. "Last-Translator: Larissa Manderfeld, 2023\n"
  16. "Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: \n"
  20. "Language: de\n"
  21. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  22. #. module: account_tax_python
  23. #: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
  24. msgid ""
  25. "\n"
  26. " - Group of Taxes: The tax is a set of sub taxes.\n"
  27. " - Fixed: The tax amount stays the same whatever the price.\n"
  28. " - Percentage of Price: The tax amount is a % of the price:\n"
  29. " e.g 100 * (1 + 10%) = 110 (not price included)\n"
  30. " e.g 110 / (1 + 10%) = 100 (price included)\n"
  31. " - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
  32. " e.g 180 / (1 - 10%) = 200 (not price included)\n"
  33. " e.g 200 * (1 - 10%) = 180 (price included)\n"
  34. " "
  35. msgstr ""
  36. "\n"
  37. "- Steuergruppen: Die Steuer ist eine Gruppe von Untersteuern.\n"
  38. "- Fest: Der Steuerbetrag bleibt unabhängig vom Preis gleich.\n"
  39. "- Prozentsatz des Preises: Der Steuerbetrag ist ein Prozentsatz des Preises:\n"
  40. " z. B. 100 * (1 + 10 %) = 110 (nicht im Preis enthalten)\n"
  41. " z. B. 110 / (1 + 10 %) = 100 (im Preis enthalten)\n"
  42. "- Prozentsatz des Preises inkusive Steuern: Der Steuerbetrag ist eine Division des Preises:\n"
  43. " z. B. 180 / (1 - 10 %) = 200 (nicht im Preis enthalten)\n"
  44. " z. B. 200 * (1 - 10 %) = 180 (im Preis enthalten)"
  45. #. module: account_tax_python
  46. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  47. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  48. msgid "Applicable Code"
  49. msgstr "Anwendbarer Code"
  50. #. module: account_tax_python
  51. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  52. msgid ""
  53. "Compute the amount of the tax by setting the variable 'result'.\n"
  54. "\n"
  55. ":param base_amount: float, actual amount on which the tax is applied\n"
  56. ":param price_unit: float\n"
  57. ":param quantity: float\n"
  58. ":param company: res.company recordset singleton\n"
  59. ":param product: product.product recordset singleton or None\n"
  60. ":param partner: res.partner recordset singleton or None"
  61. msgstr ""
  62. "Berechnen Sie den Steuerbetrag durch setzen der Variable „result“.\n"
  63. "\n"
  64. ":param base_amount: Gleitkommazahl, tatsächlicher Betrag, auf den die Steuer angewendet wird\n"
  65. ":param price_unit: Gleitkommazahl\n"
  66. ":param quantity: Gleitkommazahl\n"
  67. ":param company: res.company-Datensatz singleton\n"
  68. ":param product: product.product-Datensatz singleton oder keiner\n"
  69. ":param partner: res.partner-Datensatz singleton oder keiner"
  70. #. module: account_tax_python
  71. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  72. msgid ""
  73. "Compute the amount of the tax by setting the variable 'result'.\n"
  74. "\n"
  75. ":param base_amount: float, actual amount on which the tax is applied\n"
  76. ":param price_unit: float\n"
  77. ":param quantity: float\n"
  78. ":param product: product.product recordset singleton or None\n"
  79. ":param partner: res.partner recordset singleton or None"
  80. msgstr ""
  81. "Berechnen Sie den Steuerbetrag durch setzen der Variable „result“.\n"
  82. "\n"
  83. ":param base_amount: Gleitkommazahl, tatsächlicher Betrag, auf den die Steuer angewendet wird\n"
  84. ":param price_unit: Gleitkommazahl\n"
  85. ":param quantity: Gleitkommazahl\n"
  86. ":param product: product.product-Datensatz singleton oder keiner\n"
  87. ":param partner: res.partner-Datensatz singleton oder keiner"
  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. "Bestimmen Sie, ob die Steuer angewendet wird, durch setzen der Variable „result“ auf True oder False.\n"
  100. "\n"
  101. ":param price_unit: Gleitkommazahl\n"
  102. ":param quantity: Gleitkommazahl,\n"
  103. ":param company: res.company-Datensatz singleton\n"
  104. ":param product: product.product-Datensatz singleton oder keiner\n"
  105. ":param partner: res.partner-Datensatz singleton oder keiner"
  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. "Bestimmen Sie, ob die Steuer angewendet wird, durch setzen der Variable „result“ auf True oder False.\n"
  117. "\n"
  118. ":param price_unit: Gleitkommazahl\n"
  119. ":param quantity: Gleitkommazahl,\n"
  120. ":param product: product.product-Datensatz singleton oder keiner\n"
  121. ":param partner: res.partner-Datensatz singleton oder keiner"
  122. #. module: account_tax_python
  123. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  124. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  125. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  126. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  127. msgid "Python Code"
  128. msgstr "Python-Code"
  129. #. module: account_tax_python
  130. #: model:ir.model,name:account_tax_python.model_account_tax
  131. msgid "Tax"
  132. msgstr "Steuer"
  133. #. module: account_tax_python
  134. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  135. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  136. msgid "Tax Computation"
  137. msgstr "Steuerberechnung"
  138. #. module: account_tax_python
  139. #: model:ir.model,name:account_tax_python.model_account_tax_template
  140. msgid "Templates for Taxes"
  141. msgstr "Vorlagen für Steuern"
  142. #. module: account_tax_python
  143. #: code:addons/account_tax_python/models/account_tax.py:0
  144. #: code:addons/account_tax_python/models/account_tax.py:0
  145. #, python-format
  146. msgid ""
  147. "You entered invalid code %r in %r taxes\n"
  148. "\n"
  149. "Error : %s"
  150. msgstr ""
  151. "Sie haben einen ungültigen Code %r in Steuern %r eingegeben\n"
  152. "\n"
  153. "Fehler: %s"