sk.po 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Martin Ondrejka <martin.ondrejka@anuva.eu>, 2022
  7. # Martin Trigaux, 2022
  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: Martin Trigaux, 2022\n"
  16. "Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: \n"
  20. "Language: sk\n"
  21. "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\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. " - Skupina daní: Daň je skupinou čiastkových daní.\n"
  38. " - Fixná: výška dane zostáva rovnaká bez ohľadu na cenu.\n"
  39. " - Percento z ceny: Výška dane je % z ceny:\n"
  40. " napr. 100 * (1 + 10%) = 110 (nie je zahrnuté v cene)\n"
  41. " napr. 110 / (1 + 10%) = 100 (zahrnuté v cene)\n"
  42. " - Percento z ceny vrátane dane: Výška dane je podielom z ceny:\n"
  43. " napr. 180 / (1 - 10%) = 200 (nie je zahrnuté v cene)\n"
  44. " napr. 200 * (1 - 10%) = 180 (zahrnuté v cene)\n"
  45. " "
  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 "Použiteľný kód"
  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. "Vypočítajte sumu dane nastavením premennej \"výsledok\".\n"
  64. "\n"
  65. "\n"
  66. ":param base_amount: float, aktuálna suma na ktorú sa aplikuje daň\n"
  67. ":param price_unit: float\n"
  68. ":param quantity: float\n"
  69. ":param company: res. spoločnosť záznam singleton\n"
  70. ":param product: product.product záznam singleton alebo None\n"
  71. ":param partner: res.partner záznam singleton alebo None"
  72. #. module: account_tax_python
  73. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  74. msgid ""
  75. "Compute the amount of the tax by setting the variable 'result'.\n"
  76. "\n"
  77. ":param base_amount: float, actual amount on which the tax is applied\n"
  78. ":param price_unit: float\n"
  79. ":param quantity: float\n"
  80. ":param product: product.product recordset singleton or None\n"
  81. ":param partner: res.partner recordset singleton or None"
  82. msgstr ""
  83. "Vypočítajte sumu dane nastavením premennej \"výsledok\".\n"
  84. "\n"
  85. ":param base_amount: float, aktuálna suma na ktorú sa aplikuje daň\n"
  86. ":param price_unit: float\n"
  87. ":param quantity: float\n"
  88. ":param product: product.product záznam singleton alebo None\n"
  89. ":param partner: res.partner záznam singleton alebo 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. "Vypočítajte sumu dane nastavením premennej \"výsledok\" na Pravda alebo Nepravda.\n"
  102. "\n"
  103. ":param price_unit: float\n"
  104. ":param quantity: float\n"
  105. ":param company: res. spoločnosť záznam singleton\n"
  106. ":param product: product.product záznam singleton alebo None\n"
  107. ":param partner: res.partner záznam singleton alebo 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. "Vypočítajte sumu dane nastavením premennej \"výsledok\" na Pravda alebo Nepravda.\n"
  119. "\n"
  120. ":param price_unit: float \n"
  121. ":param quantity: float\n"
  122. ":param product: product.product záznam singleton alebo None\n"
  123. ":param partner: res.partner záznam singleton alebo None"
  124. #. module: account_tax_python
  125. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  126. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  127. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  128. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  129. msgid "Python Code"
  130. msgstr "Kód Pyton"
  131. #. module: account_tax_python
  132. #: model:ir.model,name:account_tax_python.model_account_tax
  133. msgid "Tax"
  134. msgstr "Daň"
  135. #. module: account_tax_python
  136. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  137. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  138. msgid "Tax Computation"
  139. msgstr "Výpočet dane"
  140. #. module: account_tax_python
  141. #: model:ir.model,name:account_tax_python.model_account_tax_template
  142. msgid "Templates for Taxes"
  143. msgstr "Šablóny pre dane"