lv.po 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Kristine Timoskina <kristine.timoskina@gmail.com>, 2022
  7. # Arnis Putniņš <arnis@allegro.lv>, 2022
  8. # Martin Trigaux, 2022
  9. # Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 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: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023\n"
  18. "Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
  19. "MIME-Version: 1.0\n"
  20. "Content-Type: text/plain; charset=UTF-8\n"
  21. "Content-Transfer-Encoding: \n"
  22. "Language: lv\n"
  23. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\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. "Nodokļu grupa: nodoklis ir apakšnodokļu kopums.\n"
  40. "- Fiksēts: Nodokļa summa nemainās neatkarīgi no cenas.\n"
  41. "- Cenas procentuālā daļa: Nodokļa summa ir% no cenas:\n"
  42. "piem., 100 * (1 + 10%) = 110 (bez cenas)\n"
  43. "piem., 110 / (1 + 10%) = 100 (iekļauta cena)\n"
  44. "- Cenā iekļautā procentuālā daļa: nodokļa summa ir cenas dalījums:\n"
  45. "piemēram, 180 / (1 - 10%) = 200 (nav iekļauta cena)\n"
  46. "piem., 200 * (1 - 10%) = 180 (iekļauta cena)"
  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 "Attiecināmais kods"
  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. #. module: account_tax_python
  65. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  66. msgid ""
  67. "Compute the amount of the tax by setting the variable 'result'.\n"
  68. "\n"
  69. ":param base_amount: float, actual amount on which the tax is applied\n"
  70. ":param price_unit: float\n"
  71. ":param quantity: float\n"
  72. ":param product: product.product recordset singleton or None\n"
  73. ":param partner: res.partner recordset singleton or None"
  74. msgstr ""
  75. #. module: account_tax_python
  76. #: model:ir.model.fields,help:account_tax_python.field_account_tax__python_applicable
  77. msgid ""
  78. "Determine if the tax will be applied by setting the variable 'result' to True or False.\n"
  79. "\n"
  80. ":param price_unit: float\n"
  81. ":param quantity: float\n"
  82. ":param company: res.company recordset singleton\n"
  83. ":param product: product.product recordset singleton or None\n"
  84. ":param partner: res.partner recordset singleton or None"
  85. msgstr ""
  86. #. module: account_tax_python
  87. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__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 product: product.product recordset singleton or None\n"
  94. ":param partner: res.partner recordset singleton or None"
  95. msgstr ""
  96. #. module: account_tax_python
  97. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  98. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  99. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  100. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  101. msgid "Python Code"
  102. msgstr "Python Code"
  103. #. module: account_tax_python
  104. #: model:ir.model,name:account_tax_python.model_account_tax
  105. msgid "Tax"
  106. msgstr "Nodoklis"
  107. #. module: account_tax_python
  108. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  109. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  110. msgid "Tax Computation"
  111. msgstr "Nodokļu aprēķins"
  112. #. module: account_tax_python
  113. #: model:ir.model,name:account_tax_python.model_account_tax_template
  114. msgid "Templates for Taxes"
  115. msgstr "Nodokļu sagataves"
  116. #. module: account_tax_python
  117. #: code:addons/account_tax_python/models/account_tax.py:0
  118. #: code:addons/account_tax_python/models/account_tax.py:0
  119. #, python-format
  120. msgid ""
  121. "You entered invalid code %r in %r taxes\n"
  122. "\n"
  123. "Error : %s"
  124. msgstr ""