ru.po 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # ILMIR <karamov@it-projects.info>, 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: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: \n"
  20. "Language: ru\n"
  21. "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 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. "- Группа налогов: налог представляет собой вложенный набор налогов.\n"
  38. "- Фиксированный: сумма налога остается неизменной независимо от цены.\n"
  39. "- Процент от цены: сумма налога составляет % от цены:\n"
  40. "например, 100 * (1 + 10%) = 110 (не включая цену)\n"
  41. "например, 110 / (1 + 10%) = 100 (включая цену)\n"
  42. "- Процент от включенной суммы налога: Сумма налога представляет собой деление цены:\n"
  43. "например, 180 / (1-10%) = 200 (не включая цену)\n"
  44. "например, 200 * (1-10%) = 180 (включая цену)"
  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 "Применимый код"
  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. "Вычислите сумму налога, установив переменную 'результат'.\n"
  63. "\n"
  64. ": параметр base_amount: float, фактическая сумма, на которую применяется налог\n"
  65. ": параметр price_unit: float\n"
  66. ": параметр количество: float\n"
  67. ": параметр компании: res.company набор записей singleton\n"
  68. ": параметр продукта: product.product набор записей singleton или Нет\n"
  69. ": параметр партнера: res.partner набор записей singleton или Нет"
  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. "Вычислите сумму налога, установив переменную 'результат'.\n"
  82. "\n"
  83. ": параметр base_amount: float, фактическая сумма, на которую применяется налог\n"
  84. ": параметр price_unit: float\n"
  85. ": параметр количество: float\n"
  86. ": параметр продукта: product.product набор записей singleton или Нет\n"
  87. ": параметр партнера: res.partner набор записей singleton или Нет"
  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. "Определите, будет ли налог применяться, установив переменную 'результат' в значение Истина или Ложь.\n"
  100. "\n"
  101. ": параметр price_unit: float\n"
  102. ": параметр продукта: float\n"
  103. ": параметр компании: res.company набор записей singleton\n"
  104. ": параметр продукта: product.product набор записей singleton или Нет\n"
  105. ": параметр партнера: res.partner набор записей singleton или Нет"
  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. "Определите, будет ли налог применяться, установив переменную 'результат' в значение Истина или Ложь.\n"
  117. "\n"
  118. ": параметр price_unit: float\n"
  119. ": параметр продукта: float\n"
  120. ": параметр продукта: product.product набор записей singleton или Нет\n"
  121. ": параметр партнера: res.partner набор записей singleton или Нет"
  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"
  129. #. module: account_tax_python
  130. #: model:ir.model,name:account_tax_python.model_account_tax
  131. msgid "Tax"
  132. msgstr "Налог"
  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 "Расчет Налога"
  138. #. module: account_tax_python
  139. #: model:ir.model,name:account_tax_python.model_account_tax_template
  140. msgid "Templates for Taxes"
  141. msgstr "Шаблоны для налогов"