cs.po 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # milda dvorak <milda.dvorak@optimal4.cz>, 2022
  7. # Jan Horzinka <jan.horzinka@centrum.cz>, 2022
  8. # David Kliment <daklime@gmail.com>, 2022
  9. # Jiří Podhorecký, 2022
  10. #
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: Odoo Server saas~14.4\n"
  14. "Report-Msgid-Bugs-To: \n"
  15. "POT-Creation-Date: 2021-07-12 07:50+0000\n"
  16. "PO-Revision-Date: 2022-09-22 05:44+0000\n"
  17. "Last-Translator: Jiří Podhorecký, 2022\n"
  18. "Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: \n"
  22. "Language: cs\n"
  23. "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
  24. #. module: account_tax_python
  25. #: model:ir.model.fields,help:account_tax_python.field_account_tax__amount_type
  26. msgid ""
  27. "\n"
  28. " - Group of Taxes: The tax is a set of sub taxes.\n"
  29. " - Fixed: The tax amount stays the same whatever the price.\n"
  30. " - Percentage of Price: The tax amount is a % of the price:\n"
  31. " e.g 100 * (1 + 10%) = 110 (not price included)\n"
  32. " e.g 110 / (1 + 10%) = 100 (price included)\n"
  33. " - Percentage of Price Tax Included: The tax amount is a division of the price:\n"
  34. " e.g 180 / (1 - 10%) = 200 (not price included)\n"
  35. " e.g 200 * (1 - 10%) = 180 (price included)\n"
  36. " "
  37. msgstr ""
  38. "\n"
  39. "- Skupina daní: Daň je soubor dílčích daní.\n"
  40. "- Pevná: Výše daně zůstává stejná nezávisle na ceně.\n"
  41. "- Procentní z ceny: Výše daně je procento z ceny:\n"
  42. "např"
  43. #. module: account_tax_python
  44. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  45. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  46. msgid "Applicable Code"
  47. msgstr "aplikovatelný kód"
  48. #. module: account_tax_python
  49. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  50. msgid ""
  51. "Compute the amount of the tax by setting the variable 'result'.\n"
  52. "\n"
  53. ":param base_amount: float, actual amount on which the tax is applied\n"
  54. ":param price_unit: float\n"
  55. ":param quantity: float\n"
  56. ":param company: res.company recordset singleton\n"
  57. ":param product: product.product recordset singleton or None\n"
  58. ":param partner: res.partner recordset singleton or None"
  59. msgstr ""
  60. "Vypočtěte částku daně nastavením proměnné 'result'.\n"
  61. "\n"
  62. ":param base_amount: float, skutečná částka, na kterou se daň vztahuje\n"
  63. ":param price_unit: float\n"
  64. ":param quantity: float\n"
  65. ":param company: res.company recordset singleton\n"
  66. ":param product: product.product recordset singleton nebo None\n"
  67. ":param partner: res.partner singleton nebo None"
  68. #. module: account_tax_python
  69. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  70. msgid ""
  71. "Compute the amount of the tax by setting the variable 'result'.\n"
  72. "\n"
  73. ":param base_amount: float, actual amount on which the tax is applied\n"
  74. ":param price_unit: float\n"
  75. ":param quantity: float\n"
  76. ":param product: product.product recordset singleton or None\n"
  77. ":param partner: res.partner recordset singleton or None"
  78. msgstr ""
  79. "Vypočítejte částku daně nastavením proměnné 'result'.\n"
  80. "\n"
  81. ":param base_amount: float, actual amount on which the tax is applied\n"
  82. ":param price_unit: float\n"
  83. ":param quantity: float\n"
  84. ":param product: product.product recordset singleton or None\n"
  85. ":param partner: res.partner recordset singleton or None"
  86. #. module: account_tax_python
  87. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  88. msgid ""
  89. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  90. "\n"
  91. ":param price_unit: float\n"
  92. ":param quantity: float\n"
  93. ":param company: res.company recordset singleton\n"
  94. ":param product: product.product recordset singleton or None\n"
  95. ":param partner: res.partner recordset singleton or None"
  96. msgstr ""
  97. "Určete, zda bude daň použita, nastavením proměnné 'result' na True nebo False.\n"
  98. "\n"
  99. ":param price_unit: float\n"
  100. ":param quantity: float\n"
  101. ":param company: res.company recordset singleton\n"
  102. ":param product: product.product recordset singleton or None\n"
  103. ":param partner: res.partner recordset singleton or None"
  104. #. module: account_tax_python
  105. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_applicable
  106. msgid ""
  107. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  108. "\n"
  109. ":param price_unit: float\n"
  110. ":param quantity: float\n"
  111. ":param product: product.product recordset singleton or None\n"
  112. ":param partner: res.partner recordset singleton or None"
  113. msgstr ""
  114. "Určete, zda bude daň použita, nastavením proměnné 'result' na True nebo False.\n"
  115. "\n"
  116. ":param price_unit: float\n"
  117. ":param quantity: float\n"
  118. ":param product: product.product recordset singleton or None\n"
  119. ":param partner: res.partner recordset singleton or None"
  120. #. module: account_tax_python
  121. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  122. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  123. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  124. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  125. msgid "Python Code"
  126. msgstr "Python kód"
  127. #. module: account_tax_python
  128. #: model:ir.model,name:account_tax_python.model_account_tax
  129. msgid "Tax"
  130. msgstr "Daň"
  131. #. module: account_tax_python
  132. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  133. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  134. msgid "Tax Computation"
  135. msgstr "Výpočet daně"
  136. #. module: account_tax_python
  137. #: model:ir.model,name:account_tax_python.model_account_tax_template
  138. msgid "Templates for Taxes"
  139. msgstr "Šablony pro daně"