bg.po 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Nikola Iliev, 2023
  7. # Maria Boyadjieva <marabo2000@gmail.com>, 2023
  8. # Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
  9. # Turhan Aydin <taydin@unionproject.eu>, 2023
  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: Turhan Aydin <taydin@unionproject.eu>, 2023\n"
  18. "Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: \n"
  22. "Language: bg\n"
  23. "Plural-Forms: nplurals=2; plural=(n != 1);\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. "- Група на данъците: Данъкът е съвкупност от подданъци.\n"
  40. "- Фиксиран: Сумата на данъка остава постоянна, независимо от цената.\n"
  41. "- Процент от цената: Сумата на данъка е % от цената:\n"
  42. "например 100 * (1 + 10%) = 110 (не включва цената)\n"
  43. "например 110 / (1 + 10%) = 100 (включва цената)\n"
  44. "- Процент от цената с включен данък: Сумата на данъка е деление на цената:\n"
  45. "например 180 / (1 - 10%) = 200 (не включва цената)\n"
  46. "например 200 * (1 - 10%) = 180 (включва цената)"
  47. #. module: account_tax_python
  48. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_applicable
  49. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_applicable
  50. msgid "Applicable Code"
  51. msgstr "Приложим код"
  52. #. module: account_tax_python
  53. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_compute
  54. msgid ""
  55. "Compute the amount of the tax by setting the variable 'result'.\n"
  56. "\n"
  57. ":param base_amount: float, actual amount on which the tax is applied\n"
  58. ":param price_unit: float\n"
  59. ":param quantity: float\n"
  60. ":param company: res.company recordset singleton\n"
  61. ":param product: product.product recordset singleton or None\n"
  62. ":param partner: res.partner recordset singleton or None"
  63. msgstr ""
  64. "Изчислете размера на данъка, като зададете променливата величина \"резултат\".\n"
  65. "\n"
  66. ": параметър base_amount: плаваща запетая, действителна сума, върху която се прилага данъкът\n"
  67. ": параметър price_unit: плаваща запетая\n"
  68. ": параметър количество: плаваща запетая\n"
  69. ": параметър компания: res.company набор записи, единичен тон\n"
  70. ": параметър продукт: product.product набор записи, единичен тон или нищо\n"
  71. ": параметър контрагент: res.partner набор записи, единичен тон или нищо"
  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. "Изчислява размера на данъка въз основа на променливата величина 'резултат'.\n"
  84. "\n"
  85. ":параметър base_amount: плаваща запетая, действителна сума, която се облага с данък\n"
  86. ":параметър price_unit: плаваща запетая\n"
  87. ":параметър количество: плаваща запетая\n"
  88. ":параметър продукт: product.product набор записи, единичен тон или нищо\n"
  89. ":параметър контрагент: res.partner набор записи, единичен тон или нищо"
  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. "Определете дали данъкът ще бъде приложен чрез задаване на променливата величина \"резултат\" на 'Правилно' или 'Грешно'.\n"
  102. "\n"
  103. ": параметър price_unit: плаваща запетая\n"
  104. ": параметър количество: плаваща запетая\n"
  105. ": параметър компания: res.company набор записи, единичен тон\n"
  106. ": параметър продукт: product.product набор записи, единичен тон или нищо\n"
  107. ": параметър контрагент: набор записи, единичен тон или нищо"
  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. "Определете дали данъкът ще бъде приложен чрез задаване на променливата величина \"резултат\" на 'Правилно' или 'Грешно'.\n"
  119. "\n"
  120. ": параметър price_unit: плаваща запетая\n"
  121. ": параметър количество: плаваща запетая\n"
  122. ": параметър продукт: product.product набор записи, единичен тон или нищо\n"
  123. ": параметър контрагент: res.partner набор записи, единичен тон или нищо"
  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 "Код Python"
  131. #. module: account_tax_python
  132. #: model:ir.model,name:account_tax_python.model_account_tax
  133. msgid "Tax"
  134. msgstr "Данък"
  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 "Данъчна изчислителна система"
  140. #. module: account_tax_python
  141. #: model:ir.model,name:account_tax_python.model_account_tax_template
  142. msgid "Templates for Taxes"
  143. msgstr "Шаблон за данъци"
  144. #. module: account_tax_python
  145. #: code:addons/account_tax_python/models/account_tax.py:0
  146. #: code:addons/account_tax_python/models/account_tax.py:0
  147. #, python-format
  148. msgid ""
  149. "You entered invalid code %r in %r taxes\n"
  150. "\n"
  151. "Error : %s"
  152. msgstr ""