pl.po 6.8 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. # Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2022
  8. # Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
  9. # Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
  10. # Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
  11. #
  12. msgid ""
  13. msgstr ""
  14. "Project-Id-Version: Odoo Server saas~14.4\n"
  15. "Report-Msgid-Bugs-To: \n"
  16. "POT-Creation-Date: 2021-07-12 07:50+0000\n"
  17. "PO-Revision-Date: 2022-09-22 05:44+0000\n"
  18. "Last-Translator: Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023\n"
  19. "Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: \n"
  23. "Language: pl\n"
  24. "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
  25. #. module: account_tax_python
  26. #: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
  27. msgid ""
  28. "\n"
  29. " - Group of Taxes: The tax is a set of sub taxes.\n"
  30. " - Fixed: The tax amount stays the same whatever the price.\n"
  31. " - Percentage of Price: The tax amount is a % of the price:\n"
  32. " e.g 100 * (1 + 10%) = 110 (not price included)\n"
  33. " e.g 110 / (1 + 10%) = 100 (price included)\n"
  34. " - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
  35. " e.g 180 / (1 - 10%) = 200 (not price included)\n"
  36. " e.g 200 * (1 - 10%) = 180 (price included)\n"
  37. " "
  38. msgstr ""
  39. "\n"
  40. "- Grupa podatków: Podatek jest zbiorem podatków cząstkowych.\n"
  41. "- Stały: Kwota podatku pozostaje taka sama niezależnie od ceny.\n"
  42. "- Procent ceny: Kwota podatku jest % ceny:\n"
  43. "np. 100 * (1 + 10%) = 110 (bez ceny)\n"
  44. "np. 110 / (1 + 10%) = 100 (cena wliczona)\n"
  45. "- Procent ceny wliczony w cenę: Kwota podatku jest podziałem ceny:\n"
  46. "np. 180 / (1 - 10%) = 200 (bez ceny wliczonej)\n"
  47. "np. 200 * (1 - 10%) = 180 (cena wliczona)"
  48. #. module: account_tax_python
  49. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  50. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  51. msgid "Applicable Code"
  52. msgstr "Odpowiedni kod"
  53. #. module: account_tax_python
  54. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  55. msgid ""
  56. "Compute the amount of the tax by setting the variable 'result'.\n"
  57. "\n"
  58. ":param base_amount: float, actual amount on which the tax is applied\n"
  59. ":param price_unit: float\n"
  60. ":param quantity: float\n"
  61. ":param company: res.company recordset singleton\n"
  62. ":param product: product.product recordset singleton or None\n"
  63. ":param partner: res.partner recordset singleton or None"
  64. msgstr ""
  65. "Obliczyć kwotę podatku przez ustawienie zmiennej \"wynik\".\n"
  66. "\n"
  67. ":param base_amount: float, actual amount on which the tax is applied\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. #. module: account_tax_python
  74. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  75. msgid ""
  76. "Compute the amount of the tax by setting the variable 'result'.\n"
  77. "\n"
  78. ":param base_amount: float, actual amount on which the tax is applied\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. "Oblicz wartość podatku poprzez ustawienie zmiennej 'wynik'.\n"
  85. "\n"
  86. ":param base_amount: float, rzeczywista kwota od której podatek jest naliczony\n"
  87. ":param price_unit: float\n"
  88. ":param quantity: float\n"
  89. ":param product: product.product recordset singleton or None\n"
  90. ":param partner: res.partner recordset singleton or None"
  91. #. module: account_tax_python
  92. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  93. msgid ""
  94. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  95. "\n"
  96. ":param price_unit: float\n"
  97. ":param quantity: float\n"
  98. ":param company: res.company recordset singleton\n"
  99. ":param product: product.product recordset singleton or None\n"
  100. ":param partner: res.partner recordset singleton or None"
  101. msgstr ""
  102. "Ustal, czy podatek będzie stosowany przez ustawienie zmiennej \"wynik\" True lub False.\n"
  103. "\n"
  104. ":param price_unit: float\n"
  105. ":param quantity: float\n"
  106. ":param company: res.company recordset singleton\n"
  107. ":param product: product.product recordset singleton or None\n"
  108. ":param partner: res.partner recordset singleton or None"
  109. #. module: account_tax_python
  110. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
  111. msgid ""
  112. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  113. "\n"
  114. ":param price_unit: float\n"
  115. ":param quantity: float\n"
  116. ":param product: product.product recordset singleton or None\n"
  117. ":param partner: res.partner recordset singleton or None"
  118. msgstr ""
  119. "Ustal, czy podatek będzie stosowany przez ustawienie zmiennej \"wynik\" True lub False.\n"
  120. "\n"
  121. ":param price_unit: float\n"
  122. ":param quantity: float\n"
  123. ":param product: product.product recordset singleton or None\n"
  124. ":param partner: res.partner recordset singleton or 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 "Kod Python"
  132. #. module: account_tax_python
  133. #: model:ir.model,name:account_tax_python.model_account_tax
  134. msgid "Tax"
  135. msgstr "Podatek"
  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 "Obliczenie podatku"
  141. #. module: account_tax_python
  142. #: model:ir.model,name:account_tax_python.model_account_tax_template
  143. msgid "Templates for Taxes"
  144. msgstr "Szablony podatków"
  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. "Wprowadzono nieprawidłowy kod %r w %r podatkach\n"
  155. "\n"
  156. "Błąd : %s"