From 7f346c319a5bd40f060787db144c1708a9aad690 Mon Sep 17 00:00:00 2001 From: Jonathan <46810843+jcs-odoo@users.noreply.github.com> Date: Tue, 27 Oct 2020 14:54:56 +0100 Subject: [PATCH 1/4] [ADD] accounting (localizations): list of supported countries (#742) --- accounting/fiscal_localizations/overview.rst | 3 +- .../overview/fiscal_localization_packages.rst | 1 + .../overview/localizations_list.rst | 135 ++++++++++++++++++ 3 files changed, 138 insertions(+), 1 deletion(-) create mode 100644 accounting/fiscal_localizations/overview/localizations_list.rst diff --git a/accounting/fiscal_localizations/overview.rst b/accounting/fiscal_localizations/overview.rst index f073b655b..f94c6d446 100644 --- a/accounting/fiscal_localizations/overview.rst +++ b/accounting/fiscal_localizations/overview.rst @@ -5,4 +5,5 @@ Overview .. toctree:: :titlesonly: - overview/fiscal_localization_packages \ No newline at end of file + overview/fiscal_localization_packages + overview/localizations_list \ No newline at end of file diff --git a/accounting/fiscal_localizations/overview/fiscal_localization_packages.rst b/accounting/fiscal_localizations/overview/fiscal_localization_packages.rst index 4cd5c8cf7..a2c3be1fd 100644 --- a/accounting/fiscal_localizations/overview/fiscal_localization_packages.rst +++ b/accounting/fiscal_localizations/overview/fiscal_localization_packages.rst @@ -41,6 +41,7 @@ taxes you use, and configure your country-specific statements and certifications Please refer to the documentation listed below for more information. .. seealso:: + - :doc:`localizations_list` - :doc:`../../overview/getting_started/chart_of_accounts` - :doc:`../../fiscality/taxes/taxes` diff --git a/accounting/fiscal_localizations/overview/localizations_list.rst b/accounting/fiscal_localizations/overview/localizations_list.rst new file mode 100644 index 000000000..1d72986f6 --- /dev/null +++ b/accounting/fiscal_localizations/overview/localizations_list.rst @@ -0,0 +1,135 @@ +=========================== +List of supported countries +=========================== + +Odoo Accounting can be used in many countries out of the box by installing the appropriate module. +Here is a list of all :doc:`Fiscal Localization Packages ` that are +available on Odoo. + +.. image:: media/fiscal_localization_packages_modules.png + :align: center + :alt: Odoo Accounting. + +Fiscal Localization Packages available +====================================== + +- Algeria - Accounting +- Argentina + + - Argentinian Accounting + - Argentinian Accounting Reports + - Argentinian Electronic Invoicing + +- Australian - Accounting +- Austria - Accounting +- Belgium - Accounting +- Bolivia - Accounting +- Brazilian - Accounting +- Canada - Accounting +- Chile - Accounting +- China + + - China - Accounting + - China - City Data + - China - Small Business CoA + - China - Standard CoA + +- Colombia + + - Colombian - Accounting + - Colombian - Point of Sale + +- Costa Rica - Accounting +- Croatia - Accounting (RRIF 2012) +- Denmark + + - Denmark - Accounting + - Denmark - Accounting Reports + +- Dominican Republic - Accounting +- Ecuador - Accounting +- Ethiopia - Accounting +- EU Mini One Stop Shop (MOSS) +- Finnish Localization +- France - Accounting +- Generic - Accounting +- Germany + + - Germany - Accounting + - Germany SKR03 - Accounting + - Germany SKR04 - Accounting + +- Greece - Accounting +- Guatemala - Accounting +- Honduras - Accounting +- Hong Kong - Accounting +- Hungarian - Accounting +- India + + - Indian - Accounting + - Indian - Point of Sale + +- Indonesian - Accounting +- Ireland - Accounting +- Israel - Accounting +- Italy + + - Italy - Accounting + - Italy - E-invoicing + +- Japan - Accounting +- LATAM + + - LATAM Localization Base + - LATAM Document + +- Lithuania + + - Lithuania - Accounting + - LT - Accounting Reports + +- Luxembourg - Accounting +- Maroc - Accounting +- Mexico - Accounting +- Mongolia + + - Mongolia - Accounting + - Mongolia - Accounting Reports + +- Multi Language Chart of Accounts +- Netherlands + + - Netherlands - Accounting + - Netherlands - Intrastat Declaration + +- New Zealand - Accounting +- Norway - Accounting +- OHADA - Accounting +- Panama - Accounting +- Peru - Accounting +- Poland - Accounting +- Portugal - Accounting +- Romania - Accounting +- Saudi Arabia - Accounting +- Singapore - Accounting +- Slovenian - Accounting +- South Africa - Accounting +- Spain - Accounting (PGCE 2008) +- Sweden + + - Sweden - Structured Communication OCR + - Swedish - Accounting + +- Switzerland - Accounting +- Thailand - Accounting +- Turkey - Accounting +- U.A.E. - Accounting +- UK - Accounting +- Ukraine - Accounting +- United States - Accounting +- Uruguay - Chart of Accounts +- Venezuela - Accounting +- Vietnam - Accounting + +.. seealso:: + - :doc:`fiscal_localization_packages` \ No newline at end of file From 8fa89877e78cac63cbbe9164702c5563f4293734 Mon Sep 17 00:00:00 2001 From: Alex Tuyls <42001051+alt-odoo@users.noreply.github.com> Date: Thu, 29 Oct 2020 10:33:59 +0100 Subject: [PATCH 2/4] [IMP] odoo_sh: update backup policy before merge (#778) It was not clear enough whether or not a backup was triggered when doing code updates. --- odoo_sh/getting_started/branches.rst | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/odoo_sh/getting_started/branches.rst b/odoo_sh/getting_started/branches.rst index 4ef346818..ad0eaea19 100644 --- a/odoo_sh/getting_started/branches.rst +++ b/odoo_sh/getting_started/branches.rst @@ -245,9 +245,17 @@ This server only keeps one month of backups: 7 daily and 4 weekly backups. Dedicated backup servers keep the same backups, as well as 3 additional monthly backups. To restore or download one of these monthly backups, please `contact us `_. -You can make a backup manually before making big changes in your production database in case something goes wrong -(those manual backups are available for about one week). -To avoid abuse, we limit manual backups to 5 per day. +If you merge a commit updating the version of one or several modules (in :file:`__manifest__.py`), or their linked python +dependencies (in :file:`requirements.txt`), then Odoo.sh performs a backup automatically (flagged with type Update in the list), +as either the container will be changed by the installation of new pip packages, either the database itself will be +changed with the module update triggered afterwards. In these two cases, we are doing a backup as it may potentially +break things. + +If you merge a commit that only changes some code without the above-mentioned modifications, then no backup is done +by Odoo.sh, as neither the container nor the database is modified so the platform considers this safe enough. Of course, +as an extra precaution, you can make a backup manually before making big changes in your production sources in case +something goes wrong (those manual backups are available for about one week). To avoid abuse, we limit manual backups +to 5 per day. The *import database* feature accepts database archives in the format provided by: From 041740fd853adc16fd3c1032e7ca2b39208fe142 Mon Sep 17 00:00:00 2001 From: Odoo Translation Bot Date: Sun, 1 Nov 2020 01:30:36 +0100 Subject: [PATCH 3/4] [I18N] Update translation terms from Transifex --- locale/es/LC_MESSAGES/accounting.po | 7 +- locale/es/LC_MESSAGES/inventory.po | 8 +- locale/pt_BR/LC_MESSAGES/accounting.po | 7 +- locale/zh_CN/LC_MESSAGES/accounting.po | 392 +++++++++++++++---------- locale/zh_CN/LC_MESSAGES/project.po | 28 +- 5 files changed, 271 insertions(+), 171 deletions(-) diff --git a/locale/es/LC_MESSAGES/accounting.po b/locale/es/LC_MESSAGES/accounting.po index b86fdb679..c423eb9bc 100644 --- a/locale/es/LC_MESSAGES/accounting.po +++ b/locale/es/LC_MESSAGES/accounting.po @@ -56,6 +56,7 @@ # Martin Trigaux, 2020 # Jesús Alan Ramos Rodríguez , 2020 # Leonardo J. Caballero G. , 2020 +# Susanna Pujol, 2020 # #, fuzzy msgid "" @@ -64,7 +65,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-09-24 12:02+0200\n" "PO-Revision-Date: 2019-10-03 09:45+0000\n" -"Last-Translator: Leonardo J. Caballero G. , 2020\n" +"Last-Translator: Susanna Pujol, 2020\n" "Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1080,7 +1081,7 @@ msgstr "" #: ../../accounting/bank/reconciliation/reconciliation_models.rst:32 msgid "Manually create a write-off on clicked button" -msgstr "" +msgstr "Crear un descuadre manualmente haciendo clic en el botón. " #: ../../accounting/bank/reconciliation/reconciliation_models.rst:34 msgid "" @@ -1092,7 +1093,7 @@ msgstr "" #: ../../accounting/bank/reconciliation/reconciliation_models.rst:45 msgid "Suggest counterpart values" -msgstr "" +msgstr "Sugerir valores de contrapartida. " #: ../../accounting/bank/reconciliation/reconciliation_models.rst:47 msgid "" diff --git a/locale/es/LC_MESSAGES/inventory.po b/locale/es/LC_MESSAGES/inventory.po index 9744ac023..345eb09c0 100644 --- a/locale/es/LC_MESSAGES/inventory.po +++ b/locale/es/LC_MESSAGES/inventory.po @@ -20,6 +20,7 @@ # Jesús Alan Ramos Rodríguez , 2020 # Martin Trigaux, 2020 # Lina Maria Avendaño Carvajal , 2020 +# Susanna Pujol, 2020 # #, fuzzy msgid "" @@ -28,7 +29,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-09-24 12:02+0200\n" "PO-Revision-Date: 2019-10-03 09:46+0000\n" -"Last-Translator: Lina Maria Avendaño Carvajal , 2020\n" +"Last-Translator: Susanna Pujol, 2020\n" "Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3374,7 +3375,7 @@ msgstr "Productos" #: ../../inventory/management/products/strategies.rst:3 msgid "How to select the right replenishment strategy" -msgstr "" +msgstr "Como escoger la estrategia de reposición adecuada" #: ../../inventory/management/products/strategies.rst:5 msgid "" @@ -3382,6 +3383,9 @@ msgid "" "different rules. They should be used depending on your manufacturing and " "delivery strategies." msgstr "" +"Las reglas referentes al stock mínimo y la fabricación bajo demanda tienen " +"consecuencias similares pero reglas diferentes. Deberían ser usados según " +"sus estrategias de producción y entrega." #: ../../inventory/management/products/strategies.rst:10 msgid "Terminology" diff --git a/locale/pt_BR/LC_MESSAGES/accounting.po b/locale/pt_BR/LC_MESSAGES/accounting.po index 75e646f7f..040c66959 100644 --- a/locale/pt_BR/LC_MESSAGES/accounting.po +++ b/locale/pt_BR/LC_MESSAGES/accounting.po @@ -21,6 +21,7 @@ # Martin Trigaux, 2020 # Mateus Lopes , 2020 # grazziano , 2020 +# Éder Brito , 2020 # #, fuzzy msgid "" @@ -29,7 +30,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-09-24 12:02+0200\n" "PO-Revision-Date: 2019-10-03 09:45+0000\n" -"Last-Translator: grazziano , 2020\n" +"Last-Translator: Éder Brito , 2020\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -8123,7 +8124,7 @@ msgstr "" #: ../../accounting/fiscality/taxes/taxes.rst:89 msgid "10" -msgstr "" +msgstr "10" #: ../../accounting/fiscality/taxes/taxes.rst:89 msgid "1,010.00" @@ -11828,7 +11829,7 @@ msgstr "" #: ../../accounting/overview/process_overview/customer_invoice.rst:111 msgid "15" -msgstr "" +msgstr "15" #: ../../accounting/overview/process_overview/customer_invoice.rst:117 msgid "Payment" diff --git a/locale/zh_CN/LC_MESSAGES/accounting.po b/locale/zh_CN/LC_MESSAGES/accounting.po index 410679514..0ce1ba110 100644 --- a/locale/zh_CN/LC_MESSAGES/accounting.po +++ b/locale/zh_CN/LC_MESSAGES/accounting.po @@ -30,7 +30,7 @@ # Connie Xiao , 2020 # liulixia , 2020 # guohuadeng , 2020 -# 演奏王 , 2020 +# 稀饭~~ , 2020 # Felix Yang - Elico Corp , 2020 # 老窦 北京 <2662059195@qq.com>, 2020 # Martin Trigaux, 2020 @@ -9569,19 +9569,19 @@ msgstr ":ref:`税务组 `" #: ../../accounting/fiscality/taxes/taxes.rst:48 msgid "Back end" -msgstr "" +msgstr "后端" #: ../../accounting/fiscality/taxes/taxes.rst:48 msgid "*Taxes* column on exported invoices" -msgstr "" +msgstr "出口发票的 *税金* 列" #: ../../accounting/fiscality/taxes/taxes.rst:48 msgid "Above the *Total* line on exported invoices" -msgstr "" +msgstr "出口发票的 *总计* 行上方" #: ../../accounting/fiscality/taxes/taxes.rst:53 msgid "Basic Options" -msgstr "" +msgstr "基本选项" #: ../../accounting/fiscality/taxes/taxes.rst:58 msgid "Tax Name" @@ -9592,7 +9592,7 @@ msgid "" "The **Tax Name** as you want to display it for backend users. This is the " ":ref:`label ` you see while editing Sales Orders, Invoices, " "Products, etc." -msgstr "" +msgstr "要为后端用户显示的 *税收名称* 。 这是您在编辑销售订单,发票,产品等时看到的 :ref:`label `。" #: ../../accounting/fiscality/taxes/taxes.rst:66 msgid "Tax Computation" @@ -9600,13 +9600,13 @@ msgstr "税金计算" #: ../../accounting/fiscality/taxes/taxes.rst:68 msgid "**Group of Taxes**" -msgstr "" +msgstr "**税种**" #: ../../accounting/fiscality/taxes/taxes.rst:70 msgid "" "The tax is a combination of multiple sub-taxes. You can add as many taxes " "you want, in the order you want them to be applied." -msgstr "" +msgstr "该税是多个子税的组合。 您可以按照要应用的顺序添加任意数量的税。" #: ../../accounting/fiscality/taxes/taxes.rst:74 msgid "" @@ -9614,6 +9614,8 @@ msgid "" "may impact the taxes' amounts computation, especially if one of the taxes " ":ref:`affects the base of the subsequent ones `." msgstr "" +"确保税收顺序是正确的,因为它们的顺序可能会影响税收金额的计算,尤其是如果其中一种税收 :ref:`影响随后税收基础的 ` 。" #: ../../accounting/fiscality/taxes/taxes.rst:78 msgid "**Fixed**" @@ -9623,27 +9625,27 @@ msgstr "**固定**" msgid "" "The tax has a fixed amount in the default currency. The amount remains the " "same, regardless of the Sales Price." -msgstr "" +msgstr "该税款具有默认货币的固定金额。 无论销售价格如何,金额都保持不变。" #: ../../accounting/fiscality/taxes/taxes.rst:83 msgid "" "For example, a product has a Sales Price of $1000, and we apply a *$10 " "fixed* tax. We then have:" -msgstr "" +msgstr "例如,某产品的销售价格为$ 1000,我们将应用 *$10固定* 税。 然后:" #: ../../accounting/fiscality/taxes/taxes.rst:86 #: ../../accounting/fiscality/taxes/taxes.rst:101 #: ../../accounting/fiscality/taxes/taxes.rst:115 #: ../../accounting/fiscality/taxes/taxes.rst:231 msgid "Product's Sales Price" -msgstr "" +msgstr "产品销售价" #: ../../accounting/fiscality/taxes/taxes.rst:86 #: ../../accounting/fiscality/taxes/taxes.rst:101 #: ../../accounting/fiscality/taxes/taxes.rst:115 #: ../../accounting/fiscality/taxes/taxes.rst:231 msgid "Price without tax" -msgstr "" +msgstr "价格不含税" #: ../../accounting/fiscality/taxes/taxes.rst:86 #: ../../accounting/fiscality/taxes/taxes.rst:101 @@ -9679,19 +9681,19 @@ msgstr "1,010.00" #: ../../accounting/fiscality/taxes/taxes.rst:92 msgid "**Percentage of Price**" -msgstr "" +msgstr "**价格百分比**" #: ../../accounting/fiscality/taxes/taxes.rst:94 msgid "" "The *Sales Price* is the taxable basis: the tax's amount is computed by " "multiplying the Sales Price by the tax's percentage." -msgstr "" +msgstr "*销售价格* 是应纳税的基础:税收金额是通过将销售价格乘以税收的百分比得出的。" #: ../../accounting/fiscality/taxes/taxes.rst:97 msgid "" "For example, a product has a Sales Price of $1000, and we apply a *10% of " "Price* tax. We then have:" -msgstr "" +msgstr "例如,某产品的销售价格为$ 1000,我们将应用 *价格的10%* 税。 然后:" #: ../../accounting/fiscality/taxes/taxes.rst:104 #: ../../accounting/overview/main_concepts/memento.rst:158 @@ -9707,23 +9709,23 @@ msgstr "100" #: ../../accounting/fiscality/taxes/taxes.rst:104 msgid "1,100.00" -msgstr "" +msgstr "1,100.00" #: ../../accounting/fiscality/taxes/taxes.rst:107 msgid "**Percentage of Price Tax Included**" -msgstr "" +msgstr "**已含价格税的百分比**" #: ../../accounting/fiscality/taxes/taxes.rst:109 msgid "" "The *Total* is the taxable basis: the tax's amount is a percentage of the " "Total." -msgstr "" +msgstr "*总计* 是应纳税的基础:税额是总计的百分比。" #: ../../accounting/fiscality/taxes/taxes.rst:111 msgid "" "For example, a product has a Sales Price of $1000, and we apply a *10% of " "Price Tax Included* tax. We then have:" -msgstr "" +msgstr "例如,某产品的销售价格为$ 1000,我们将应用 *含税价格的10%* 。 然后:" #: ../../accounting/fiscality/taxes/taxes.rst:118 msgid "111.11" @@ -9739,19 +9741,19 @@ msgstr "启用" #: ../../accounting/fiscality/taxes/taxes.rst:126 msgid "Only **Active** taxes can be added to new documents." -msgstr "" +msgstr "只能将 **有效** 税添加到新文档中。" #: ../../accounting/fiscality/taxes/taxes.rst:129 msgid "" "It is not possible to delete taxes that have already been used. Instead, you" " can deactivate them to prevent future use." -msgstr "" +msgstr "无法删除已经使用的税款。 相反,您可以停用它们以防止将来使用。" #: ../../accounting/fiscality/taxes/taxes.rst:133 msgid "" "This field can be modified from the *List View*. See :ref:`above " "` for more information." -msgstr "" +msgstr "可以从 *列表视图* 修改此字段。 有关更多信息,请 :ref:`参见 ` 。" #: ../../accounting/fiscality/taxes/taxes.rst:139 msgid "Tax Scope" @@ -9761,19 +9763,19 @@ msgstr "税范围" msgid "" "The **Tax Scope** determines the tax's application, which also restricts " "where it is displayed." -msgstr "" +msgstr "*税额范围* 确定税额的应用程序,这也限制了它的显示位置。" #: ../../accounting/fiscality/taxes/taxes.rst:143 msgid "**Sales**: Customer Invoices, Product's Customer Taxes, etc." -msgstr "" +msgstr "**销售** :客户发票,产品的客户税金等。" #: ../../accounting/fiscality/taxes/taxes.rst:144 msgid "**Purchase**: Vendor Bills, Product's Vendor Taxes, etc." -msgstr "" +msgstr "**购买** :供应商帐单,产品的供应商税等 " #: ../../accounting/fiscality/taxes/taxes.rst:145 msgid "**None**" -msgstr "" +msgstr "**没有**" #: ../../accounting/fiscality/taxes/taxes.rst:148 msgid "" @@ -9781,32 +9783,33 @@ msgid "" "Taxes ` but that you don't want to list along with other " "Sales or Purchase taxes." msgstr "" +"您可以使用 **没有** 税款在您想要包括的 :ref:`税组` 当您不想将其与其他销售或购买税一起列出时。" #: ../../accounting/fiscality/taxes/taxes.rst:154 msgid "Definition tab" -msgstr "" +msgstr "定义选项卡" #: ../../accounting/fiscality/taxes/taxes.rst:156 msgid "" "Allocate with precision the amount of the taxable basis or percentages of " "the computed tax to multiple accounts and Tax Grids." -msgstr "" +msgstr "精确地将应税基础的金额或计算所得税额的百分比分配给多个帐户和税收网。" #: ../../accounting/fiscality/taxes/taxes.rst:163 msgid "**Based On**:" -msgstr "" +msgstr "**基于**:" #: ../../accounting/fiscality/taxes/taxes.rst:165 msgid "Base: the price on the invoice line" -msgstr "" +msgstr "基数:发票行上的价格" #: ../../accounting/fiscality/taxes/taxes.rst:166 msgid "% of tax: a percentage of the computed tax." -msgstr "" +msgstr "税收比率%:计算税收的百分比。" #: ../../accounting/fiscality/taxes/taxes.rst:168 msgid "**Account**: if defined, an additional Journal Item is recorded." -msgstr "" +msgstr "**帐户** :如果定义,则记录一个附加日记帐项目。" #: ../../accounting/fiscality/taxes/taxes.rst:169 msgid "" @@ -9814,10 +9817,12 @@ msgid "" "<../../reporting/declarations/tax_returns>` automatically, according to your" " country's regulations." msgstr "" +"**税收网格**:用于根据您所在国家/地区的法规自动生成 :doc:`税收报告 " +"<../../reporting/declarations/tax_returns>` 。" #: ../../accounting/fiscality/taxes/taxes.rst:175 msgid "Advanced Options tab" -msgstr "" +msgstr "高级选项卡" #: ../../accounting/fiscality/taxes/taxes.rst:180 msgid "Label on Invoices" @@ -9829,6 +9834,8 @@ msgid "" "column. This is the :ref:`label ` visible to *front end* " "users, on exported invoices, on their Customer Portals, etc." msgstr "" +"税的标签,显示在 **税** 列的每个发票行上。 这是 *前端* 用户导出的发票时,在客户门户上可见的:ref:`标签` " +"。" #: ../../accounting/fiscality/taxes/taxes.rst:193 msgid "Tax Group" @@ -9840,6 +9847,7 @@ msgid "" ":ref:`label ` displayed above the *Total* line on exported " "invoices, and the Customer Portals." msgstr "" +"选择税收所属的 **税组**。 税组名称是上方的 :ref:`标签` 显示在已导出发票和客户门户的 *总计* 行。" #: ../../accounting/fiscality/taxes/taxes.rst:198 msgid "" @@ -9847,6 +9855,8 @@ msgid "" "when you must record differently the same tax according to :doc:`Fiscal " "Positions `." msgstr "" +"税组包括相同税的不同迭代。 当您必须根据以下方式记录相同的税项时,此功能很有用 :doc:`Fiscal Positions " +"`." #: ../../accounting/fiscality/taxes/taxes.rst:205 msgid "" @@ -9856,6 +9866,9 @@ msgid "" "Invoice ` indicates *0% EU*, and the Tax Group name, " "above the *Total* line, indicates *0%*." msgstr "" +"在上面的示例中,我们看到欧洲内部社区客户的税率为0%。 它记录特定帐户和特定税额上的金额。 不过,对客户来说,这是0%的税。 这就是为什么 " +":ref:`发票上的标签 ` 指示 * 0%EU* ,而 *总计* 行上方的税组名称指示 *0%* " +"的原因。" #: ../../accounting/fiscality/taxes/taxes.rst:213 msgid "Include in Analytic Cost" @@ -9865,7 +9878,7 @@ msgstr "包含在分析成本" msgid "" "With this option activated, the tax's amount is assigned to the same " "**Analytic Account** as the invoice line." -msgstr "" +msgstr "启用此选项后,税额将分配给与发票行相同的 *分析帐户* 。" #: ../../accounting/fiscality/taxes/taxes.rst:221 msgid "Included in Price" @@ -9875,17 +9888,17 @@ msgstr "包含在价格中" msgid "" "With this option activated, the total (including the tax) equals the **Sales" " Price**." -msgstr "" +msgstr "启用此选项后,总计(含税)等于**销售价格** 。" #: ../../accounting/fiscality/taxes/taxes.rst:225 msgid ":dfn:`Total = Sales Price = Computed Tax-Excluded price + Tax`" -msgstr "" +msgstr ":dfn:`总计 = 销售价格 = 计算的不含税价格 + 税`" #: ../../accounting/fiscality/taxes/taxes.rst:227 msgid "" "For example, a product has a Sales Price of $1000, and we apply a *10% of " "Price* tax, which is *included in the price*. We then have:" -msgstr "" +msgstr "例如,某产品的销售价格为$ 1000,我们将应用 *价格的10%* 税,*价格中已包括*。 然后我:" #: ../../accounting/fiscality/taxes/taxes.rst:234 msgid "900.10" @@ -9897,13 +9910,13 @@ msgstr "90.9" #: ../../accounting/fiscality/taxes/taxes.rst:234 msgid "1,000.00" -msgstr "" +msgstr "1,000.00" #: ../../accounting/fiscality/taxes/taxes.rst:238 msgid "" "If you need to define prices accurately, both tax-included and tax-excluded," " please refer to the following documentation: :doc:`B2B_B2C`." -msgstr "" +msgstr "如果您需要准确定义价格(含税价和不含税价),请参考以下文档: :doc:`B2B_B2C`。" #: ../../accounting/fiscality/taxes/taxes.rst:242 msgid "" @@ -9913,6 +9926,8 @@ msgid "" "Invoices`, and select *Tax-Included* in the **Line Subtotals Tax Display** " "field, then click on *Save*." msgstr "" +"**发票** :默认情况下,发票上显示的行小计为 *不含税* 。 要显示 *含税* 行分类显示,请转到::menuselection:`会计 --> " +"配置 --> 设置 --> 客户发票` ,然后在 *行分类税务显示* 字段中选择 *含税* ,然后点击 *保存* 。" #: ../../accounting/fiscality/taxes/taxes.rst:246 msgid "" @@ -9921,6 +9936,8 @@ msgid "" ":menuselection:`Website --> Configuration --> Settings --> Pricing`, and " "select *Tax-Included* in the **Product Prices** field, then click on *Save*." msgstr "" +"**电子商务** :默认情况下,您的电子商务网站上显示的价格为 *不含税* 。 要显示 *含税* 价格,请转到 " +":menuselection:`网站--> 配置 --> 设置 --> 定价` ,然后在 *产品价格* 字段中选择 *含税* ,然后单击 *保存* 。" #: ../../accounting/fiscality/taxes/taxes.rst:253 msgid "Affect Base of Subsequent Taxes" @@ -9930,27 +9947,27 @@ msgstr "影响后续税金的基础" msgid "" "With this option, the total tax-included becomes the taxable basis for the " "other taxes applied to the same product." -msgstr "" +msgstr "使用此选项,已含税总额成为适用于同一产品的其他税种的应税基础。" #: ../../accounting/fiscality/taxes/taxes.rst:258 msgid "" "You can configure a new :ref:`Group of Taxes ` to include" " this tax, or add it directly to a product line." -msgstr "" +msgstr "您可以配置新的 :ref:`税组 ` 来包括此税,或直接将其添加到产品系列中。" #: ../../accounting/fiscality/taxes/taxes.rst:266 msgid "" "The order in which you add the taxes on a product line has no effect on how " "amounts are computed. If you add taxes directly on a product line, only the " "tax sequence determines the order in which they are applied." -msgstr "" +msgstr "在产品线上添加税金的顺序对计算金额的方式没有影响。如果直接在产品列上添加税收,则只有税收序列决定应用它们的顺序。" #: ../../accounting/fiscality/taxes/taxes.rst:270 msgid "" "To reorder the sequence, go to :menuselection:`Accounting --> Configuration " "--> Taxes`, and drag and drop the lines with the handles next to the tax " "names." -msgstr "" +msgstr "要重新排序序列,请转到 :menuselection:会计 --> 设置 --> 税收` ,然后拖放带有税款名称的行的以重新排序。" #: ../../accounting/fiscality/taxes/taxes.rst:282 msgid ":doc:`../../reporting/declarations/tax_returns`" @@ -9958,14 +9975,14 @@ msgstr ":doc:`../../reporting/declarations/tax_returns`" #: ../../accounting/fiscality/taxes/vat_validation.rst:3 msgid "VIES VAT numbers validation" -msgstr "" +msgstr "VIES 增值税号验证" #: ../../accounting/fiscality/taxes/vat_validation.rst:5 msgid "" "**VAT Information Exchange System** - abbreviated **VIES** - is a tool " "provided by the European Commission that allows you to check the validity of" " VAT numbers of companies registered in the European Union." -msgstr "" +msgstr "**VAT信息交换系统** - 简称 **VIES** - 是欧盟委员会提供的工具,可让您检查在欧盟注册的公司的增值税号的有效性。" #: ../../accounting/fiscality/taxes/vat_validation.rst:9 msgid "" @@ -9973,6 +9990,7 @@ msgid "" "This helps you make sure that your contacts provided you with a valid VAT " "number without leaving Odoo interface." msgstr "" +"保存联系人时,Odoo提供了 **验证增值税号** 的功能。 这可以帮助您确保您的联系人在不离开Odoo界面的情况下为您提供了有效的增值税号。" #: ../../accounting/fiscality/taxes/vat_validation.rst:15 msgid "" @@ -9980,34 +9998,37 @@ msgid "" "--> Settings --> Taxes`, enable the **Verify VAT Numbers** feature, and " "click on *Save*." msgstr "" +"要启用此功能,请转到 :menuselection:`会计--> 设置 --> 设定 --> 税收`, 启用 **验证增值税号** 功能,然后单击 " +"*保存* 。" #: ../../accounting/fiscality/taxes/vat_validation.rst:23 msgid "VAT Number validation" -msgstr "" +msgstr "增值税号码验证" #: ../../accounting/fiscality/taxes/vat_validation.rst:25 msgid "" "Whenever you create or modify a contact, make sure to fill out the " "**Country** and **VAT** fields." -msgstr "" +msgstr "每当您创建或修改联系人时,请务必填写 **国家/地区**和 **增值税** 字段。" #: ../../accounting/fiscality/taxes/vat_validation.rst:31 msgid "" "When you click on *Save*, Odoo runs a VIES VAT number check, and displays an" " error message if the VAT number is invalid." -msgstr "" +msgstr "当您单击 *保存* 时,Odoo将运行VIES增值税号检查,如果增值税号无效,则会显示一条错误消息。" #: ../../accounting/fiscality/taxes/vat_validation.rst:39 msgid "" "This tool checks the VAT number's validity but does not check the other " "fields' validity." -msgstr "" +msgstr "该工具可检查增值税号的有效性,但不检查其他字段的有效性。" #: ../../accounting/fiscality/taxes/vat_validation.rst:43 msgid "" "`European Commission: VIES search engine " "`__" msgstr "" +"`欧盟委员会:VIES搜索引擎`__" #: ../../accounting/others.rst:3 #: ../../accounting/receivables/customer_invoices/overview.rst:109 @@ -10020,7 +10041,7 @@ msgstr "顾问" #: ../../accounting/others/adviser/budget.rst:3 msgid "Manage a financial budget" -msgstr "" +msgstr "管理财务预算" #: ../../accounting/others/adviser/budget.rst:8 msgid "" @@ -10238,7 +10259,7 @@ msgstr "分析" #: ../../accounting/others/analytic/purchases_expenses.rst:3 msgid "Track costs of purchases, expenses, subcontracting" -msgstr "" +msgstr "跟踪采购成本,费用,分包" #: ../../accounting/others/analytic/purchases_expenses.rst:8 msgid "" @@ -10426,7 +10447,7 @@ msgstr "收入的话, 在发票菜单下开具'咨询包'的发票, 将发票行 #: ../../accounting/others/analytic/timesheets.rst:3 msgid "Track costs of human resources with timesheets" -msgstr "" +msgstr "通过工时单跟踪人力资源成本" #: ../../accounting/others/analytic/timesheets.rst:5 msgid "" @@ -11739,7 +11760,7 @@ msgstr ":doc:`../../bank/reconciliation/use_cases` " #: ../../accounting/others/multicurrencies/how_it_works.rst:3 msgid "Odoo's multi-currency system" -msgstr "" +msgstr "Odoo的多币种系统" #: ../../accounting/others/multicurrencies/how_it_works.rst:8 msgid "" @@ -11945,7 +11966,7 @@ msgstr ":doc:`exchange` " #: ../../accounting/others/multicurrencies/invoices_payments.rst:3 msgid "Manage invoices and payment in multiple currencies" -msgstr "" +msgstr "管理多种货币的发票和付款" #: ../../accounting/others/multicurrencies/invoices_payments.rst:8 msgid "" @@ -12367,7 +12388,7 @@ msgstr ":doc:`../../receivables/customer_invoices/deferred_revenues`" #: ../../accounting/overview/getting_started/setup.rst:3 msgid "Initial setup of Odoo Accounting and Odoo Invoicing" -msgstr "" +msgstr "Odoo会计和Odoo发票的初始设置" #: ../../accounting/overview/getting_started/setup.rst:5 msgid "" @@ -12376,12 +12397,13 @@ msgid "" " get started. This onboarding banner is displayed until you choose to close " "it." msgstr "" +"首次打开Odoo 会计应用程序时,*会计概观* 页面会出现逐步入门指南,该向导可帮助您使用会计应用。 该入门横幅将一直显示,直到您选择关闭它为止。" #: ../../accounting/overview/getting_started/setup.rst:9 msgid "" "The settings visible in the onboarding banner can still be modified later by" " going to :menuselection:`Accounting --> Configuration --> Settings`." -msgstr "" +msgstr "以后仍然可以通过:menuselection:`会计 --> 设置 --> 设定` 来修改入门横幅中可见的设置。" #: ../../accounting/overview/getting_started/setup.rst:13 msgid "" @@ -12392,31 +12414,33 @@ msgid "" "<../../fiscal_localizations/overview/fiscal_localization_packages>` for more" " information about Fiscal Localization Packages." msgstr "" +"Odoo会计 会根据在创建数据库时选择的国家/地区为您的公司自动安装适当的 *财务本地化软件包* 。 这样,正确的帐户,报告和税款就可以使用了。 " +":doc:`:点击此处<../../fiscal_localizations/overview/fiscal_localization_packages>`,以获取有关财政本地化软件包的更多信息。" #: ../../accounting/overview/getting_started/setup.rst:20 msgid "Accounting onboarding banner" -msgstr "" +msgstr "会计入门横幅" #: ../../accounting/overview/getting_started/setup.rst:22 msgid "" "The step-by-step Accounting onboarding banner is composed of four steps:" -msgstr "" +msgstr "分步记帐入门横幅由四个步骤组成:" #: ../../accounting/overview/getting_started/setup.rst:28 msgid ":ref:`accounting-setup-company`" -msgstr "" +msgstr ":ref:`accounting-setup-company`" #: ../../accounting/overview/getting_started/setup.rst:29 msgid ":ref:`accounting-setup-bank`" -msgstr "" +msgstr ":ref:`accounting-setup-bank`" #: ../../accounting/overview/getting_started/setup.rst:30 msgid ":ref:`accounting-setup-periods`" -msgstr "" +msgstr ":ref:`accounting-setup-periods`" #: ../../accounting/overview/getting_started/setup.rst:31 msgid ":ref:`accounting-setup-chart`" -msgstr "" +msgstr ":ref:`accounting-setup-chart`" #: ../../accounting/overview/getting_started/setup.rst:36 #: ../../accounting/overview/getting_started/setup.rst:140 @@ -12430,6 +12454,8 @@ msgid "" "number. These details are then displayed on your documents, such as on " "invoices." msgstr "" +"通过此菜单,您可以添加公司的详细信息,例如名称,地址,商标,网站,电话号码,电子邮件地址以及税号或增值税号。 " +"然后,这些详细信息将显示在您的文档(例如发票)上。" #: ../../accounting/overview/getting_started/setup.rst:47 msgid "" @@ -12437,6 +12463,7 @@ msgid "" "General Settings --> Settings --> Companies` and clicking on **Update " "Info**." msgstr "" +"您还可以通过以下方式更改这些设置 :menuselection:`设定 --> 常规设置 --> 设定 --> 然后点击**更新信息** 。" #: ../../accounting/overview/getting_started/setup.rst:53 msgid "Bank Account" @@ -12447,20 +12474,20 @@ msgid "" "Connect your bank account to your database and have your bank statements " "synced automatically. To do so, find your bank in the list, click on " "*Connect*, and follow the instructions on-screen." -msgstr "" +msgstr "将您的银行帐户连接到数据库,并自动同步银行对帐单。 为此,请在列表中找到您的银行,单击 *连接* ,然后按照屏幕上的说明进行操作。" #: ../../accounting/overview/getting_started/setup.rst:59 msgid "" ":doc:`Click here <../../bank/feeds/bank_synchronization>` for more " "information about this feature." -msgstr "" +msgstr ":doc:`点击此处<../../ bank / feeds / bank_synchronization>`了解有关此功能的更多信息。" #: ../../accounting/overview/getting_started/setup.rst:61 msgid "" "If your Bank Institution can’t be synchronized automatically, or if you " "prefer not to sync it with your database, you may also configure your bank " "account manually by clicking on *Create it*, and filling out the form." -msgstr "" +msgstr "如果您的银行机构不能自动同步,或者您不想将其与数据库同步,则也可以通过单击 *创建* ,并填写表格来手动配置银行帐户。" #: ../../accounting/overview/getting_started/setup.rst:76 msgid "" @@ -12468,12 +12495,13 @@ msgid "" ":menuselection:`Accounting --> Configuration`, and clicking on *Add a Bank " "Account*." msgstr "" +"您可以使用此工具根据需要添加任意数量的银行帐户,方法是:转到 :menuselection:`会计 --> 配置”,然后单击 *添加银行帐户* 。" #: ../../accounting/overview/getting_started/setup.rst:78 msgid "" ":doc:`Click here <../../bank/setup/bank_accounts>` for more information " "about Bank Accounts." -msgstr "" +msgstr ":doc:`点击此处 <../../bank/setup/bank_accounts>` 了解有关银行帐户的更多信息。" #: ../../accounting/overview/getting_started/setup.rst:84 msgid "Accounting Periods" @@ -12484,42 +12512,42 @@ msgid "" "Define here your **Fiscal Years**’ opening and closing dates, which are used" " to generate reports automatically, and your **Tax Return Periodicity**, " "along with a reminder to never miss a tax return deadline." -msgstr "" +msgstr "在此定义您的 **会计年度** 的开始和结束日期(用于自动生成报告)以及 **纳税申报周期** ,并提醒您不要错过纳税申报截止日期。" #: ../../accounting/overview/getting_started/setup.rst:90 msgid "" "By default, the opening date is set on the 1st of January and the closing " "date on the 31st of December, as this is the most common use." -msgstr "" +msgstr "默认情况下,开始日期设置为1月1日,结束日期设置为12月31日,因为这是最常见的用法。" #: ../../accounting/overview/getting_started/setup.rst:94 msgid "" "You can also change these settings by going to :menuselection:`Accounting " "--> Configuration --> Settings --> Fiscal Periods` and updating the values." -msgstr "" +msgstr "您也可以通过:menuselection:`会计 --> 设置 --> 设定 --> 财政时期` 更新值来更改这些设置。" #: ../../accounting/overview/getting_started/setup.rst:102 msgid "" "With this menu, you can add accounts to your **Chart of Accounts** and " "indicate their initial opening balances." -msgstr "" +msgstr "使用此菜单,您可以将帐户添加到 **会计科目表** 中,并指示其初始期初余额。" #: ../../accounting/overview/getting_started/setup.rst:105 msgid "" "Basic settings are displayed on this page to help you review your Chart of " "Accounts. To access all the settings of an account, click on the *double " "arrow button* at the end of the line." -msgstr "" +msgstr "基本设置显示在此页面上,以帮助您查看会计科目表。 要访问帐户的所有设置,请单击行末的 *双箭头按钮* 。" #: ../../accounting/overview/getting_started/setup.rst:113 msgid "" ":doc:`Click here ` for more information on how to " "configure your Chart of Accounts." -msgstr "" +msgstr ":doc:`点击这里 ` 了解有关如何配置会计科目表的更多信息。" #: ../../accounting/overview/getting_started/setup.rst:117 msgid "Invoicing onboarding banner" -msgstr "" +msgstr "发票入门导向横幅" #: ../../accounting/overview/getting_started/setup.rst:119 msgid "" @@ -12528,16 +12556,17 @@ msgid "" "onboarding banner* is the one that welcomes you if you use the Invoicing app" " rather than the Accounting app." msgstr "" +"还有另一个分步入门指南,可帮助您利用Odoo发票和会计应用程序。 如果您使用发票应用程序, *发票入门横幅* 会协助你,而不是会计入门横幅。" #: ../../accounting/overview/getting_started/setup.rst:123 msgid "" "If you have Odoo Accounting installed on your database, you can reach it by " "going to :menuselection:`Accounting --> Customers --> Invoices`." -msgstr "" +msgstr "如果您的数据库上安装了Odoo会计则可以通过::menuselection:`会计 --> 客户 --> 发票`。" #: ../../accounting/overview/getting_started/setup.rst:126 msgid "The Invoicing onboarding banner is composed of four main steps:" -msgstr "" +msgstr "发票入门横幅由四个主要步骤组成:" #: ../../accounting/overview/getting_started/setup.rst:132 msgid ":ref:`invoicing-setup-company`" @@ -12549,7 +12578,7 @@ msgstr ":ref:`invoicing-setup-layout`" #: ../../accounting/overview/getting_started/setup.rst:134 msgid ":ref:`invoicing-setup-payment`" -msgstr "" +msgstr ":ref:`invoicing-setup-payment`" #: ../../accounting/overview/getting_started/setup.rst:135 msgid ":ref:`invoicing-setup-sample`" @@ -12559,7 +12588,7 @@ msgstr ":ref:`invoicing-setup-sample`" msgid "" "This form is the same as :ref:`the one presented in the Accounting " "onboarding banner `." -msgstr "" +msgstr "此表单与 :ref:`会计入门横幅中显示的表单相同 `。" #: ../../accounting/overview/getting_started/setup.rst:148 msgid "Invoice Layout" @@ -12570,7 +12599,7 @@ msgid "" "With this tool, you can design the appearance of your documents by selecting" " which layout tamplate, paper format, colors, font, and logo you want to " "use." -msgstr "" +msgstr "使用此工具,您可以通过选择要使用的布局模板,纸张格式,颜色,字体和商标来设计文档的外观。" #: ../../accounting/overview/getting_started/setup.rst:153 msgid "" @@ -12580,6 +12609,9 @@ msgid "" "the values you previously configured in the :ref:`Company Data `." msgstr "" +"您也可以添加 *公司标语* 和文档的 *页脚* 。 " +"请注意,Odoo会根据您先前在公司数据中配置的信息,自动将公司的电话号码,电子邮件,网站URL和税号(或增值税号)添加到页脚中。 " +"`." #: ../../accounting/overview/getting_started/setup.rst:163 msgid "" @@ -12587,12 +12619,14 @@ msgid "" "Condition** in the footer. This way, your contacts can find the full content" " of your GT&C online without having to print them on the invoices you issue." msgstr "" +"在页脚中添加您的 *银行帐号* 和 *通用条款和条件* 的链接 。 " +"这样,您的联系人就可以在线查找您的通用条款和条件的全部内容,而不必在您开具的发票上打印它们。" #: ../../accounting/overview/getting_started/setup.rst:168 msgid "" "These settings can also be modified by going to :menuselection:`Settings -->" " General Settings`, under the *Business Documents* section." -msgstr "" +msgstr "这些设置也可以通过在 *业务文档* 部分下转到:menuselection:`“设置 --> 常规设置` 来修改。" #: ../../accounting/overview/getting_started/setup.rst:174 msgid "Payment Method" @@ -12602,14 +12636,14 @@ msgstr "付款方式" msgid "" "This menu helps you configure the payment methods with which your customers " "can pay you." -msgstr "" +msgstr "此菜单可帮助您配置客户的付款方式。" #: ../../accounting/overview/getting_started/setup.rst:179 msgid "" "Configuring a *Payment Acquirer* with this tool also activates the *Invoice " "Online Payment* option automatically. With this, users can directly pay " "online, from their Customer Portal." -msgstr "" +msgstr "使用此工具配置 *付款收单行* 也会自动激活 *发票在线付款* 选项。 这样,用户可以从其客户门户网站直接在线付款。" #: ../../accounting/overview/getting_started/setup.rst:185 msgid "Sample Invoice" @@ -12619,7 +12653,7 @@ msgstr "发票示例" msgid "" "Send yourself a sample invoice by email to make sure everything is correctly" " configured." -msgstr "" +msgstr "通过电子邮件发送示例发票,以确保所有内容均已正确配置。" #: ../../accounting/overview/getting_started/setup.rst:190 #: ../../accounting/payables/pay/sepa.rst:130 @@ -13826,7 +13860,7 @@ msgstr "应付账款" #: ../../accounting/payables/misc/forecast.rst:3 msgid "Forecast future bills to pay" -msgstr "" +msgstr "预测将来要支付的账单" #: ../../accounting/payables/misc/forecast.rst:5 msgid "" @@ -14124,7 +14158,7 @@ msgstr "`核对银行对账单`_" #: ../../accounting/payables/pay/multiple.rst:3 msgid "Pay several bills at once" -msgstr "" +msgstr "一次支付几笔账单" #: ../../accounting/payables/pay/multiple.rst:5 msgid "" @@ -15111,7 +15145,7 @@ msgstr "例如,你可将此科目选择为某产品默认的**费用科目** #: ../../accounting/payables/supplier_bills/manage.rst:3 msgid "Manage vendor Bills" -msgstr "" +msgstr "管理供应商账单" #: ../../accounting/payables/supplier_bills/manage.rst:5 msgid "" @@ -15443,28 +15477,28 @@ msgstr "" #: ../../accounting/payables/supplier_bills/ocr.rst:3 msgid "Digitize Vendor Bills with Optical Character Recognition (OCR)" -msgstr "" +msgstr "使用光学字符识别(OCR)数字化供应商账单" #: ../../accounting/payables/supplier_bills/ocr.rst:5 msgid "" "Encoding bills manually can be a time-consuming task. Having a solution that" " allows you to digitize them and automatically import the data to your " "database reduces errors and saves you time." -msgstr "" +msgstr "手动对账单进行编码可能是一项耗时的工作。 有一种解决方案可让您将其数字化并自动将数据导入数据库,从而减少了错误并节省了时间。" #: ../../accounting/payables/supplier_bills/ocr.rst:9 msgid "Set up the feature" -msgstr "" +msgstr "功能设置" #: ../../accounting/payables/supplier_bills/ocr.rst:11 msgid "" "Go to :menuselection:`Accounting --> Settings --> Bill Digitalization`, and " "choose whether the bills should be processed automatically or manually." -msgstr "" +msgstr "转到: :menuselection:`会计 --> 设定 --> 帐单数字化` ,然后选择应自动还是手动处理账单。" #: ../../accounting/payables/supplier_bills/ocr.rst:19 msgid "Start digitizing your bills" -msgstr "" +msgstr "开始数字化你的账单" #: ../../accounting/payables/supplier_bills/ocr.rst:21 msgid "" @@ -15473,25 +15507,27 @@ msgid "" "processes the documents automatically, or you need to click on *Send for " "Digitalization* to do it manually." msgstr "" +"扫描帐单,然后转到 :menuselection:`会计 --> 供应商 --> 帐单` 并上传您的文档。 " +"根据您的配置,它要么自动处理文档,或者您需要单击 *发送数字化* 以手动进行。" #: ../../accounting/payables/supplier_bills/ocr.rst:26 msgid "" "You can also create a vendor bill through the *Documents* app or by using an" " email alias on your journals." -msgstr "" +msgstr "您也可以通过 *文件管理* 应用程序或在日记中使用电子邮件别名来创建供应商账单。" #: ../../accounting/payables/supplier_bills/ocr.rst:29 msgid "" "Once the data is extracted from the PDF, you can correct it if necessary by " "clicking on the respective tag (available in *Edit* mode), and selecting the" " right information instead." -msgstr "" +msgstr "一旦数据从PDF中提取出来,如果有必要,您可以通过单击相应的标记 (在 *编辑* 模式下可用) 并选择正确的信息来纠正它。" #: ../../accounting/payables/supplier_bills/ocr.rst:38 msgid "" "The more bills you scan, the better the system gets at identifying the " "correct data." -msgstr "" +msgstr "你扫描的账单越多,系统识别正确数据的能力就越强。" #: ../../accounting/payables/supplier_bills/ocr.rst:41 #: ../../accounting/receivables/customer_invoices/snailmail.rst:34 @@ -15503,7 +15539,7 @@ msgid "" "The *Bill Digitalization* is an *In-App Purchase (IAP)* service which " "requires prepaid credits to work. Digitalizing one document consumes one " "credit." -msgstr "" +msgstr "*账单数字化* 是一项 *应用内购买(IAP)* 服务,需要预付费才能使用。数字化一个文档消耗一个积分。" #: ../../accounting/payables/supplier_bills/ocr.rst:47 msgid "" @@ -15511,6 +15547,8 @@ msgid "" "Settings --> Bill Digitalization` and click on *Buy credits*, or go to " ":menuselection:`Settings --> Odoo IAP` and click on *View My Services*." msgstr "" +"如要购买积分,请转到:menuselection:`会计 --> 配置 --> 设置 --> 帐单数字化` ,然后单击 *购买积分* ,或转到 " +":menuselection:`设置 --> Odoo IAP` ,然后单击 *查看我的服务* 。" #: ../../accounting/payables/supplier_bills/ocr.rst:50 #: ../../accounting/receivables/customer_invoices/snailmail.rst:43 @@ -15534,7 +15572,7 @@ msgstr "采购收据" msgid "" "**Purchase Receipts** are not invoices but rather confirmations of received " "payments, such as a ticket or a receipt." -msgstr "" +msgstr "**购买收据** 不是发票,而是收款确认函,例如票或收据。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:8 msgid "" @@ -15543,6 +15581,7 @@ msgid "" " an invoice is issued to you and that the amount is first credited on a debt" " account before a later payment reconciliation." msgstr "" +"当您直接用公司的钱支付某项费用时,将使用此功能。另一方面,*卖方账单* 在给你开发票时被记录,在以后的付款调节之前,这个金额被先贷记到一个债务账户上。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:13 msgid "" @@ -15551,6 +15590,8 @@ msgid "" "Click :doc:`here <../../../expense/expense>` for more information on how to " "use Odoo Expenses." msgstr "" +"员工支付的费用可以使用 **Odoo报销** 这是一款专门用于审批此类费用和支付管理的应用程序。点击 " +":doc:`点击此处<../../../expense/expense>` 了解如何使用Odoo报销的更多信息。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:18 msgid "Register a receipt" @@ -15561,28 +15602,29 @@ msgid "" "To record a new receipt, go to :menuselection:`Accounting --> Vendors --> " "Receipts`, click on *Create*, fill out the form, and click on *Post*." msgstr "" +"要记录新的收据,请进入 :menuselection:`会计 --> 供应商 --> 收据`,点击 *创建* ,填写表格,然后点击 *发布* 。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:27 msgid "" "You can register the payment by clicking on *Register Payment*, then filling" " out the payment's details, and clicking on *Validate*." -msgstr "" +msgstr "您可以点击*注册付款*,然后填写付款的详细信息,然后点击 *验证* 来注册付款。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:31 msgid "Edit the Journal Entry before posting it" -msgstr "" +msgstr "在发布之前编辑日记帐" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:33 msgid "" "Once you have filled out the *Invoice Lines* tab, you can modify the " "**Journal Entry** before you post it." -msgstr "" +msgstr "填写 *发票行* 选项卡后,您可以在发布 *日记帐分录* 之前对其进行修改。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:36 msgid "" "To do so, click on the **Journal Items** tab, change the accounts and values" " according to your needs, and click on *Post*." -msgstr "" +msgstr "要做到这一点,单击 **日记帐项目** 选项卡,根据您的需要更改帐户和值,然后单击 *发布* 。" #: ../../accounting/payables/supplier_bills/purchase_receipts.rst:44 msgid ":doc:`manage`" @@ -16784,14 +16826,14 @@ msgstr "客户付款" #: ../../accounting/receivables/customer_payments/batch.rst:3 msgid "Batch Payments: Batch Deposits (checks, cash etc.)" -msgstr "" +msgstr "批量支付:批量存款(支票、现金等)" #: ../../accounting/receivables/customer_payments/batch.rst:5 msgid "" "A **Batch Deposit** groups multiple payments in a single batch. This allows " "you to deposit several payments into your bank account with a single " "transaction. This is particularly useful to deposit cash and checks." -msgstr "" +msgstr "一个 **批量存款** 在一个批次中对多个付款进行分组。这允许你在一次交易中将几笔付款存入你的银行账户。这对存入现金和支票特别有用。" #: ../../accounting/receivables/customer_payments/batch.rst:9 msgid "" @@ -16801,6 +16843,7 @@ msgid "" " bank reconciliation to match the single bank statement line with all the " "transactions listed in the batch deposit." msgstr "" +"该功能允许您列出几个客户付款并打印一张**存款凭条**。此票据包含交易的详细信息和批量存款的引用。然后,您可以在银行余额调节期间选择此引用,以便将单个银行对账单行与批量存款中列出的所有交易相匹配。" #: ../../accounting/receivables/customer_payments/batch.rst:17 msgid "" @@ -16808,6 +16851,8 @@ msgid "" "--> Settings --> Customer Payments`, activate **Batch Payments**, and click " "on *Save*." msgstr "" +"要激活该功能,请进入 :menuselection:`会计 --> 配置 --> 设定--> 客户付款`,激活 **批量付款** ,然后点击 *保存* " +"。" #: ../../accounting/receivables/customer_payments/batch.rst:21 msgid "Payment Method Types" @@ -16817,7 +16862,7 @@ msgstr "付款方式类型" msgid "" "To record new payments as part of a Batch Deposit, you have to configure " "first the Journal on which you record them." -msgstr "" +msgstr "要将新付款记录为批量存款的一部分,您必须首先配置要记录新付款的日记帐。" #: ../../accounting/receivables/customer_payments/batch.rst:26 msgid "" @@ -16826,20 +16871,22 @@ msgid "" "Settings* tab. In the *Payment Method Types* section, enable **Batch " "Deposit**, and click on *Save*." msgstr "" +"为此,请转到 :menuselection:`会计 --> 配置 --> 日记帐`,打开要编辑的日志,单击 *编辑* ,然后打开 *高级设置* 标签。 " +"在 *付款方式类型* 部分中,启用 *批量存款* ,然后单击*保存* 。" #: ../../accounting/receivables/customer_payments/batch.rst:35 msgid "" "Your main bank accounts are automatically configured to process batch " "payments when you activate the feature." -msgstr "" +msgstr "激活该功能后,您的主要银行帐户将自动配置为处理批量付款。" #: ../../accounting/receivables/customer_payments/batch.rst:39 msgid "Deposit multiple payments in batch" -msgstr "" +msgstr "批量存入多笔款项" #: ../../accounting/receivables/customer_payments/batch.rst:42 msgid "Record payments to deposit in batch" -msgstr "" +msgstr "记录要分批的付款" #: ../../accounting/receivables/customer_payments/batch.rst:44 msgid "" @@ -16849,18 +16896,20 @@ msgid "" "appropriate Journal linked to your bank account and select *Batch Deposit* " "as Payment Method." msgstr "" +":doc:`注册付款 ` 在您打算将其存入银行帐户的银行帐户上,打开已收到付款的 *客户发票* ,然后单击 *注册付款* 。 " +"在此处,选择链接到您的银行帐户的适当日记帐,然后选择 *批量存款* 作为付款方式。" #: ../../accounting/receivables/customer_payments/batch.rst:53 msgid "Do this step for all checks or payments you want to process in batch." -msgstr "" +msgstr "对要批量处理的所有支票或付款执行此步骤。" #: ../../accounting/receivables/customer_payments/batch.rst:56 msgid "Make sure to write the payment reference in the **Memo** field." -msgstr "" +msgstr "确保在 *备注* 字段中填写付款参考。" #: ../../accounting/receivables/customer_payments/batch.rst:59 msgid "Add payments to a Batch Deposit" -msgstr "" +msgstr "将付款添加到批量存款" #: ../../accounting/receivables/customer_payments/batch.rst:61 msgid "" @@ -16868,20 +16917,22 @@ msgid "" " Customers --> Batch Payments`, and click on *Create*. Next, select the Bank" " and Payment Method, then click on *Add a line*." msgstr "" +"要将付款添加到批量存款中,请转到 :menuselection:` 会计 --> 客户 --> 批量付款` 然后单击 *创建* 。 " +"接下来,选择银行和付款方式,然后单击 *添加行* 。" #: ../../accounting/receivables/customer_payments/batch.rst:69 msgid "" "Select all payments to include in the current Batch Deposit and click on " "*Select*. You can also record a new payment and add it to the list by " "clicking on *Create*." -msgstr "" +msgstr "选择要包括在当前批量存款中的所有付款,然后单击*选择*。 您还可以记录新的付款并将其添加到列表中,方法是单击*创建*。" #: ../../accounting/receivables/customer_payments/batch.rst:76 msgid "" "Once done, click on *Validate* to finalize your Batch Deposit. You can then " "click on *Print* to download a PDF file to include with the deposit slip " "that the bank usually requires to fill out." -msgstr "" +msgstr "完成后,单击 *确认* 以完成您的批量存款。 然后,您可以单击 *打印* 以下载PDF文件,以包括银行通常要求填写的存款单。" #: ../../accounting/receivables/customer_payments/batch.rst:82 msgid "" @@ -16893,18 +16944,21 @@ msgid "" "options, open the *Batch Payments* tab, and select your Batch Payment. All " "related payments are automatically added." msgstr "" +"一旦银行对账单进入数据库,您就可以将银行对账单行与 *批量付款* 引用进行协调。 为此,请转到会计”仪表板,然后单击相关银行帐户上的 *对帐项目* " +",以启动 **银行对帐** 。 在银行对帐单行中,单击 *选择对口方或创建冲销* 以显示更多选项,打开 *批量付款* 选项卡,然后选择您的批量付款。 " +"所有相关的付款都会自动添加。" #: ../../accounting/receivables/customer_payments/batch.rst:89 msgid "" "The *Batch Payments* tab won't appear if a Partner is selected for this bank" " statement line." -msgstr "" +msgstr "如果为此银行对帐单行选择了合作伙伴,则不会显示 *批量付款* 标签。" #: ../../accounting/receivables/customer_payments/batch.rst:95 msgid "" "If a check, or a payment, couldn't be processed by the bank and is missing, " "remove the related payment before validating the bank reconciliation." -msgstr "" +msgstr "如果银行无法处理支票或丢失了支票或付款,请在验证银行对帐前删除相关付款。" #: ../../accounting/receivables/customer_payments/batch.rst:99 msgid ":doc:`recording`" @@ -16912,7 +16966,7 @@ msgstr ":doc:`recording` " #: ../../accounting/receivables/customer_payments/batch.rst:100 msgid ":doc:`batch_sdd`" -msgstr "" +msgstr ":doc:`batch_sdd`" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:3 msgid "Batch Payments: SEPA Direct Debit (SDD)" @@ -16926,18 +16980,20 @@ msgid "" "authorizes you to collect future payments from their bank accounts. This is " "particularly useful for recurring payments based on a subscription." msgstr "" +"SEPA(单一欧元支付区)是欧盟的一种支付整合计划,旨在简化以欧元计价的银行转账。 通过 **SEPA直接付款** ,您的客户可以签署一项 *授权书* " +",授权您从他们的银行帐户中收取以后的款项。 这对于基于订阅的定期付款特别有用。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:10 msgid "" "You can record customer mandates in Odoo, and generate XML files containing " "pending payments made with an SDD mandate." -msgstr "" +msgstr "您可以在Odoo中记录客户委托,并生成XML文件,其中包含使用SDD委托进行的待付款项。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:0 msgid "" "SDD is supported by all SEPA countries, which includes the 27 member states " "of the European Union as well as additional countries." -msgstr "" +msgstr "SDD得到所有SEPA国家的支持,其中包括欧盟的27个成员国以及其他国家。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:0 msgid "" @@ -16954,6 +17010,8 @@ msgid "" "**Creditor Identifier**. This number is provided by your bank institution, " "or the authority responsible for delivering them." msgstr "" +"转到 :menuselection:`会计 --> 配置 --> 设定`, 激活 **SEPA直接付款(SDD)**,然后单击 *保存* 。 " +"入您公司的 **凭证标识符** 。 该号码是由您的银行机构或负责提供此号码的机构提供的。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:31 msgid "SEPA Direct Debit Mandates" @@ -16973,7 +17031,7 @@ msgstr "SEPA直接借记授权是由客户签字,授权你直接从其银行 msgid "" "To create a new mandate, go to :menuselection:`Accounting --> Customers --> " "Direct Debit Mandates`, click on *Create*, and fill out the form." -msgstr "" +msgstr "要创建新的授权,请转到 :menuselection:`会计 --> 客户 --> 直接付款授权` ,点击 *创建* ,然后填写表格。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:46 msgid "" @@ -16981,6 +17039,7 @@ msgid "" "to sign this document. Once done, upload the signed file in the **Original " "Document** field, and click on *Validate* to start running the mandate." msgstr "" +"通过单击 *打印* 导出PDF文件。 然后由您的客户签署此文档。 完成后,将签名文件上传到 *原始文档* 字段中,然后单击 *验证* 以开始运行任务。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:51 msgid "" @@ -16988,10 +17047,12 @@ msgid "" "the debtor’s contact form, under the *Accounting* tab, and in your own " ":doc:`Bank Account <../../bank/setup/bank_accounts>` settings." msgstr "" +"确保将 **IBAN银行帐户详细信息** 正确记录在债务人的联系表上的 *会计* 选项卡下以及您自己的 " +":doc:`银行帐户<../../bank/setup/bank_accounts>` 设置。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:56 msgid "SEPA Direct Debit as a Payment Method" -msgstr "" +msgstr "SEPA直接付款作为付款方式" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:58 msgid "" @@ -17000,6 +17061,8 @@ msgid "" "With this method, your customers can create and sign their mandates " "themselves." msgstr "" +"通过将SDD激活为 **付款收单行** ,您可以在 **电子商务** 或 **客户门户** 上将SEPA直接付款用作付款方式。 " +"使用这种方法,您的客户可以自己创建并签署其任务授权。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:62 msgid "" @@ -17007,18 +17070,19 @@ msgid "" "Acquirers`, click on *SEPA Direct Debit*, and set it up according to your " "needs." msgstr "" +"为此,请转至 :menuselection:`会计 --> 设置 --> 付款收单行`,点击 *SEPA直接付款* ,然后根据需要进行设置。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:66 msgid "" "Make sure to change the **State** field to *Enabled*, and to check **Online " "Signature**, as this is necessary to let your customers sign their mandates." -msgstr "" +msgstr "确保将 **状态** 字段更改为 *已启用* ,并选中 **在线签名** ,因为这是让您的客户签署其任务授权所必需的。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:69 msgid "" "Customers using SDD as payment method get prompted to add their IBAN, email " "address, and to sign their SEPA Direct Debit mandate." -msgstr "" +msgstr "使用SDD作为付款方式的客户会被提示添加其IBAN,电子邮件地址,并签署其SEPA直接付款授权书。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:76 msgid "Close or revoke a mandate" @@ -17029,14 +17093,14 @@ msgid "" "Direct Debit mandates are closed automatically after their *End Date*. If " "this field is left blank, the mandate keeps being *Active* until it is " "*Closed* or *Revoked*." -msgstr "" +msgstr "直接付款授权 *结束日期* 后自动关闭。 如果将此字段留为空白,则任务将一直处于 *启动* 状态,直到 *被关闭* 或 *已撤消* 为止。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:85 msgid "" "Clicking on **Close** updates the mandate’s end day to the current day. This" " means that invoices issued after the present day will not be processed with" " an SDD payment." -msgstr "" +msgstr "点击 **关闭** ,将任务的结束日期更新为当天。 这意味着当天之后开具的发票将不会通过SDD付款进行处理。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:88 msgid "" @@ -17044,12 +17108,12 @@ msgid "" "be registered anymore, regardless of the invoice’s date. However, payments " "that have already been registered are still included in the next SDD XML " "file." -msgstr "" +msgstr "单击 *撤消* 将立即禁用任务。 无论发票的日期如何,都无法再注册SDD付款。 但是,已经注册的付款仍包含在下一个SDD XML文件中。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:93 msgid "" "Once a mandate has been *closed* or *revoked*, it cannot be reactivated." -msgstr "" +msgstr "*关闭* 或 *撤销* 授权后,便无法将其重新激活。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:96 msgid "Get paid with SDD Batch Payments" @@ -17059,20 +17123,20 @@ msgstr "通过SDD批量付款功能收款" msgid "" "You can register SDD payments for invoices issued to customers who have an " "active SDD mandate." -msgstr "" +msgstr "您可以为发给具有有效SDD任务授权的客户的发票注册SDD付款。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:103 msgid "" "To do so, open the invoice, click on *Register Payment*, and choose *SEPA " "Direct Debit* as payment method." -msgstr "" +msgstr "为此,请打开发票,单击 *注册付款* ,然后选择 *SEPA直接付款* 作为付款方式。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:107 msgid "" "In previous versions, Odoo used SDD payment as the default payment for all " "customers with an active mandate. Your customers can still activate " "automatic SDD for their subscriptions with a recurring payment." -msgstr "" +msgstr "在以前的版本中,Odoo使用SDD付款作为所有具有有效授权的客户的默认付款。 您的客户仍可以使用定期付款为其订阅激活自动SDD。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:112 msgid "Generate SEPA Direct Debit XML files to submit payments" @@ -17082,7 +17146,7 @@ msgstr "生成SEPA直接借记XML文件以提交付款" msgid "" "**XML files** with all SDD payment instructions can be uploaded to your " "online banking interface to process all payments at once." -msgstr "" +msgstr "带有所有SDD付款说明的 **XML文件** 可以上传到您的在线银行界面,以一次处理所有付款。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:118 msgid "" @@ -17090,6 +17154,7 @@ msgid "" " specifications, as required by the SEPA customer-to-bank Implementation " "Guidelines, which ensures compatibility with the banks." msgstr "" +"Odoo生成的文件遵循SEPA客户到银行实施指南所要求的SEPA直接付款 **PAIN.008.001.02**规范,以确保与银行的兼容性。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:122 msgid "" @@ -17102,19 +17167,19 @@ msgstr "如要为挂起的SDD支付生成XML文件,请转到*会计仪表板* msgid "" "Select all the payments you want to include in your SDD XML file, then click" " on *Action* and select *Create Batch Payment*." -msgstr "" +msgstr "选择要包含在SDD XML文件中的所有付款,然后单击 *操作* 并选择 *创建批量付款* 。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:136 msgid "" "Odoo then takes you to your *Batch Payment*’s form. Click on *Validate* and " "download the SDD XML file." -msgstr "" +msgstr "然后,Odoo带您进入*批量付款* 表格。 单击 *验证* 并下载 SDD XML文件。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:143 msgid "" "Finally, upload this file to your online banking interface to process the " "payments." -msgstr "" +msgstr "最后,将此文件上传到您的在线银行界面以处理付款。" #: ../../accounting/receivables/customer_payments/batch_sdd.rst:146 msgid "" @@ -17138,10 +17203,12 @@ msgid "" "`List of all SEPA countries `_" msgstr "" +"`所有SEPA国家/地区的清单 `_" #: ../../accounting/receivables/customer_payments/check.rst:3 msgid "Register customer payments by checks" -msgstr "" +msgstr "通过支票注册客户付款" #: ../../accounting/receivables/customer_payments/check.rst:5 msgid "" @@ -17448,12 +17515,14 @@ msgid "" "their invoices online and pay directly with their favorite payment method, " "making the payment process much easier." msgstr "" +"为了使您的客户更方便地支付您开具的发票,您可以激活 **发票在线支付** 功能,该功能在其 **客户门户** 上添加了 *立即付款* 按钮。 " +"这使您的客户可以在线查看发票,并使用他们喜欢的付款方式直接付款,从而使付款过程变得更加容易。" #: ../../accounting/receivables/customer_payments/online_payment.rst:17 msgid "" "Make sure your :ref:`Payment Acquirers are correctly configured " "`." -msgstr "" +msgstr "确保您的 :ref:`付款收单行已正确配置 `。" #: ../../accounting/receivables/customer_payments/online_payment.rst:20 msgid "" @@ -17461,6 +17530,8 @@ msgid "" "<../../../general/payment_acquirers/wire_transfer>`\" is the only Payment " "Acquirer activated, but you still have to fill out the payment details." msgstr "" +"默认情况下, \":doc:`电汇 <../../../general/payment_acquirers/wire_transfer>`\" " +"是唯一激活的付款收单方法,但您仍必须填写付款明细。" #: ../../accounting/receivables/customer_payments/online_payment.rst:23 msgid "" @@ -17468,6 +17539,8 @@ msgid "" " Configuration --> Settings --> Customer Payments`, enable **Invoice Online " "Payment**, and click on *Save*." msgstr "" +"要激活发票在线支付,请转到 :menuselection:`会计 --> 配置 --> 设置 --> 客户支付` ,启用 **发票在线支付** " +",然后单击 *保存* 。" #: ../../accounting/receivables/customer_payments/online_payment.rst:27 msgid "Customer Portal" @@ -17479,11 +17552,13 @@ msgid "" "email to the customer. They will receive an email with a link that redirects" " them to the invoice on their **Customer Portal**." msgstr "" +"开具发票后,单击 *发送并打印* ,然后通过电子邮件将发票发送给客户。 他们将收到一封带有链接的电子邮件,该链接会将其重定向到其 **客户门户** " +"上的发票。" #: ../../accounting/receivables/customer_payments/online_payment.rst:37 msgid "" "They can choose which Payment Acquirer to use by clicking on *Pay Now*." -msgstr "" +msgstr "他们可以通过单击 *立即付款* 来选择要使用的付款收单行。" #: ../../accounting/receivables/customer_payments/online_payment.rst:45 msgid ":doc:`../../../general/payment_acquirers/payment_acquirers`" @@ -17491,7 +17566,7 @@ msgstr ":doc:`../../../general/payment_acquirers/payment_acquirers`" #: ../../accounting/receivables/customer_payments/recording.rst:3 msgid "Different ways to record a payment" -msgstr "" +msgstr "记录付款的不同方式" #: ../../accounting/receivables/customer_payments/recording.rst:5 msgid "" @@ -17661,11 +17736,11 @@ msgstr ":doc:`followup` " #: ../../accounting/reporting/declarations.rst:3 msgid "Declarations" -msgstr "" +msgstr "申报单" #: ../../accounting/reporting/declarations/tax_returns.rst:3 msgid "Tax Return (VAT Declaration)" -msgstr "" +msgstr "纳税申报表(增值税申报)" #: ../../accounting/reporting/declarations/tax_returns.rst:5 msgid "" @@ -17678,6 +17753,9 @@ msgid "" "values, the company can calculate the tax amount they have to pay or be " "refunded." msgstr "" +"注册了 **VAT(增值税)** 的公司必须每月或每季度提交 **纳税申报表** ,具体取决于其营业额和注册国家/地区的规定。 " +"纳税申报表(或增值税申报表)向税务机关提供有关公司进行的应税交易,其向客户收取的 *销项税* 和其卖方向其收取的 *进项税* 的信息。 " +"根据这些值,公司可以计算他们必须支付或退还的税额。" #: ../../accounting/reporting/declarations/tax_returns.rst:13 msgid "" @@ -17685,6 +17763,8 @@ msgid "" "European Commission `_." msgstr "" +"您可以在欧盟委员会的页面上`_ 找到有关增值税及其机制的信息。" #: ../../accounting/reporting/declarations/tax_returns.rst:22 msgid "Tax Return Periodicity" @@ -17695,34 +17775,34 @@ msgid "" "The configuration of the **Tax Return Periodicity** allows Odoo Accounting " "to compute your Tax Return correctly and also to send you a reminder to " "never miss a tax return deadline." -msgstr "" +msgstr "**税收返还周期** 的配置使Odoo 会计能够正确计算您的税收返还,并向您发送提醒,以确保您不会错过税收返还截止日期。" #: ../../accounting/reporting/declarations/tax_returns.rst:27 msgid "" "To do so, go to :menuselection:`Accounting --> Configuration --> Settings " "--> Fiscal Periods`, and go to the **Tax Return Periodicity** section." -msgstr "" +msgstr "为此,请转到 :menuselection:` 会计 --> 设置 --> 设定 --> 财政时期` ,然后转到 **退税周期** 部分。" #: ../../accounting/reporting/declarations/tax_returns.rst:30 msgid "" "**Periodicity**: define here whether you file your tax return each month or " "every three months." -msgstr "" +msgstr "**定期** :在此定义是每月还是每三个月提交一次纳税申报表。" #: ../../accounting/reporting/declarations/tax_returns.rst:31 msgid "" "**Reminder**: define when Odoo should remind you to file your tax return." -msgstr "" +msgstr "**提醒** :定义Odoo何时应提醒您提交纳税申报单。" #: ../../accounting/reporting/declarations/tax_returns.rst:32 msgid "**Journal**: select the journal in which to record the tax return." -msgstr "" +msgstr "**日记帐** :选择要在其中记录纳税申报单的日记帐。" #: ../../accounting/reporting/declarations/tax_returns.rst:39 msgid "" "This is usually configured during the :doc:`app's initial set up " "<../../overview/getting_started/setup>`." -msgstr "" +msgstr "通常是在 :doc:`应用程式初始设置过程中配置 <../../overview/getting_started/setup>`。" #: ../../accounting/reporting/declarations/tax_returns.rst:43 msgid "Tax Grids" @@ -17735,6 +17815,8 @@ msgid "" " recorded transactions use the right taxes. You can see on each Journal Item" " which Tax Grid is used for that transaction." msgstr "" +"Odoo会根据您的税款配置的 **税收网格** 设置生成税收报告。 因此,确保所有记录的交易使用正确的税金至关重要。 " +"您可以在每个日记帐项目上看到该交易使用了哪个税收网格。" #: ../../accounting/reporting/declarations/tax_returns.rst:53 msgid "" @@ -17743,6 +17825,8 @@ msgid "" "can edit your tax settings, along with the tax grids that are used to record" " invoices or credit notes." msgstr "" +"要配置税收的“税收网格”,请转到 :menuselection:`会计 --> 设置 --> 税收`,然后打开要修改的税收。 " +"在这里,您可以编辑您的税收设置,以及用于记录发票或贷方通知单的税收网格。" #: ../../accounting/reporting/declarations/tax_returns.rst:62 msgid "" @@ -17752,10 +17836,13 @@ msgid "" "<../../fiscal_localizations/overview/fiscal_localization_packages>` for more" " information about Fiscal Localization Packages." msgstr "" +"税收和报告通常已经预先配置:根据您在创建数据库时选择的国家/地区,安装了 *财政本地化软件包* 。:doc:`点击此 " +"<../../fiscal_localizations/overview/fiscal_localization_packages>` " +"了解有关财政本地化软件包的更多信息。" #: ../../accounting/reporting/declarations/tax_returns.rst:70 msgid "Close a tax period" -msgstr "" +msgstr "关闭纳税期" #: ../../accounting/reporting/declarations/tax_returns.rst:73 msgid "Tax Lock Date" @@ -17766,7 +17853,7 @@ msgid "" "Any new transaction which accounting date is prior to the **Tax Lock Date** " "has its tax values moved to the next open tax period. This is useful to make" " sure that no change can be made to a report once its period is closed." -msgstr "" +msgstr "任何在 *税收锁定日期* 之前的会计日期的新交易,其税值都将移至下一个未清税期。 这对于确保报表期结束后无法进行任何更改非常有用。" #: ../../accounting/reporting/declarations/tax_returns.rst:79 msgid "" @@ -17775,12 +17862,14 @@ msgid "" "transactions that would have an impact on the Closing Journal Entry, which " "helps you avoid some tax declaration errors." msgstr "" +"因此,我们建议在处理 *结帐日记帐分录* 之前锁定纳税日期。 " +"这样,其他用户就无法修改或添加对期末日记帐分录有影响的交易,这有助于您避免一些纳税申报错误。" #: ../../accounting/reporting/declarations/tax_returns.rst:83 msgid "" "To check the current **Tax Lock Date**, or to edit it, go to " ":menuselection:`Accounting --> Accounting --> Lock Dates`." -msgstr "" +msgstr "要检查当前的 **税收锁定日期** 或对其进行编辑,请转到 :menuselection:`会计 --> 会计 --> 锁定日期` 。" #: ../../accounting/reporting/declarations/tax_returns.rst:91 #: ../../accounting/reporting/overview/main_reports.rst:144 @@ -17791,20 +17880,20 @@ msgstr "税金报告" msgid "" "Once all the transactions involving taxes have been posted for the period " "you want to report, open your **Tax Report**." -msgstr "" +msgstr "在您要报告的期间内所有涉及税收的交易过帐后,请打开 *税收报告*。" #: ../../accounting/reporting/declarations/tax_returns.rst:96 msgid "" "To do so, go to :menuselection:`Accounting --> Reporting --> Tax Report`. " "You can also click on *TAX Report* from your *Accounting Overview*." -msgstr "" +msgstr "为此,请转到 :menuselection:`会计 --> 报告 --> 税收报告` 。您也可以从 *会计概览* 中单击 *税收报告*。" #: ../../accounting/reporting/declarations/tax_returns.rst:99 msgid "" "Make sure to select the right period you want to declare by using the date " "filter. You can see an overview of your tax report. Then, click on the " "button *Closing Journal Entry*." -msgstr "" +msgstr "确保使用日期过滤器选择要申报的正确期间。 您可以查看纳税报告的概述。 然后,单击按钮 *关闭日记帐分录* 。" #: ../../accounting/reporting/declarations/tax_returns.rst:106 msgid "" @@ -17826,6 +17915,9 @@ msgid "" "some fiscal errors, but it is advised to lock your tax date manually before," " as described above." msgstr "" +"如果你忘了 :ref:`锁定您的纳税日期 ` 之前点击 *关闭日记帐分录* , " +"Odoo会自动将您的会计期间锁定为与输入的会计日期相同的日期。 当您单击 *发布* 时,会发生这种自动锁定。 " +"此安全机制可以防止出现一些财务错误,但如上所述,建议您先手动锁定纳税日期。" #: ../../accounting/reporting/declarations/tax_returns.rst:124 msgid ":doc:`../../overview/getting_started/setup`" @@ -17833,7 +17925,7 @@ msgstr ":doc:`../../overview/getting_started/setup`" #: ../../accounting/reporting/overview/customize.rst:3 msgid "Create a customized reports with your own formulas" -msgstr "" +msgstr "使用您自己的公式创建自定义报告" #: ../../accounting/reporting/overview/customize.rst:8 msgid "" @@ -17983,7 +18075,7 @@ msgstr ":doc:`main_reports` " #: ../../accounting/reporting/overview/main_reports.rst:3 msgid "Main reports available" -msgstr "" +msgstr "可用的主要报告" #: ../../accounting/reporting/overview/main_reports.rst:5 msgid "" diff --git a/locale/zh_CN/LC_MESSAGES/project.po b/locale/zh_CN/LC_MESSAGES/project.po index 792e68420..0478d7880 100644 --- a/locale/zh_CN/LC_MESSAGES/project.po +++ b/locale/zh_CN/LC_MESSAGES/project.po @@ -697,44 +697,44 @@ msgstr "在 :menuselection:`项目 --> 配置 --> 项目`,选择相应的项 msgid "" "Now, go to :menuselection:`Project --> Configuration --> Projects`, choose " "the project, *Create Sales Order*, and continue to create your invoice." -msgstr "" +msgstr "现在,转到 :menuselection:` 项目 --> 设置 --> 项目,选择项目, *创建销售订单* ,然后继续创建发票。" #: ../../project/record_and_invoice/invoice_time.rst:38 msgid "" "From here, choose if you want the billing to be based on the project rate: " "all timesheets are billed by the same rate, or by the employee rate: " "timesheets are billed by the individual rate of the employee." -msgstr "" +msgstr "在此处,选择是否要基于项目费率计费:所有时间表均以相同费率或员工费率计费:工时单由员工个人费率计费。" #: ../../project/record_and_invoice/invoice_time.rst:45 msgid "" "The project rate allows you to invoice a whole project, for a specific " "service, at a specific rate, at once. Example: the implementation of a " "system." -msgstr "" +msgstr "项目费率可让您以特定费率一次为整个项目开具特定服务的发票。 例子:实施一个系统。" #: ../../project/record_and_invoice/invoice_time.rst:47 msgid "" "The employee rate billing lets you invoice a project broken down into " "different services, and different rates. Example: different rates for junior" " and senior consultants." -msgstr "" +msgstr "员工费率计费使您可以为一个项目开具发票,该项目分为不同的服务和不同的费率。 示例:初级和高级顾问的费率不同。" #: ../../project/record_and_invoice/invoice_time.rst:50 msgid "Invoice only approved timesheets" -msgstr "" +msgstr "仅发票批准的工时单" #: ../../project/record_and_invoice/invoice_time.rst:52 msgid "" "Go to :menuselection:`Timesheets --> Configuration --> Settings --> " "Invoicing Policy`, and choose *Approved timesheets only*." -msgstr "" +msgstr "转到 :menuselection:`工时单 --> 设置 --> 设定--> 发票政策` ,然后选择 *仅限批准的工时单* 。" #: ../../project/record_and_invoice/invoice_time.rst:59 msgid "" "This ensures that the manager is aware of the hours being logged by each " "employee before the customer gets invoiced." -msgstr "" +msgstr "这样可以确保经理了解客户开具发票之前每个员工记录的小时数。" #: ../../project/record_and_invoice/invoice_time.rst:63 msgid ":doc:`../advanced/so_to_task`" @@ -746,7 +746,7 @@ msgstr ":doc:`./time_record`" #: ../../project/record_and_invoice/time_record.rst:3 msgid "Record Time Spent on Tasks" -msgstr "" +msgstr "记录任务所花费的时间" #: ../../project/record_and_invoice/time_record.rst:5 msgid "" @@ -756,26 +756,28 @@ msgid "" "invoices based on the timesheet entries and be sure to invoice your " "customers the exact right amount." msgstr "" +"了解您在任务上花费了多少时间,以使您的员工的生活更轻松,并且记录无误。 在浏览器中启动计时器,可在手机上将其停止并同步所有条目。 " +"根据工时单条目生成发票,并确保为您的客户开具正确金额的发票。" #: ../../project/record_and_invoice/time_record.rst:11 msgid "Manually timesheet on task" -msgstr "" +msgstr "手动执行任务工时单" #: ../../project/record_and_invoice/time_record.rst:14 msgid "" "Go to :menuselection:`Project --> Configuration --> Settings` and enable " "*Timesheets*. Then, enable the *Timesheets* option on the project." -msgstr "" +msgstr "转到 :menuselection:`Project -->设置 --> 设定` 并启用 *工时单* 。 在项目上启用 *工时单* 选项。" #: ../../project/record_and_invoice/time_record.rst:15 msgid "" "Now, once you are in your task, under the *Timesheet* tab, *Add a line* and " "specify the *Duration*." -msgstr "" +msgstr "现在,完成任务后,在 *工时单* 选项卡下, *添加一行* 并指定 *持续时间* 。" #: ../../project/record_and_invoice/time_record.rst:22 msgid "Time tasks" -msgstr "" +msgstr "时间任务" #: ../../project/record_and_invoice/time_record.rst:25 msgid "" @@ -795,7 +797,7 @@ msgstr "任务" #: ../../project/tasks/collaborate.rst:3 msgid "Collaborate on Tasks" -msgstr "" +msgstr "在任务上合作" #: ../../project/tasks/collaborate.rst:5 msgid "" From af7d307b7657dc935236e6d212271b36527cb4d3 Mon Sep 17 00:00:00 2001 From: Odoo Translation Bot Date: Sun, 1 Nov 2020 02:30:36 +0100 Subject: [PATCH 4/4] [I18N] Update translation terms from Transifex --- locale/da/LC_MESSAGES/accounting.po | 2 +- locale/es/LC_MESSAGES/inventory.po | 27 ++++++++++++++++++++++++--- locale/it/LC_MESSAGES/purchase.po | 6 +++--- 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/locale/da/LC_MESSAGES/accounting.po b/locale/da/LC_MESSAGES/accounting.po index b67f406f8..c3c806743 100644 --- a/locale/da/LC_MESSAGES/accounting.po +++ b/locale/da/LC_MESSAGES/accounting.po @@ -2011,7 +2011,7 @@ msgstr "" #: ../../accounting/localizations.rst:3 msgid "Localizations" -msgstr "" +msgstr "Lokaliseringer" #: ../../accounting/localizations/colombia.rst:3 msgid "Colombia" diff --git a/locale/es/LC_MESSAGES/inventory.po b/locale/es/LC_MESSAGES/inventory.po index 42cf5751d..eeea4d8a0 100644 --- a/locale/es/LC_MESSAGES/inventory.po +++ b/locale/es/LC_MESSAGES/inventory.po @@ -4,7 +4,6 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Jesús Alan Ramos Rodríguez , 2018 # Carlos Lopez , 2018 # David Sanchez , 2018 # Katerina Katapodi , 2018 @@ -27,6 +26,8 @@ # Miquel Torner , 2018 # Jon Perez , 2019 # Martin Trigaux, 2019 +# Jesús Alan Ramos Rodríguez , 2020 +# Susanna Pujol, 2020 # #, fuzzy msgid "" @@ -35,7 +36,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-10-03 11:34+0200\n" "PO-Revision-Date: 2018-10-19 08:15+0000\n" -"Last-Translator: Martin Trigaux, 2019\n" +"Last-Translator: Susanna Pujol, 2020\n" "Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,6 +459,12 @@ msgid "" "with the smartphone and work in the warehouse with the possibility to check " "your smartphone from time to time and use the software 'manually'." msgstr "" +"El **escáner bluetooth** se puede combinar con un teléfono inteligente o una" +" tableta y es una buena opción si desea ser móvil pero no necesita una gran " +"inversión. Un enfoque es iniciar sesión en Odoo en su teléfono inteligente, " +"emparejar el escáner bluetooth con el teléfono inteligente y trabajar en el " +"almacén con la posibilidad de revisar su teléfono inteligente de vez en " +"cuando y usar el software 'manualmente'." #: ../../inventory/barcode/setup/hardware.rst:32 msgid "" @@ -469,6 +476,14 @@ msgid "" "job. However, due to the variety of models and configurations on the market," " it is essential to test it first." msgstr "" +"Para uso intensivo, el **escáner de computadora móvil** es la solución más " +"práctica. Consiste en una pequeña computadora con un escáner de código de " +"barras incorporado. Esta puede resultar una solución muy productiva, sin " +"embargo, debe asegurarse de que sea capaz de ejecutar Odoo sin problemas. " +"Los modelos más recientes que usan Android + Google Chrome o Windows + " +"Internet Explorer Mobile deberían hacer el trabajo. Sin embargo, debido a la" +" variedad de modelos y configuraciones en el mercado, es esencial probarlo " +"primero." #: ../../inventory/barcode/setup/hardware.rst:42 msgid "Configure your barcode scanner" @@ -2031,6 +2046,9 @@ msgid "" "To set up your security dates, go to :menuselection:`Settings --> General " "settings` and click on **Configure your company data**." msgstr "" +"Para configurar sus fechas de seguridad, vaya a " +":menuselection:`Configuración -> Configuración general` y haga clic en " +"**Configurar los datos de su empresa**." #: ../../inventory/management/delivery/scheduled_dates.rst:90 msgid "" @@ -7582,7 +7600,7 @@ msgstr "Productos" #: ../../inventory/settings/products/strategies.rst:3 msgid "How to select the right replenishment strategy" -msgstr "" +msgstr "Como escoger la estrategia de reposición adecuada" #: ../../inventory/settings/products/strategies.rst:5 msgid "" @@ -7590,6 +7608,9 @@ msgid "" "different rules. They should be used depending on your manufacturing and " "delivery strategies." msgstr "" +"Las reglas referentes al stock mínimo y la fabricación bajo demanda tienen " +"consecuencias similares pero reglas diferentes. Deberían ser usados según " +"sus estrategias de producción y entrega." #: ../../inventory/settings/products/strategies.rst:15 msgid "" diff --git a/locale/it/LC_MESSAGES/purchase.po b/locale/it/LC_MESSAGES/purchase.po index 46de92062..10feffbc9 100644 --- a/locale/it/LC_MESSAGES/purchase.po +++ b/locale/it/LC_MESSAGES/purchase.po @@ -4,13 +4,13 @@ # FIRST AUTHOR , YEAR. # # Translators: -# Sergio Zanchetta , 2019 # Francesco Garganese , 2019 # Martin Trigaux, 2019 # Tiziano Zambelli , 2019 # maiolif , 2019 # Léonie Bouchat , 2019 # Paolo Valier, 2019 +# Sergio Zanchetta , 2020 # #, fuzzy msgid "" @@ -19,7 +19,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-09-16 15:50+0200\n" "PO-Revision-Date: 2018-10-19 08:15+0000\n" -"Last-Translator: Paolo Valier, 2019\n" +"Last-Translator: Sergio Zanchetta , 2020\n" "Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1332,7 +1332,7 @@ msgstr "" #: ../../purchase/replenishment.rst:3 msgid "Replenishment" -msgstr "" +msgstr "Rifornimento" #: ../../purchase/replenishment/flows.rst:3 msgid "Replenishment Flows"