zh_CN.po 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * account_tax_python
  4. #
  5. # Translators:
  6. # Martin Trigaux, 2022
  7. # Chloe Wang, 2023
  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: Chloe Wang, 2023\n"
  16. "Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
  17. "MIME-Version: 1.0\n"
  18. "Content-Type: text/plain; charset=UTF-8\n"
  19. "Content-Transfer-Encoding: \n"
  20. "Language: zh_CN\n"
  21. "Plural-Forms: nplurals=1; plural=0;\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 * 10%= 110(不含价格)\n"
  41. " 例如110 /(1 + 10%)= 100(含价格)\n"
  42. " - 含税价格的百分比:含税额除以价格:\n"
  43. " 例如180 /(1 - 10%)= 200(不含价格)\n"
  44. " 例如200 *(1 - 10%)= 180(含价格)\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 "适用代码"
  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. "通过设置变量‘结果’来计算税的总额\n"
  64. "\n"
  65. ":参数 base_amount: 浮点型, 税的实际额度\n"
  66. ":参数 price_unit: 浮点型\n"
  67. ":参数 quantity: 浮点型\n"
  68. ":参数 company: res.company 记录单\n"
  69. ":参数 product: product.product 记录单或者空\n"
  70. ":参数 partner: res.partner 记录单或者空"
  71. #. module: account_tax_python
  72. #: model:ir.model.fields,help:account_tax_python.field_account_tax_template__python_compute
  73. msgid ""
  74. "Compute the amount of the tax by setting the variable 'result'.\n"
  75. "\n"
  76. ":param base_amount: float, actual amount on which the tax is applied\n"
  77. ":param price_unit: float\n"
  78. ":param quantity: float\n"
  79. ":param product: product.product recordset singleton or None\n"
  80. ":param partner: res.partner recordset singleton or None"
  81. msgstr ""
  82. "通过设置变量‘结果’来计算税的总额\n"
  83. "\n"
  84. ":参数 base_amount: 浮点型, 税的实际额度\n"
  85. ":参数 price_unit: 浮点型\n"
  86. ":参数 quantity: 浮点型\n"
  87. ":参数 company: res.company 记录单\n"
  88. ":参数 product: product.product 记录单或者空\n"
  89. ":参数 partner: 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. ":参数 quantity: 浮点型\n"
  105. ":参数 company: res.company 记录单\n"
  106. ":参数 product: product.product 记录单或者空\n"
  107. ":参数 partner: res.partner 记录单或者空"
  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. ":参数 quantity: 浮点型\n"
  122. ":参数 company: res.company 记录单\n"
  123. ":参数 product: product.product 记录单或者空\n"
  124. ":参数 partner: res.partner 记录单或者空"
  125. #. module: account_tax_python
  126. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__python_compute
  127. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__python_compute
  128. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax__amount_type__code
  129. #: model:ir.model.fields.selection,name:account_tax_python.selection__account_tax_template__amount_type__code
  130. msgid "Python Code"
  131. msgstr "Python 代码"
  132. #. module: account_tax_python
  133. #: model:ir.model,name:account_tax_python.model_account_tax
  134. msgid "Tax"
  135. msgstr "税"
  136. #. module: account_tax_python
  137. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax__amount_type
  138. #: model:ir.model.fields,field_description:account_tax_python.field_account_tax_template__amount_type
  139. msgid "Tax Computation"
  140. msgstr "税计算"
  141. #. module: account_tax_python
  142. #: model:ir.model,name:account_tax_python.model_account_tax_template
  143. msgid "Templates for Taxes"
  144. msgstr "税模板"
  145. #. module: account_tax_python
  146. #: code:addons/account_tax_python/models/account_tax.py:0
  147. #: code:addons/account_tax_python/models/account_tax.py:0
  148. #, python-format
  149. msgid ""
  150. "You entered invalid code %r in %r taxes\n"
  151. "\n"
  152. "Error : %s"
  153. msgstr ""
  154. "您在 %r 税项中输入了无效代码%r\n"
  155. "\n"
  156. "错误:%s"